-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Upgrade Calcite to 1.21 #8566
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
Upgrade Calcite to 1.21 #8566
Changes from all commits
7e56e00
608812c
8d8d741
bddac22
62c6132
e8dd078
6264b71
4f5cf77
0e80ce1
4567a56
60f1b76
dc72b0f
ea6ff84
d21eb04
ad26af1
59486e6
adf49e4
66d23a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,6 +50,10 @@ public class PlannerContext | |
| public static final String CTX_SQL_CURRENT_TIMESTAMP = "sqlCurrentTimestamp"; | ||
| public static final String CTX_SQL_TIME_ZONE = "sqlTimeZone"; | ||
|
|
||
| // This context parameter is an undocumented parameter, used internally, to allow the web console to | ||
| // apply a limit without having to rewrite the SQL query. | ||
| public static final String CTX_SQL_OUTER_LIMIT = "sqlOuterLimit"; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should this be documented somewhere or just leave it hidden since I guess is mostly to be friendly to web console?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think leaving it undocumented makes sense, since it's meant to be internal. End users should add a
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be better to document internal parameters somewhere rather than depending on human memory. But I think we can do in a follow-up pr.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be in the docs, it is a super useful parameter IMO even outside the web console |
||
|
|
||
| // DataContext keys | ||
| public static final String DATA_CTX_AUTHENTICATION_RESULT = "authenticationResult"; | ||
|
|
||
|
|
||
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.
Minor: the two calls could be collapsed, since
DimensionHandlerUtils.convertObjectToLonghandles nulls just fine.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.
Collapsed the two calls