From c7951ef6bab6b960c5218ee4e3c8eb59dca141f8 Mon Sep 17 00:00:00 2001 From: h3n4l Date: Mon, 10 Oct 2022 15:41:54 +0800 Subject: [PATCH] Update parser/parser_test.go Co-authored-by: JmPotato --- parser/parser_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser_test.go b/parser/parser_test.go index 5b6b59a42b7be..b0fdd5a12d026 100644 --- a/parser/parser_test.go +++ b/parser/parser_test.go @@ -3627,7 +3627,7 @@ func TestDDL(t *testing.T) { {"ALTER TABLE t STATS_OPTIONS", false, ""}, // Restore INSERT_METHOD table option - {"create table t (a int) INSERT_METHOD=FIRST", true, "CREATE TABLE `t` (`a` INT) INSERT_METHOD = FIRST"}, + {"CREATE TABLE t (a int) INSERT_METHOD=FIRST", true, "CREATE TABLE `t` (`a` INT) INSERT_METHOD = FIRST"}, } RunTest(t, table, false) }