Skip to content

Commit

Permalink
Update parser_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
JayLZhou authored Oct 19, 2021
1 parent 91ff8e7 commit 1311d01
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion parser/parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,6 @@ func (s *testParserSuite) TestDDL(c *C) {
{"CREATE TABLE foo (a, b.c);", false, ""},
{"CREATE TABLE (name CHAR(50) BINARY)", false, ""},
// test enable or disable cached table
{"CREATE TABLE tmp (a varchar(50), b int);", true, "CREATE TABLE `tmp` (`a` VARCHAR(50),`b` INT)"},
{"ALTER TABLE tmp CACHE", true, "ALTER TABLE `tmp` CACHE"},
{"ALTER TABLE tmp NOCACHE", true, "ALTER TABLE `tmp` NOCACHE"},
// for create temporary table
Expand Down

0 comments on commit 1311d01

Please sign in to comment.