allow dfr open to open tsv files (#4516)

This commit is contained in:
Darren Schroeder 2022-02-17 14:15:17 -06:00 committed by GitHub
parent 9415352447
commit d4cd3f9578
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,11 +89,11 @@ fn command(
match file.item.extension() {
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("json") => from_json(engine_state, stack, call),
_ => Err(ShellError::FileNotFoundCustom(
"Not a csv, parquet or json file".into(),
"Not a csv, tsv, parquet or json file".into(),
file.span,
)),
},