forked from extern/nushell
make insert, update, upsert support lazy records (#9323)
# Description Fixes: #9165 It's because `sys` returns a lazy record, and `insert`, `update`, `upsert` can't operate on lazy record yet. # User-Facing Changes # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect -A clippy::result_large_err` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
This commit is contained in:
@ -1050,6 +1050,12 @@ impl Value {
|
||||
}
|
||||
}
|
||||
}
|
||||
Value::LazyRecord { val, .. } => {
|
||||
// convert to Record first.
|
||||
let mut record = val.collect()?;
|
||||
record.upsert_data_at_cell_path(cell_path, new_val)?;
|
||||
*self = record
|
||||
}
|
||||
Value::Error { error } => return Err(*error.to_owned()),
|
||||
v => {
|
||||
return Err(ShellError::CantFindColumn {
|
||||
@ -1181,6 +1187,12 @@ impl Value {
|
||||
});
|
||||
}
|
||||
}
|
||||
Value::LazyRecord { val, .. } => {
|
||||
// convert to Record first.
|
||||
let mut record = val.collect()?;
|
||||
record.update_data_at_cell_path(cell_path, new_val)?;
|
||||
*self = record
|
||||
}
|
||||
Value::Error { error } => return Err(*error.to_owned()),
|
||||
v => {
|
||||
return Err(ShellError::CantFindColumn {
|
||||
@ -1293,6 +1305,13 @@ impl Value {
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
Value::LazyRecord { val, .. } => {
|
||||
// convert to Record first.
|
||||
let mut record = val.collect()?;
|
||||
record.remove_data_at_cell_path(cell_path)?;
|
||||
*self = record;
|
||||
Ok(())
|
||||
}
|
||||
v => Err(ShellError::CantFindColumn {
|
||||
col_name: col_name.to_string(),
|
||||
span: *span,
|
||||
@ -1391,6 +1410,13 @@ impl Value {
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
Value::LazyRecord { val, .. } => {
|
||||
// convert to Record first.
|
||||
let mut record = val.collect()?;
|
||||
record.remove_data_at_cell_path(cell_path)?;
|
||||
*self = record;
|
||||
Ok(())
|
||||
}
|
||||
v => Err(ShellError::CantFindColumn {
|
||||
col_name: col_name.to_string(),
|
||||
span: *span,
|
||||
@ -1507,6 +1533,12 @@ impl Value {
|
||||
cols.push(col_name.clone());
|
||||
vals.push(new_val);
|
||||
}
|
||||
Value::LazyRecord { val, span } => {
|
||||
// convert to Record first.
|
||||
let mut record = val.collect()?;
|
||||
record.insert_data_at_cell_path(cell_path, new_val, *span)?;
|
||||
*self = record
|
||||
}
|
||||
other => {
|
||||
return Err(ShellError::UnsupportedInput(
|
||||
"table or record".into(),
|
||||
|
Reference in New Issue
Block a user