Navigation Menu

Skip to content

Commit

Permalink
test: break a long SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 28, 2012
1 parent 695a533 commit 925c767
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
@@ -1,6 +1,12 @@
DROP TABLE IF EXISTS t1;
FLUSH STATUS;
CREATE TABLE t1 (c1 INT PRIMARY KEY, c2 INT, c3 TEXT, KEY idx1(c2), FULLTEXT INDEX ft(c3));
CREATE TABLE t1 (
c1 INT PRIMARY KEY,
c2 INT,
c3 TEXT,
KEY idx1(c2),
FULLTEXT INDEX ft(c3)
);
INSERT INTO t1 VALUES(1,10,"aa ii uu ee oo");
INSERT INTO t1 VALUES(2,20,"ka ki ku ke ko");
INSERT INTO t1 VALUES(3,30,"sa si su se so");
Expand Down
Expand Up @@ -22,7 +22,13 @@ DROP TABLE IF EXISTS t1;
--enable_warnings

FLUSH STATUS;
CREATE TABLE t1 (c1 INT PRIMARY KEY, c2 INT, c3 TEXT, KEY idx1(c2), FULLTEXT INDEX ft(c3));
CREATE TABLE t1 (
c1 INT PRIMARY KEY,
c2 INT,
c3 TEXT,
KEY idx1(c2),
FULLTEXT INDEX ft(c3)
);
INSERT INTO t1 VALUES(1,10,"aa ii uu ee oo");
INSERT INTO t1 VALUES(2,20,"ka ki ku ke ko");
INSERT INTO t1 VALUES(3,30,"sa si su se so");
Expand Down

0 comments on commit 925c767

Please sign in to comment.