We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7d33d0 commit 1b2d139Copy full SHA for 1b2d139
1 file changed
tests/fixtures/optimizer/annotate_functions.sql
@@ -3420,6 +3420,18 @@ DOUBLE;
3420
APPROX_PERCENTILE(tbl.int_col, 0.9);
3421
DOUBLE;
3422
3423
+# dialect: snowflake
3424
+APPROX_PERCENTILE(tbl.bigint_col, 0.5) OVER (PARTITION BY 1);
3425
+DOUBLE;
3426
+
3427
3428
+APPROX_PERCENTILE(tbl.double_col, 0.5) OVER (PARTITION BY 1);
3429
3430
3431
3432
+APPROX_PERCENTILE(tbl.int_col, 0.9) OVER (PARTITION BY 1);
3433
3434
3435
--------------------------------------
3436
-- T-SQL
3437
0 commit comments