Skip to content

Commit e1abac3

Browse files
committed
removed table joining itself test (getting different error case in doltgres and error doesn't match mysql)
1 parent ec2567a commit e1abac3

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

enginetest/queries/update_queries.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -943,11 +943,6 @@ var UpdateErrorTests = []QueryErrorTest{
943943
Query: `UPDATE people SET height_inches = IF(ROW_NUMBER() OVER() % 2 = 0, 42, height_inches)`,
944944
ExpectedErr: sql.ErrWindowUnsupported,
945945
},
946-
{
947-
Query: `update people join people set height_inches = 100 where height_inches < 100`,
948-
// TODO: mysql outputs sql.ErrDuplicateAliasOrTable error instead
949-
ExpectedErr: sql.ErrAmbiguousColumnName,
950-
},
951946
}
952947

953948
var UpdateErrorScripts = []ScriptTest{

0 commit comments

Comments
 (0)