Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Grouping on arrays as arrays #12078
Grouping on arrays as arrays #12078
Changes from all commits
2265991
fe3c9d9
d50cdfb
ba28913
6cd8b65
23a44a4
e44258b
5b6fa68
3ca3aa0
80ff204
aeba7c5
7bb3df0
a4b7954
6e3f806
c6db303
b8fe780
985fd38
2d4f01d
1e3129f
6dc2961
df5210e
607fd54
79246e0
2eace6a
b8711ca
1ba5549
2d676ed
ce87461
40b877e
57dcbe1
86fb48b
8619964
63081d3
97350a5
9b21150
ea5ba15
1a6927f
ec07ee7
1156180
d00e0b2
169f6e2
e4e8d13
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
note to self, double check this is actually true at this layer (if it is not, it might be possibly handled with the Double strategy). While definitely true that
FLOAT
doesn't exist in expressions, and so within expressions there exists no float array, this type might still be specified by the SQL planner, whenever some float column is added into an array for example. I'm unsure if the expression selectors column capabilities would report ARRAY or ARRAY as the type of the virtual column, i know it coerces DOUBLE back to FLOAT when the planner requests FLOAT types, but don't think it does the same thing forARRAY
so, this is probably true.