Skip to content

Commit a1ba4ca

Browse files
committed
test: Fix tests
1 parent 5a001c1 commit a1ba4ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

datafusion-federation/src/sql/analyzer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ mod tests {
957957
),
958958
(
959959
"SELECT foo.df_table.a FROM foo.df_table",
960-
r#"SELECT remote_table.a FROM "default".remote_table"#,
960+
r#"SELECT a FROM "default".remote_table"#,
961961
),
962962
(
963963
"SELECT MIN(a) FROM foo.df_table",

datafusion-federation/src/sql/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ mod tests {
622622
});
623623

624624
let expected = vec![
625-
r#"SELECT "table".a, "table".b, "table".c FROM "default"."table" UNION ALL SELECT "Table".a, "Table".b, "Table".c FROM "default"."Table"(1) AS Table"#,
625+
r#"SELECT a, b, c FROM "default"."table" UNION ALL SELECT a, b, c FROM "default"."Table"(1) AS Table"#,
626626
];
627627

628628
assert_eq!(

0 commit comments

Comments
 (0)