Soft rest arguments column path cohersions. (#3016)

This commit is contained in:
Andrés N. Robalino
2021-02-06 20:05:47 -05:00
committed by GitHub
parent d66baaceb9
commit debeadbf3f
8 changed files with 246 additions and 49 deletions

View File

@ -210,7 +210,7 @@ fn parses_ini() {
fn parses_utf16_ini() {
let actual = nu!(
cwd: "tests/fixtures/formats",
"open utf16.ini | get '.ShellClassInfo' | get IconIndex"
"open utf16.ini | rename info | get info | get IconIndex"
);
assert_eq!(actual.out, "-236")

View File

@ -55,8 +55,8 @@ fn complex_nested_columns() {
r#"
open los_tres_caballeros.json
| select nu."0xATYKARNU" nu.committers.name nu.releases.version
| where "nu.releases.version" > "0.8"
| get "nu.releases.version"
| where nu_releases_version > "0.8"
| get nu_releases_version
"#
));