You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tk.MustExec("alter table t reorganize partition p0 into (partition p01 values less than (10), partition p02 values less than (20));")
4419
4420
tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1105 The statistics of related partitions will be outdated after reorganizing partitions. Please use 'ANALYZE TABLE' statement if you want to update it now"))
4420
4421
}
4422
+
4423
+
funcTestIssue52680(t*testing.T) {
4424
+
store, dom:=testkit.CreateMockStoreAndDomain(t)
4425
+
tk:=testkit.NewTestKit(t, store)
4426
+
tk.MustExec("use test;")
4427
+
tk.MustExec("create table issue52680 (id bigint primary key auto_increment) auto_id_cache=1;")
4428
+
tk.MustExec("insert into issue52680 values(default),(default);")
4429
+
tk.MustQuery("select * from issue52680").Check(testkit.Rows("1", "2"))
0 commit comments