[Groonga-mysql-commit] mroonga/mroonga [fix-for-visual-studio] added test case for "CREATE TABLE".

Back to archive index

Tetsuro IKEDA null+****@clear*****
Thu Oct 4 10:29:30 JST 2012


Tetsuro IKEDA	2010-03-23 19:08:58 +0900 (Tue, 23 Mar 2010)

  New Revision: 1e1a28d362599084b71852558807f01a974de971
  https://github.com/mroonga/mroonga/commit/1e1a28d362599084b71852558807f01a974de971

  Log:
    added test case for "CREATE TABLE".

  Added files:
    test/sql/r/create_table.result
    test/sql/t/create_table.test

  Added: test/sql/r/create_table.result (+11 -0) 100644
===================================================================
--- /dev/null
+++ test/sql/r/create_table.result    2010-03-23 19:08:58 +0900 (1a6531e)
@@ -0,0 +1,11 @@
+install plugin mroonga soname 'libmroonga.so';
+set storage_engine=mroonga;
+drop table if exists t1, t2, t3;
+create table t1 (c1 int);
+create table t2 (c1 int);
+create table t3 (c1 int);
+drop table t1,t2,t3;
+create table t1 (c1 int, c2 int, c3 int);
+create table t2 (c1 int primary key, c2 int, c3 int);
+drop table t1,t2;
+uninstall plugin mroonga;

  Added: test/sql/t/create_table.test (+19 -0) 100644
===================================================================
--- /dev/null
+++ test/sql/t/create_table.test    2010-03-23 19:08:58 +0900 (0ef45cf)
@@ -0,0 +1,19 @@
+--disable_warnings
+install plugin mroonga soname 'libmroonga.so';
+set storage_engine=mroonga;
+drop table if exists t1, t2, t3;
+--enable_warnings
+
+create table t1 (c1 int);
+create table t2 (c1 int);
+create table t3 (c1 int);
+drop table t1,t2,t3;
+
+create table t1 (c1 int, c2 int, c3 int);
+create table t2 (c1 int primary key, c2 int, c3 int);
+drop table t1,t2;
+
+
+--disable_warnings
+uninstall plugin mroonga;
+--enable_warnings
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index