We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PostgreSQL
CREATE TABLE t(a time(3)); INSERT INTO t VALUES (TIME '23:59:59.999'); INSERT INTO t VALUES (TIME '24:00:00.000');
Presto
presto:tpch> SELECT a FROM t; a -------------- 23:59:59.999 23:59:59.999
but:
presto:tpch> SELECT count(*) FROM t GROUP BY a; _col0 ------- 1 1
while same with aggregation pushdown disabled
presto:tpch> SET SESSION postgresql.allow_aggregation_pushdown = false; SET SESSION presto:tpch> SELECT count(*) FROM t GROUP BY a; _col0 ------- 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PostgreSQL
Presto
but:
while same with aggregation pushdown disabled
The text was updated successfully, but these errors were encountered: