Allow update to also insert (#610)

This commit is contained in:
JT
2021-12-28 10:11:20 +11:00
committed by GitHub
parent 0c1a7459b2
commit e94b8007c1
2 changed files with 46 additions and 2 deletions

View File

@ -192,3 +192,8 @@ fn select() -> TestResult {
"b",
)
}
#[test]
fn update_will_insert() -> TestResult {
run_test(r#"{} | update a b | get a"#, "b")
}