-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): support to define param_names and param_types in the list…
… file (#925)
- Loading branch information
Showing
3 changed files
with
47 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
function_type,name,return_type,description | ||
scalar,add_two,int,"Adds two numbers together." | ||
window,max_if,int,"If the condition is true, returns the maximum value in the window." | ||
function_type,name,return_type,param_names,param_types,description | ||
scalar,add_two,int,"f1,f2","int,int","Adds two numbers together." | ||
window,max_if,int,,,"If the condition is true, returns the maximum value in the window." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters