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
#[test]
fn parse_select_as_struct_syntax() {
// syntax: SELECT AS STRUCT 1 a, 2 b
let sql = r#"SELECT AS STRUCT 1 a, 2 b"#;
...
}
#[test]
fn parse_select_as_struct_syntax() {
// syntax: SELECT AS VALUE STRUCT(123 AS a, FALSE AS b)
let sql = r#"SELECT AS VALUE STRUCT(123 AS a, FALSE AS b)"#;
...
}
The text was updated successfully, but these errors were encountered:
Currently syntax for BigQuery's
SELECT AS STRUCT
(documentation) andSELECT AS VALUE
(documentation) raises a parsing error.They should both produce a Value table
Minimal examples for tests:
The text was updated successfully, but these errors were encountered: