nushell/crates/nu-command
Solomon 9083157baa
support table literal syntax in join right-table argument (#14190)
# Description

Makes `join` `right-table` support table literal notation instead of
parsing the column list (treated as empty data):

```diff
[{a: 1}] | join [[a]; [1]] a | to nuon
-[]
+[[a]; [1]]
```

Fixes #13537, fixes #14134
2024-10-29 06:37:44 -05:00
..
src support table literal syntax in join right-table argument (#14190) 2024-10-29 06:37:44 -05:00
tests support table literal syntax in join right-table argument (#14190) 2024-10-29 06:37:44 -05:00
Cargo.toml allow oem code pages to be used to decode text (#14187) 2024-10-29 06:32:35 -05:00
LICENSE Fix rest of license year ranges (#8727) 2023-04-04 09:03:29 +12:00
README.md Add top-level crate documentation/READMEs (#12907) 2024-07-14 10:10:41 +02:00

This crate contains the majority of our commands

We allow ourselves to move some of the commands in nu-command to nu-cmd-* crates as needed.

Internal Nushell crate

This crate implements components of Nushell and is not designed to support plugin authors or other users directly.