mirror of
https://github.com/nushell/nushell.git
synced 2025-03-13 06:58:47 +01:00
Polars: Allow pq extension for opening/saving parquet
This commit is contained in:
parent
95dcb2fd6c
commit
a2dca41523
@ -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