Skip to content

Commit

Permalink
Update tests for fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Dec 13, 2023
1 parent ebec550 commit de3fc46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions datafusion/sqllogictest/test_files/schema_evolution.slt
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,12 @@ query TIR rowsort
select * from parquet_table where a = 'foo';
----
foo 1 NULL
foo 100 10.5
foo 2 NULL
foo 200 12.6
foo 3 NULL
foo NULL NULL
foo NULL NULL

query TIR rowsort
select * from parquet_table where a != 'foo';
Expand All @@ -91,6 +95,7 @@ bzz 300 13.7
query TIR rowsort
select * from parquet_table where a is NULL;
----
NULL 10 NULL

query TIR rowsort
select * from parquet_table where b > 5;
Expand Down

0 comments on commit de3fc46

Please sign in to comment.