From 5e0e42489ae328f2cd298d217354954ac7b9e4ab Mon Sep 17 00:00:00 2001 From: djshow832 <873581766@qq.com> Date: Wed, 15 Jun 2022 19:17:51 +0800 Subject: [PATCH] add comment to the test --- ddl/db_partition_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ddl/db_partition_test.go b/ddl/db_partition_test.go index 69f0cd8fd4289..4c3bdfb66faf9 100644 --- a/ddl/db_partition_test.go +++ b/ddl/db_partition_test.go @@ -3641,6 +3641,7 @@ func TestPartitionTableWithAnsiQuotes(t *testing.T) { tk.MustExec(`create table t(created_at timestamp) PARTITION BY RANGE (unix_timestamp(created_at)) ( PARTITION p0 VALUES LESS THAN (unix_timestamp('2021-12-01 00:00:00')), PARTITION p1 VALUES LESS THAN (unix_timestamp('2022-01-01 00:00:00')))`) + // FIXME: should be "created_at" instead of `created_at`, see #35389. tk.MustQuery("show create table t").Check(testkit.Rows("t CREATE TABLE \"t\" (\n" + " \"created_at\" timestamp NULL DEFAULT NULL\n" + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\n" +