Skip to content

Commit

Permalink
refactor: change file type logic for create table
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Sep 4, 2023
1 parent b34e7cf commit ebf6c30
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 2 additions & 3 deletions datafusion/sql/src/statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -679,11 +679,10 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
options,
} = statement;

if file_type != "CSV"
&& file_type != "JSON"
if (file_type == "PARQUET" || file_type == "AVRO" || file_type == "ARROW")
&& file_compression_type != CompressionTypeVariant::UNCOMPRESSED
{
plan_err!("File compression type can be specified for CSV/JSON files.")?;
plan_err!("File compression type cannot be set for PARQUET, AVRO, or ARROW files.")?;
}

let schema = self.build_schema(columns)?;
Expand Down
5 changes: 4 additions & 1 deletion datafusion/sql/tests/sql_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1850,6 +1850,7 @@ fn create_external_table_with_compression_type() {
"CREATE EXTERNAL TABLE t(c1 int) STORED AS CSV COMPRESSION TYPE BZIP2 LOCATION 'foo.csv.bz2'",
"CREATE EXTERNAL TABLE t(c1 int) STORED AS JSON COMPRESSION TYPE GZIP LOCATION 'foo.json.gz'",
"CREATE EXTERNAL TABLE t(c1 int) STORED AS JSON COMPRESSION TYPE BZIP2 LOCATION 'foo.json.bz2'",
"CREATE EXTERNAL TABLE t(c1 int) STORED AS NONSTANDARD COMPRESSION TYPE GZIP LOCATION 'foo.unk'",
];
for sql in sqls {
let expected = "CreateExternalTable: Bare { table: \"t\" }";
Expand All @@ -1862,11 +1863,13 @@ fn create_external_table_with_compression_type() {
"CREATE EXTERNAL TABLE t STORED AS AVRO COMPRESSION TYPE BZIP2 LOCATION 'foo.avro'",
"CREATE EXTERNAL TABLE t STORED AS PARQUET COMPRESSION TYPE GZIP LOCATION 'foo.parquet'",
"CREATE EXTERNAL TABLE t STORED AS PARQUET COMPRESSION TYPE BZIP2 LOCATION 'foo.parquet'",
"CREATE EXTERNAL TABLE t STORED AS ARROW COMPRESSION TYPE GZIP LOCATION 'foo.arrow'",
"CREATE EXTERNAL TABLE t STORED AS ARROW COMPRESSION TYPE BZIP2 LOCATION 'foo.arrow'",
];
for sql in sqls {
let err = logical_plan(sql).expect_err("query should have failed");
assert_eq!(
"Plan(\"File compression type can be specified for CSV/JSON files.\")",
"Plan(\"File compression type cannot be set for PARQUET, AVRO, or ARROW files.\")",
format!("{err:?}")
);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/sql/ddl.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ LOCATION <literal>

`file_type` is one of `CSV`, `PARQUET`, `AVRO` or `JSON`

`LOCATION <literal>` specfies the location to find the data. It can be
`LOCATION <literal>` specifies the location to find the data. It can be
a path to a file or directory of partitioned files locally or on an
object store.

Expand Down

0 comments on commit ebf6c30

Please sign in to comment.