-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[0.9.3] (regression) cannot use GROUP BY * with more than a single field in SELECT clause #3978
Comments
Verified this is a regression from the 0.9.2 behavior: Recreating the setup:
Selecting more than one column while including
|
@corylanou regression from the |
Yeah, that doesn't look right. I think we are getting close to making that work for real now so maybe we should see if it's easier just to complete the functionality rather than fix the bug the stop gap introduced. |
corylanou
added a commit
that referenced
this issue
Sep 10, 2015
Allow wildcards with fields! Fixes #3978
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using
GROUP BY *
with more than a single field in theSELECT
clause leads toERR: error parsing query: wildcards can not be combined with other fields
All good to this point. Now add a
GROUP BY *
and the problem shows up.The error happens whether the additional column is a field, as above, or a tag, as follows:
The text was updated successfully, but these errors were encountered: