nushell/crates/nu-cmd-dataframe/src/dataframe
Matthias Q cea67cb30b
Allow for .parq file ending as alternative to .parquet (#10112)
# Description

Many systems like Hadoops HDFS store parquet files with the short
variant `.parq`. It is quite annoying to rename these file before
opening them with nushell. This PR lets nushell accept .parq alongside
.parquet file endings.


# User-Facing Changes
Not sure if this is applicable here.

# Tests + Formatting

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes) - ✔️
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to
check that you're using the standard code style - ✔️
- `cargo test --workspace` to check that all tests pass -  (fails on
none related test)
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library -
✔️
2023-08-24 15:57:33 -05:00
..
eager Allow for .parq file ending as alternative to .parquet (#10112) 2023-08-24 15:57:33 -05:00
expressions Create Record type (#10103) 2023-08-25 07:50:29 +12:00
lazy Spanned Value step 1: span all value cases (#10042) 2023-08-25 08:48:05 +12:00
series Spanned Value step 1: span all value cases (#10042) 2023-08-25 08:48:05 +12:00
values Spanned Value step 1: span all value cases (#10042) 2023-08-25 08:48:05 +12:00
mod.rs Break up interdependencies of command crates (#9429) 2023-06-14 23:12:55 +02:00
README.md move dataframe commands to nu-cmd-dataframe (#9241) 2023-05-19 10:56:08 -07:00
test_dataframe.rs Fix a couple clippy warnings (#9936) 2023-08-07 06:23:11 +12:00
utils.rs Spanned Value step 1: span all value cases (#10042) 2023-08-25 08:48:05 +12:00

Dataframe

This dataframe directory holds all of the definitions of the dataframe data structures and commands.

There are three sections of commands:

For more details see the Nushell book section on dataframes