mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 19:57:44 +02:00
allow dfr open
to open tsv
files (#4516)
This commit is contained in:
@ -89,11 +89,11 @@ fn command(
|
|||||||
|
|
||||||
match file.item.extension() {
|
match file.item.extension() {
|
||||||
Some(e) => match e.to_str() {
|
Some(e) => match e.to_str() {
|
||||||
Some("csv") => from_csv(engine_state, stack, call),
|
Some("csv") | Some("tsv") => from_csv(engine_state, stack, call),
|
||||||
Some("parquet") => from_parquet(engine_state, stack, call),
|
Some("parquet") => from_parquet(engine_state, stack, call),
|
||||||
Some("json") => from_json(engine_state, stack, call),
|
Some("json") => from_json(engine_state, stack, call),
|
||||||
_ => Err(ShellError::FileNotFoundCustom(
|
_ => Err(ShellError::FileNotFoundCustom(
|
||||||
"Not a csv, parquet or json file".into(),
|
"Not a csv, tsv, parquet or json file".into(),
|
||||||
file.span,
|
file.span,
|
||||||
)),
|
)),
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user