-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(clickhouse): test all functions #952
test(clickhouse): test all functions #952
Conversation
window,lastValue,Same as input,"Returns last value in window frame." | ||
window,nthValue,Same as input,"Returns nth value in window frame." | ||
function_type,name,return_type,param_names,param_types,description | ||
aggregate,min,Same as input,,Any,"Returns the minimum value." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aggregate,min,Same as input,,Any,"Returns the minimum value." | |
aggregate,min,Same as input,,Any,"Returns the minimum value." |
The return type is weird 🤔. I think they're duplicated with the datafusion default functions. Maybe we can just remove them.
scalar,round,Same as input,,Float64, "Rounds number to specified decimal places." | ||
scalar,floor,Same as input,,Numeric,"Rounds down to nearest integer." | ||
scalar,ceil,Same as input,,Numeric,"Rounds up to nearest integer." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same issue. The return types aren't valid.
We added a test case and moved out some functions that need to be revised.
#951