-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Add support to VALUES aggregation for spatial types #122886
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
Changes from all commits
cb38008
bedd45b
2f0b166
7ab9e7a
186bf2a
6171431
6ef6510
075f2c0
061ca59
c7376fc
3da53b7
f9264c9
e66dfeb
a4849ea
236347e
433e0df
c1fea0c
6513317
2ded426
59733e2
7ef9322
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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| pr: 122886 | ||
| summary: Add support to VALUES aggregation for spatial types | ||
| area: ES|QL | ||
| type: bug | ||
| issues: | ||
| - 122413 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -858,7 +858,9 @@ protected final void assertTypeResolutionFailure(Expression expression) { | |
|
|
||
| @AfterClass | ||
| public static void renderSignature() throws IOException { | ||
| if (System.getProperty("generateDocs") == null) { | ||
| // Temporarily turn off docs generation during docs freeze | ||
| // TODO: Only turn this back on once this generates the correct MD files | ||
| if (System.getProperty("generateDocs") == null || true) { | ||
| return; | ||
| } | ||
| String name = functionName(); | ||
|
|
@@ -933,7 +935,9 @@ public static void renderDocs() throws IOException { | |
| } | ||
|
|
||
| protected static void renderDocs(String name) throws IOException { | ||
| if (System.getProperty("generateDocs") == null) { | ||
| // Temporarily turn off docs generation during docs freeze | ||
| // TODO: Only turn this back on once this generates the correct MD files | ||
| if (System.getProperty("generateDocs") == null || true) { | ||
|
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. Add a comment about how we're turning these off please.
Contributor
Author
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. Done |
||
| return; | ||
| } | ||
| if (binaryOperator(name) != null || unaryOperator(name) != null || searchOperator(name) != null || likeOrInOperator(name)) { | ||
|
|
||
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.
This function was never used anyway