Navigation Menu

Skip to content

Commit

Permalink
test: add missing drop tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 24, 2015
1 parent 59f96b1 commit 27e3556
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Expand Up @@ -25,3 +25,4 @@ table_create memos TABLE_PAT_KEY Int32
column_create memos content COLUMN_SCALAR LongText
column_create memos id COLUMN_SCALAR Int32
DROP TABLE memos;
DROP TABLE terms;
Expand Up @@ -40,6 +40,7 @@ ALTER TABLE memos DISABLE KEYS;
SELECT mroonga_command("dump");

DROP TABLE memos;
DROP TABLE terms;

--source ../../../../include/mroonga/unload_mroonga_functions.inc
--source ../../../../include/mroonga/have_mroonga_deinit.inc
Expand Up @@ -26,3 +26,4 @@ column_create memos content COLUMN_SCALAR LongText
column_create memos id COLUMN_SCALAR Int32
column_create terms content_index COLUMN_INDEX|WITH_POSITION memos content
DROP TABLE memos;
DROP TABLE terms;
Expand Up @@ -41,6 +41,7 @@ ALTER TABLE memos ENABLE KEYS;
SELECT mroonga_command("dump");

DROP TABLE memos;
DROP TABLE terms;

--source ../../../../include/mroonga/unload_mroonga_functions.inc
--source ../../../../include/mroonga/have_mroonga_deinit.inc

0 comments on commit 27e3556

Please sign in to comment.