-
Notifications
You must be signed in to change notification settings - Fork 313
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
feat: support range sql #1807
feat: support range sql #1807
Conversation
google/cloud/bigquery/enums.py
Outdated
@@ -292,6 +293,7 @@ class SqlTypeNames(str, enum.Enum): | |||
TIME = "TIME" | |||
DATETIME = "DATETIME" | |||
INTERVAL = "INTERVAL" # NOTE: not available in legacy types | |||
RANGE = "RANGE" |
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.
is the comment for INTERVAL about legacy availability also true for RANGE?
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.
I guess the legacy types here refer to the types supported by legacy SQL? In that case, it is indeed not supported. If so, I will add the comment here.
Part of #1724.
Supports User Defined Functions with RANGE type parameters.