Navigation Menu

Skip to content

Commit

Permalink
test: remove needless table names
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 28, 2012
1 parent b2f115f commit 695a533
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
@@ -1,4 +1,4 @@
DROP TABLE IF EXISTS t1, t2, t3;
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));
INSERT INTO t1 VALUES(1,10,"aa ii uu ee oo");
Expand Down
@@ -1,4 +1,5 @@
# Copyright(C) 2012 Kentoku SHIBA
# Copyright(C) 2012 Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Expand All @@ -17,7 +18,7 @@
--source include/have_mroonga.inc

--disable_warnings
DROP TABLE IF EXISTS t1, t2, t3;
DROP TABLE IF EXISTS t1;
--enable_warnings

FLUSH STATUS;
Expand Down

0 comments on commit 695a533

Please sign in to comment.