Fix improperly escaped strings in stor update (#14921)

# Description

Fixes #14909 with the same technique used in #12820 for `stor insert`.
Single quotes (and others) now work properly in strings passed to `stor
update`. Also did some minor refactoring on `stor insert` so it matches
the changes in `stor update`.

# User-Facing Changes

Bug-fix.

# Tests + Formatting

Test added for this scenario.

- 🟢 `toolkit fmt`
- 🟢 `toolkit clippy`
- 🟢 `toolkit test`
- 🟢 `toolkit test stdlib`

# After Submitting

N/A
This commit is contained in:
Douglas
2025-01-26 08:20:39 -05:00
committed by GitHub
parent a011791631
commit f88ed6ecd5
4 changed files with 59 additions and 45 deletions

View File

@ -105,6 +105,7 @@ mod sort_by;
mod source_env;
mod split_column;
mod split_row;
mod stor;
mod str_;
mod table;
mod take;