File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed
datafusion/sqllogictest/test_files Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -259,12 +259,12 @@ physical_plan
259259
260260# Query with filter on csv
261261query TT
262- explain SELECT int_col FROM table2 WHERE string_col != 'foo';
262+ explain SELECT int_col FROM table1 WHERE string_col != 'foo';
263263----
264264logical_plan
265- 01)Projection: table2 .int_col
266- 02)--Filter: table2 .string_col != Utf8View ("foo")
267- 03)----TableScan: table2 projection=[int_col, string_col], partial_filters=[table2 .string_col != Utf8View ("foo")]
265+ 01)Projection: table1 .int_col
266+ 02)--Filter: table1 .string_col != Utf8 ("foo")
267+ 03)----TableScan: table1 projection=[int_col, string_col], partial_filters=[table1 .string_col != Utf8 ("foo")]
268268physical_plan
26926901)┌───────────────────────────┐
27027002)│ CoalesceBatchesExec │
@@ -282,11 +282,8 @@ physical_plan
28228214)│ DataSourceExec │
28328315)│ -------------------- │
28428416)│ files: 1 │
285- 17)│ format: parquet │
286- 18)│ │
287- 19)│ predicate: │
288- 20)│ string_col@1 != foo │
289- 21)└───────────────────────────┘
285+ 17)│ format: csv │
286+ 18)└───────────────────────────┘
290287
291288
292289# Query with filter on parquet
@@ -402,8 +399,6 @@ physical_plan
40239917)│ format: arrow │
40340018)└───────────────────────────┘
404401
405-
406-
407402# cleanup
408403statement ok
409404drop table table1;
You can’t perform that action at this time.
0 commit comments