[Groonga-mysql-commit] mroonga/mroonga at e86a30c [master] test: add alter table change column with type

Back to archive index

Kenji Maruyama null+****@clear*****
Wed Feb 26 14:16:09 JST 2014


Kenji Maruyama	2014-02-26 14:16:09 +0900 (Wed, 26 Feb 2014)

  New Revision: e86a30cb4f7701787f2222f3452ecb54386fdd67
  https://github.com/mroonga/mroonga/commit/e86a30cb4f7701787f2222f3452ecb54386fdd67

  Message:
    test: add alter table change column with type

  Added files:
    mysql-test/mroonga/storage/alter_table/change_column/r/with_type.result
    mysql-test/mroonga/storage/alter_table/change_column/t/with_type.test

  Added: mysql-test/mroonga/storage/alter_table/change_column/r/with_type.result (+18 -0) 100644
===================================================================
--- /dev/null
+++ mysql-test/mroonga/storage/alter_table/change_column/r/with_type.result    2014-02-26 14:16:09 +0900 (31bf9a6)
@@ -0,0 +1,18 @@
+DROP TABLE IF EXISTS tags;
+DROP TABLE IF EXISTS bugs;
+CREATE TABLE tags (
+id INT UNSIGNED PRIMARY KEY
+) DEFAULT CHARSET=utf8;
+CREATE TABLE bugs (
+id INT UNSIGNED PRIMARY KEY
+) DEFAULT CHARSET=utf8;
+ALTER TABLE bugs ADD COLUMN name VARCHAR(64) COMMENT 'type "tags"';
+SELECT mroonga_command("dump");
+mroonga_command("dump")
+table_create tags TABLE_PAT_KEY UInt32
+column_create tags id COLUMN_SCALAR UInt32
+table_create bugs TABLE_PAT_KEY UInt32
+column_create bugs id COLUMN_SCALAR UInt32
+column_create bugs name COLUMN_SCALAR tags
+DROP TABLE bugs;
+DROP TABLE tags;

  Added: mysql-test/mroonga/storage/alter_table/change_column/t/with_type.test (+42 -0) 100644
===================================================================
--- /dev/null
+++ mysql-test/mroonga/storage/alter_table/change_column/t/with_type.test    2014-02-26 14:16:09 +0900 (b2d2e7e)
@@ -0,0 +1,42 @@
+# Copyright(C) 2014 Kenji Maruyama <mmmaru777 �� gmail.com>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+--source include/not_embedded.inc
+--source ../../../../include/mroonga/have_mroonga.inc
+--source ../../../../include/mroonga/load_mroonga_functions.inc
+
+--disable_warnings
+DROP TABLE IF EXISTS tags;
+DROP TABLE IF EXISTS bugs;
+--enable_warnings
+
+CREATE TABLE tags (
+  id INT UNSIGNED PRIMARY KEY
+) DEFAULT CHARSET=utf8;
+
+CREATE TABLE bugs (
+  id INT UNSIGNED PRIMARY KEY
+) DEFAULT CHARSET=utf8;
+
+ALTER TABLE bugs ADD COLUMN name VARCHAR(64) COMMENT 'type "tags"';
+
+SELECT mroonga_command("dump");
+
+DROP TABLE bugs;
+DROP TABLE tags;
+
+--source ../../../../include/mroonga/unload_mroonga_functions.inc
+--source ../../../../include/mroonga/have_mroonga_deinit.inc
-------------- next part --------------
HTML����������������������������...
Descargar 



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