mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 06:58:47 +01:00
Polars: Map pq extension to parquet files (#15284)
# Description Files with the extension pq will automatically be treated as parquet files. closes #15282
This commit is contained in:
parent
95dcb2fd6c
commit
2dab65f852
@ -52,7 +52,7 @@ impl From<&str> for PolarsFileType {
|
||||
match file_type {
|
||||
"csv" => PolarsFileType::Csv,
|
||||
"tsv" => PolarsFileType::Tsv,
|
||||
"parquet" | "parq" => PolarsFileType::Parquet,
|
||||
"parquet" | "parq" | "pq" => PolarsFileType::Parquet,
|
||||
"ipc" | "arrow" => PolarsFileType::Arrow,
|
||||
"json" => PolarsFileType::Json,
|
||||
"avro" => PolarsFileType::Avro,
|
||||
|
Loading…
Reference in New Issue
Block a user