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 42f9587 commit f412af1Copy full SHA for f412af1
enginetest/queries/update_queries.go
@@ -935,21 +935,6 @@ var UpdateIgnoreScripts = []ScriptTest{
935
},
936
937
938
- {
939
- Name: "UPDATE with subquery in keyless tables",
940
- // https://github.com/dolthub/dolt/issues/9334
941
- SetUpScript: []string{
942
- "create table t (i int)",
943
- "insert into t values (1)",
944
- "update t set i = 10 where i in (select 1)",
945
- },
946
- Assertions: []ScriptTestAssertion{
947
948
- Query: "select * from t",
949
- Expected: []sql.Row{{10}},
950
951
952
953
}
954
955
var UpdateErrorTests = []QueryErrorTest{
0 commit comments