We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22622a0 commit 42f9587Copy full SHA for 42f9587
enginetest/queries/update_queries.go
@@ -638,6 +638,21 @@ var UpdateScriptTests = []ScriptTest{
638
},
639
640
641
+ {
642
+ Name: "UPDATE with subquery in keyless tables",
643
+ // https://github.com/dolthub/dolt/issues/9334
644
+ SetUpScript: []string{
645
+ "create table t (i int)",
646
+ "insert into t values (1)",
647
+ "update t set i = 10 where i in (select 1)",
648
+ },
649
+ Assertions: []ScriptTestAssertion{
650
651
+ Query: "select * from t",
652
+ Expected: []sql.Row{{10}},
653
654
655
656
}
657
658
var SpatialUpdateTests = []WriteQueryTest{
0 commit comments