Skip to content

Commit 873af2a

Browse files
elianddbclaude
andcommitted
Unskip unsigned integer AUTO_INCREMENT tests after fixing overflow detection
- Remove Skip: true from all unsigned integer max value insert tests - Tests now pass correctly with proper overflow protection - SHOW CREATE TABLE displays correct AUTO_INCREMENT values for: - TINYINT UNSIGNED: AUTO_INCREMENT=255 - SMALLINT UNSIGNED: AUTO_INCREMENT=65535 - MEDIUMINT UNSIGNED: AUTO_INCREMENT=16777215 - INT UNSIGNED: AUTO_INCREMENT=4294967295 - BIGINT UNSIGNED: AUTO_INCREMENT=18446744073709551615 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent fdef77d commit 873af2a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

enginetest/queries/script_queries.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10784,7 +10784,6 @@ where
1078410784
ExpectedErr: sql.ErrValueOutOfRange,
1078510785
},
1078610786
{
10787-
Skip: true,
1078810787
Query: "insert into tinyint_tbl values (255)",
1078910788
Expected: []sql.Row{
1079010789
{types.OkResult{
@@ -10809,7 +10808,6 @@ where
1080910808
ExpectedErr: sql.ErrValueOutOfRange,
1081010809
},
1081110810
{
10812-
Skip: true,
1081310811
Query: "insert into smallint_tbl values (65535);",
1081410812
Expected: []sql.Row{
1081510813
{types.OkResult{
@@ -10834,7 +10832,6 @@ where
1083410832
ExpectedErr: sql.ErrValueOutOfRange,
1083510833
},
1083610834
{
10837-
Skip: true,
1083810835
Query: "insert into mediumint_tbl values (16777215);",
1083910836
Expected: []sql.Row{
1084010837
{types.OkResult{
@@ -10859,7 +10856,6 @@ where
1085910856
ExpectedErr: sql.ErrValueOutOfRange,
1086010857
},
1086110858
{
10862-
Skip: true,
1086310859
Query: "insert into int_tbl values (4294967295)",
1086410860
Expected: []sql.Row{
1086510861
{types.OkResult{
@@ -10884,7 +10880,6 @@ where
1088410880
ExpectedErr: sql.ErrValueOutOfRange,
1088510881
},
1088610882
{
10887-
Skip: true,
1088810883
Query: "insert into bigint_tbl values (18446744073709551615);",
1088910884
Expected: []sql.Row{
1089010885
{types.OkResult{

0 commit comments

Comments
 (0)