This is an automated email from the ASF dual-hosted git repository.

iffyio pushed a commit to branch fix-ci
in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git

commit 4385a8537aeab32c5b1db83f19bbe8d02fabe92c
Author: ifeanyi <[email protected]>
AuthorDate: Wed Dec 18 21:21:13 2024 +0100

    Fix test compilation issue
---
 tests/sqlparser_bigquery.rs | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/tests/sqlparser_bigquery.rs b/tests/sqlparser_bigquery.rs
index c8173759..be383b47 100644
--- a/tests/sqlparser_bigquery.rs
+++ b/tests/sqlparser_bigquery.rs
@@ -1512,16 +1512,7 @@ fn parse_hyphenated_table_identifiers() {
             )
             .from[0]
             .relation,
-        TableFactor::Table {
-            name: ObjectName(vec![Ident::new("foo-123"), Ident::new("bar")]),
-            alias: None,
-            args: None,
-            with_hints: vec![],
-            version: None,
-            partitions: vec![],
-            with_ordinality: false,
-            json_path: None,
-        }
+        table_from_name(ObjectName(vec![Ident::new("foo-123"), 
Ident::new("bar")])),
     );
 
     assert_eq!(


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to