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

fix: support GROUP BY with no source columns used #5644

Merged
merged 1 commit into from
Jun 19, 2020

Commits on Jun 18, 2020

  1. fix: support GROUP BY with no source columns used

    fixes:
    
    Adds support for a `GROUP BY` query where there are no source columns used in the query, e.g.
    
    ```sql
    CREATE TABLE OUTPUT as SELECT 1 as k, count(1) AS ID FROM INPUT group by 1;
    ```
    
    This was previously failing as it ran into an issue deserializing the query plan due to `nonAggColumns` not being present in the plan.
    big-andy-coates committed Jun 18, 2020
    Configuration menu
    Copy the full SHA
    e7a3bd5 View commit details
    Browse the repository at this point in the history