-
Notifications
You must be signed in to change notification settings - Fork 37
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(bigquery): test all functions #928
Conversation
13a0674
to
276f882
Compare
# Skip window functions util https://github.com/Canner/wren-engine/issues/924 is resolved | ||
if function.function_type == "window": | ||
continue |
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.
Follow #924
# Skip functions with interval util https://github.com/Canner/wren-engine/issues/930 is resolved | ||
if function.name in ( | ||
"date_add", | ||
"date_sub", | ||
"date_diff", | ||
"date_trunc", | ||
"timestamp_add", | ||
"timestamp_sub", | ||
"timestamp_diff", | ||
"timestamp_trunc", | ||
): | ||
continue |
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.
Follow #930
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.
Thanks @grieve54706 LGTM
Adjust sql generator by dialect.
Add test case for bigquery.