You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r#"SELECT * FROM t GROUP BY GROUPING SETS (a, b, c, d)"#,
593
597
r#"SELECT * FROM t GROUP BY GROUPING SETS (a, b, (c, d))"#,
594
598
r#"SELECT * FROM t GROUP BY GROUPING SETS ((a, b), (c), (d, e))"#,
595
599
r#"SELECT * FROM t GROUP BY GROUPING SETS ((a, b), (), (d, e))"#,
596
600
r#"SELECT * FROM t GROUP BY CUBE (a, b, c)"#,
597
601
r#"SELECT * FROM t GROUP BY ROLLUP (a, b, c)"#,
602
+
r#"SELECT * FROM t GROUP BY a, ROLLUP (b, c)"#,
603
+
r#"SELECT * FROM t GROUP BY GROUPING SETS ((a, b)), a, ROLLUP (b, c)"#,
598
604
r#"CREATE MASKING POLICY email_mask AS (val STRING) RETURNS STRING -> CASE WHEN current_role() IN ('ANALYST') THEN VAL ELSE '*********'END comment = 'this is a masking policy'"#,
599
605
r#"CREATE OR REPLACE MASKING POLICY email_mask AS (val STRING) RETURNS STRING -> CASE WHEN current_role() IN ('ANALYST') THEN VAL ELSE '*********'END comment = 'this is a masking policy'"#,
0 commit comments