Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Mar 7, 2025
1 parent 18a580a commit 94228ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enginetest/queries/script_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -2810,7 +2810,7 @@ CREATE TABLE tab3 (
},
{
Query: "INSERT INTO test (pk) VALUES (3);",
ExpectedErr: sql.ErrInsertIntoNonNullableDefaultNullColumn,
ExpectedErr: sql.ErrInsertIntoNonNullableProvidedNull,
},
{
Query: "ALTER TABLE test ALTER v2 DROP DEFAULT;",
Expand All @@ -2826,7 +2826,7 @@ CREATE TABLE tab3 (
},
{
Query: "INSERT INTO test (pk) VALUES (2);",
ExpectedErr: sql.ErrInsertIntoNonNullableDefaultNullColumn,
ExpectedErr: sql.ErrInsertIntoNonNullableProvidedNull,
},
{
Query: "ALTER TABLE test ALTER v1 SET DEFAULT 100, alter v1 SET DEFAULT 200",
Expand Down

0 comments on commit 94228ee

Please sign in to comment.