Skip to content

Commit

Permalink
Minor: port last test from parquet.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Dec 19, 2023
1 parent c47f4e4 commit c4a0082
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 92 deletions.
1 change: 0 additions & 1 deletion datafusion/core/tests/sql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ pub mod expr;
pub mod group_by;
pub mod joins;
pub mod order;
pub mod parquet;
pub mod parquet_schema;
pub mod partitioned_csv;
pub mod predicates;
Expand Down
91 changes: 0 additions & 91 deletions datafusion/core/tests/sql/parquet.rs

This file was deleted.

17 changes: 17 additions & 0 deletions datafusion/sqllogictest/test_files/parquet.slt
Original file line number Diff line number Diff line change
Expand Up @@ -302,3 +302,20 @@ NULL
# Clean up
statement ok
DROP TABLE single_nan;


statement ok
CREATE EXTERNAL TABLE list_columns
STORED AS PARQUET
WITH HEADER ROW
LOCATION '../../parquet-testing/data/list_columns.parquet';

query ??
SELECT int64_list, utf8_list FROM list_columns
----
[1, 2, 3] [abc, efg, hij]
[, 1] NULL
[4] [efg, , hij, xyz]

statement ok
DROP TABLE list_columns;

0 comments on commit c4a0082

Please sign in to comment.