From fe7122280d5a2bb36e68c6cd8a14f3e1245bc3a3 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:16:18 -0500 Subject: [PATCH] allow int as a cellpath for `select` (#10048) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Description This PR allows ints to be used as cell paths. ### Before ```nushell ❯ let index = 0 ❯ locations | select $index Error: nu::shell::cant_convert × Can't convert to cell path. ╭─[entry #26:1:1] 1 │ locations | select $index · ───┬── · ╰── can't convert int to cell path ╰──── ``` ### After ```nushell ❯ let index = 0 ❯ locations | select $index ╭#┬───────location────────┬city_column┬state_column┬country_column┬lat_column┬lon_column╮ │0│http://ip-api.com/json/│city │region │countryCode │lat │lon │ ╰─┴───────────────────────┴───────────┴────────────┴──────────────┴──────────┴──────────╯ ``` # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-command/src/filters/select.rs | 22 +++++++++++++++++----- crates/nu-command/tests/commands/select.rs | 8 ++++++++ 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/crates/nu-command/src/filters/select.rs b/crates/nu-command/src/filters/select.rs index e8396a82e5de..a3eb99ef9f72 100644 --- a/crates/nu-command/src/filters/select.rs +++ b/crates/nu-command/src/filters/select.rs @@ -64,18 +64,20 @@ produce a table, a list will produce a list, and a record will produce a record. let columns: Vec = call.rest(engine_state, stack, 0)?; let mut new_columns: Vec = vec![]; for col_val in columns { + let col_span = &col_val.span()?; match col_val { Value::CellPath { val, .. } => { new_columns.push(val); } Value::List { vals, .. } => { - for val in vals { - match val { + for value in vals { + let val_span = &value.span()?; + match value { Value::String { val, .. } => { let cv = CellPath { members: vec![PathMember::String { val: val.clone(), - span: Span::unknown(), + span: *val_span, optional: false, }], }; @@ -85,7 +87,7 @@ produce a table, a list will produce a list, and a record will produce a record. let cv = CellPath { members: vec![PathMember::Int { val: val as usize, - span: Span::unknown(), + span: *val_span, optional: false, }], }; @@ -106,7 +108,17 @@ produce a table, a list will produce a list, and a record will produce a record. let cv = CellPath { members: vec![PathMember::String { val: val.clone(), - span: Span::unknown(), + span: *col_span, + optional: false, + }], + }; + new_columns.push(cv.clone()); + } + Value::Int { val, .. } => { + let cv = CellPath { + members: vec![PathMember::Int { + val: val as usize, + span: *col_span, optional: false, }], }; diff --git a/crates/nu-command/tests/commands/select.rs b/crates/nu-command/tests/commands/select.rs index 665a2fd58307..900a70ab0c3c 100644 --- a/crates/nu-command/tests/commands/select.rs +++ b/crates/nu-command/tests/commands/select.rs @@ -264,3 +264,11 @@ fn select_rows_with_variable_list() { assert_eq!(actual.out, "[[a, b, c]; [1, 2, 3], [7, 8, 9]]"); } + +#[test] +fn select_single_row_with_variable() { + let actual = nu!("let idx = 2;[{a: 1, b: 2} {a: 3, b: 5} {a: 3}] | select $idx | to nuon"); + + assert_eq!(actual.out, "[[a]; [3]]".to_string()); + assert!(actual.err.is_empty()); +}