Skip to content

Commit e5b3548

Browse files
elianddbclaude
andcommitted
Unskip unsigned integer auto-increment SHOW CREATE TABLE tests
These tests verify that SHOW CREATE TABLE correctly displays AUTO_INCREMENT values at integer type maximums for unsigned types: - 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 Related to dolthub/dolt#9530 auto-increment overflow protection fix. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 990284e commit e5b3548

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
@@ -10631,7 +10631,6 @@ where
1063110631
},
1063210632
},
1063310633
{
10634-
Skip: true,
1063510634
Query: "show create table tinyint_tbl;",
1063610635
Expected: []sql.Row{
1063710636
{"tinyint_tbl", "CREATE TABLE `tinyint_tbl` (\n" +
@@ -10657,7 +10656,6 @@ where
1065710656
},
1065810657
},
1065910658
{
10660-
Skip: true,
1066110659
Query: "show create table smallint_tbl;",
1066210660
Expected: []sql.Row{
1066310661
{"smallint_tbl", "CREATE TABLE `smallint_tbl` (\n" +
@@ -10683,7 +10681,6 @@ where
1068310681
},
1068410682
},
1068510683
{
10686-
Skip: true,
1068710684
Query: "show create table mediumint_tbl;",
1068810685
Expected: []sql.Row{
1068910686
{"mediumint_tbl", "CREATE TABLE `mediumint_tbl` (\n" +
@@ -10709,7 +10706,6 @@ where
1070910706
},
1071010707
},
1071110708
{
10712-
Skip: true,
1071310709
Query: "show create table int_tbl;",
1071410710
Expected: []sql.Row{
1071510711
{"int_tbl", "CREATE TABLE `int_tbl` (\n" +
@@ -10735,7 +10731,6 @@ where
1073510731
},
1073610732
},
1073710733
{
10738-
Skip: true,
1073910734
Query: "show create table bigint_tbl;",
1074010735
Expected: []sql.Row{
1074110736
{"bigint_tbl", "CREATE TABLE `bigint_tbl` (\n" +

0 commit comments

Comments
 (0)