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
"CREATE SNAPSHOT TABLE IF NOT EXISTS dataset_id.table1 CLONE dataset_id.table2 FOR SYSTEM_TIME AS OF TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 HOUR) OPTIONS(expiration_timestamp = TIMESTAMP '2025-01-01 00:00:00 UTC')",
2951
2951
);
2952
2952
}
2953
+
2954
+
#[test]
2955
+
fnparse_from_first_select(){
2956
+
bigquery().verified_stmt("FROM t");
2957
+
bigquery().verified_stmt("FROM t SELECT a, b");
2958
+
bigquery().verified_stmt("FROM t |> WHERE a > 1 |> SELECT a");
0 commit comments