Skip to content
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

Group By shouldn't be implicit in a query expressed as SQL #532

Open
shrjain opened this issue Jul 16, 2016 · 0 comments
Open

Group By shouldn't be implicit in a query expressed as SQL #532

shrjain opened this issue Jul 16, 2016 · 0 comments
Assignees

Comments

@shrjain
Copy link

shrjain commented Jul 16, 2016

Example:
Y = select asample, bsample, 2*sum(minv) as mnv from X

The query above does an implicit Group By asample, bsample.
For queries expressed in MyriaL it might make sense to do so, but for queries expressed in SQL.

Moreover, the query:
Y = select asample, bsample, 2*sum(minv) as mnv from group by asample, bsample
throws an exception.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants