Skip to content

Commit c840e36

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 3b15de9 commit c840e36

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
@@ -10794,7 +10794,6 @@ where
1079410794
},
1079510795
},
1079610796
{
10797-
Skip: true,
1079810797
Query: "show create table tinyint_tbl;",
1079910798
Expected: []sql.Row{
1080010799
{"tinyint_tbl", "CREATE TABLE `tinyint_tbl` (\n" +
@@ -10820,7 +10819,6 @@ where
1082010819
},
1082110820
},
1082210821
{
10823-
Skip: true,
1082410822
Query: "show create table smallint_tbl;",
1082510823
Expected: []sql.Row{
1082610824
{"smallint_tbl", "CREATE TABLE `smallint_tbl` (\n" +
@@ -10846,7 +10844,6 @@ where
1084610844
},
1084710845
},
1084810846
{
10849-
Skip: true,
1085010847
Query: "show create table mediumint_tbl;",
1085110848
Expected: []sql.Row{
1085210849
{"mediumint_tbl", "CREATE TABLE `mediumint_tbl` (\n" +
@@ -10872,7 +10869,6 @@ where
1087210869
},
1087310870
},
1087410871
{
10875-
Skip: true,
1087610872
Query: "show create table int_tbl;",
1087710873
Expected: []sql.Row{
1087810874
{"int_tbl", "CREATE TABLE `int_tbl` (\n" +
@@ -10898,7 +10894,6 @@ where
1089810894
},
1089910895
},
1090010896
{
10901-
Skip: true,
1090210897
Query: "show create table bigint_tbl;",
1090310898
Expected: []sql.Row{
1090410899
{"bigint_tbl", "CREATE TABLE `bigint_tbl` (\n" +

0 commit comments

Comments
 (0)