Open GaoYusong opened 2 months ago
{
Name: "ALTER TABLE AUTO INCREMENT no-ops on table with no original auto increment key",
SetUpScript: []string{
"CREATE table test (pk int primary key)",
"ALTER TABLE `test` auto_increment = 2;",
"INSERT INTO test VALUES (1)",
},
Assertions: []ScriptTestAssertion{
{
Query: "SELECT * FROM test",
Expected: []sql.Row{{1}},
},
},
},