Skip to content

Commit fac84d8

Browse files
authored
Fix test compilation issue (apache#1609)
1 parent e9ab4d6 commit fac84d8

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

tests/sqlparser_bigquery.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -1512,16 +1512,7 @@ fn parse_hyphenated_table_identifiers() {
15121512
)
15131513
.from[0]
15141514
.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-
}
1515+
table_from_name(ObjectName(vec![Ident::new("foo-123"), Ident::new("bar")])),
15251516
);
15261517

15271518
assert_eq!(

0 commit comments

Comments
 (0)