Navigation Menu

Skip to content

Commit

Permalink
[wrapper][test] use normal table
Browse files Browse the repository at this point in the history
refs #1301
  • Loading branch information
kou committed Mar 4, 2012
1 parent f0117e7 commit 981040e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
@@ -1,5 +1,5 @@
DROP TEMPORARY TABLE IF EXISTS diaries;
CREATE TEMPORARY TABLE diaries (
DROP TABLE IF EXISTS diaries;
CREATE TABLE diaries (
id INT PRIMARY KEY AUTO_INCREMENT,
date TIMESTAMP NOT NULL,
title VARCHAR(100) NOT NULL,
Expand Down
Expand Up @@ -17,10 +17,10 @@
--source include/have_mroonga.inc

--disable_warnings
DROP TEMPORARY TABLE IF EXISTS diaries;
DROP TABLE IF EXISTS diaries;
--enable_warnings

CREATE TEMPORARY TABLE diaries (
CREATE TABLE diaries (
id INT PRIMARY KEY AUTO_INCREMENT,
date TIMESTAMP NOT NULL,
title VARCHAR(100) NOT NULL,
Expand Down

0 comments on commit 981040e

Please sign in to comment.