Skip to content

Commit 7ec1899

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 acee013 commit 7ec1899

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
@@ -10562,7 +10562,6 @@ where
1056210562
},
1056310563
},
1056410564
{
10565-
Skip: true,
1056610565
Query: "show create table tinyint_tbl;",
1056710566
Expected: []sql.Row{
1056810567
{"tinyint_tbl", "CREATE TABLE `tinyint_tbl` (\n" +
@@ -10588,7 +10587,6 @@ where
1058810587
},
1058910588
},
1059010589
{
10591-
Skip: true,
1059210590
Query: "show create table smallint_tbl;",
1059310591
Expected: []sql.Row{
1059410592
{"smallint_tbl", "CREATE TABLE `smallint_tbl` (\n" +
@@ -10614,7 +10612,6 @@ where
1061410612
},
1061510613
},
1061610614
{
10617-
Skip: true,
1061810615
Query: "show create table mediumint_tbl;",
1061910616
Expected: []sql.Row{
1062010617
{"mediumint_tbl", "CREATE TABLE `mediumint_tbl` (\n" +
@@ -10640,7 +10637,6 @@ where
1064010637
},
1064110638
},
1064210639
{
10643-
Skip: true,
1064410640
Query: "show create table int_tbl;",
1064510641
Expected: []sql.Row{
1064610642
{"int_tbl", "CREATE TABLE `int_tbl` (\n" +
@@ -10666,7 +10662,6 @@ where
1066610662
},
1066710663
},
1066810664
{
10669-
Skip: true,
1067010665
Query: "show create table bigint_tbl;",
1067110666
Expected: []sql.Row{
1067210667
{"bigint_tbl", "CREATE TABLE `bigint_tbl` (\n" +

0 commit comments

Comments
 (0)