We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ab4d6 commit fac84d8Copy full SHA for fac84d8
tests/sqlparser_bigquery.rs
@@ -1512,16 +1512,7 @@ fn parse_hyphenated_table_identifiers() {
1512
)
1513
.from[0]
1514
.relation,
1515
- TableFactor::Table {
1516
- name: ObjectName(vec![Ident::new("foo-123"), Ident::new("bar")]),
1517
- alias: None,
1518
- args: None,
1519
- with_hints: vec![],
1520
- version: None,
1521
- partitions: vec![],
1522
- with_ordinality: false,
1523
- json_path: None,
1524
- }
+ table_from_name(ObjectName(vec![Ident::new("foo-123"), Ident::new("bar")])),
1525
);
1526
1527
assert_eq!(
0 commit comments