mirror of
https://github.com/nushell/nushell.git
synced 2025-08-18 07:40:19 +02:00
# 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