mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 08:23:24 +01:00
9ebaa737aa
Closes #11433 # Description This feature implements passing a list into `stor insert` through pipeline. ```bash stor create --table-name nudb --columns {bool1: bool, int1: int, float1: float} ; [[bool1 int1 float1]; [true 5 1.1], [false 8 3.14]] | stor insert --table-name nudb ``` ```bash stor create --table-name files --columns {name: str, type: str, size: int, modified: datetime} ; ls | stor insert --table-name files ``` # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` |
||
---|---|---|
.. | ||
create.rs | ||
delete.rs | ||
export.rs | ||
import.rs | ||
insert.rs | ||
mod.rs | ||
open.rs | ||
reset.rs | ||
stor_.rs | ||
update.rs |