EVOLUTION-MANAGER
Edit File: alter_table_add_column_multiple.test
# Copyright(C) 2014 Kouhei Sutou <kou@clear-code.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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA --source include/not_embedded.inc --source ../../include/mroonga/have_mroonga.inc --disable_warnings DROP TABLE IF EXISTS diaries; --enable_warnings CREATE TABLE diaries ( id INT PRIMARY KEY AUTO_INCREMENT, title VARCHAR(40) ) DEFAULT CHARSET UTF8; SHOW CREATE TABLE diaries; INSERT INTO diaries (title) VALUES ("survey"); SELECT * FROM diaries; ALTER TABLE diaries ADD COLUMN body VARCHAR(140) FIRST, ADD COLUMN published BOOLEAN AFTER id, ADD COLUMN created_at DATETIME; UPDATE diaries SET body = "will start groonga!"; SELECT * FROM diaries; INSERT INTO diaries (title, body, published, created_at) VALUES ("groonga (1)", "starting groonga...", TRUE, "2014-2-9 02:09:00"); INSERT INTO diaries (title, body, published, created_at) VALUES ("groonga (2)", "started groonga.", FALSE, "2014-2-9 12:19:00"); SELECT * FROM diaries; SHOW CREATE TABLE diaries; DROP TABLE diaries; --source ../../include/mroonga/have_mroonga_deinit.inc