Tetsuro IKEDA
null+****@clear*****
Thu Oct 4 10:20:04 JST 2012
Tetsuro IKEDA 2010-03-17 11:47:05 +0900 (Wed, 17 Mar 2010) New Revision: 7a17298690c2a87f23758002fd0e7eb30e55d0e0 https://github.com/mroonga/mroonga/commit/7a17298690c2a87f23758002fd0e7eb30e55d0e0 Log: added SQL testcase for DROP TABLE. Added files: test/sql/r/drop_table.result test/sql/t/drop_table.test Added: test/sql/r/drop_table.result (+9 -0) 100644 =================================================================== --- /dev/null +++ test/sql/r/drop_table.result 2010-03-17 11:47:05 +0900 (b94dfa8) @@ -0,0 +1,9 @@ +install plugin mroonga soname 'libmroonga.so'; +drop table if exists t1, t2, t3; +create table t1 (c1 int primary key, c2 int, c3 int) engine = mroonga; +create table t2 (c1 int primary key, c2 int, c3 int) engine = mroonga; +create table t3 (c1 int primary key, c2 int, c3 int) engine = mroonga; +drop table t1; +drop table t2; +drop table t3; +uninstall plugin mroonga; Added: test/sql/t/drop_table.test (+16 -0) 100644 =================================================================== --- /dev/null +++ test/sql/t/drop_table.test 2010-03-17 11:47:05 +0900 (968447a) @@ -0,0 +1,16 @@ +--disable_warnings +install plugin mroonga soname 'libmroonga.so'; +drop table if exists t1, t2, t3; +--enable_warnings + +create table t1 (c1 int primary key, c2 int, c3 int) engine = mroonga; +create table t2 (c1 int primary key, c2 int, c3 int) engine = mroonga; +create table t3 (c1 int primary key, c2 int, c3 int) engine = mroonga; + +drop table t1; +drop table t2; +drop table t3; + +--disable_warnings +uninstall plugin mroonga; +--enable_warnings -------------- next part -------------- HTML����������������������������...下載