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

Support qualified wildcards in aggregates #3179

Closed
justinj opened this issue May 28, 2020 · 0 comments
Closed

Support qualified wildcards in aggregates #3179

justinj opened this issue May 28, 2020 · 0 comments
Labels
C-feature Category: new feature or request

Comments

@justinj
Copy link
Contributor

justinj commented May 28, 2020

Postgres allows this:

postgres=# select count(x.*) from x;
 count
-------
     1
(1 row)

Whereas Materialize does not:

materialize=> select count(x.*) from x;
ERROR:  wildcard in invalid position

The semantics, at least for count, appear to be the same as count(*):

postgres=# select count(x.*) from (values (null)) x;
 count
-------
     1
(1 row)
@justinj justinj added the C-feature Category: new feature or request label May 28, 2020
@benesch benesch closed this as completed in b3de771 Jul 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-feature Category: new feature or request
Projects
None yet
Development

No branches or pull requests

1 participant