Skip to content

Commit 4682e74

Browse files
Update datafusion/sql/tests/sql_integration.rs
Co-authored-by: Neil Conway <neil.conway@gmail.com>
1 parent cef9462 commit 4682e74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

datafusion/sql/tests/sql_integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4849,8 +4849,8 @@ fn test_using_join_wildcard_schema() {
48494849

48504850
#[test]
48514851
fn test_using_join_wildcard_schema_semi_anti() {
4852-
let left_expected = vec!["s.x1".to_string(), "s.x2".to_string(), "s.x3".to_string()];
4853-
let right_expected = vec!["t.x1".to_string(), "t.x2".to_string(), "t.x3".to_string()];
4852+
let left_expected = &["s.x1", "s.x2", "s.x3"];
4853+
let right_expected = &["t.x1", "t.x2", "t.x3"];
48544854

48554855
let sql = "WITH
48564856
s AS (SELECT 1 AS x1, 2 AS x2, 3 AS x3),

0 commit comments

Comments
 (0)