EVOLUTION-MANAGER
Edit File: foreign_key_delete_nonexistent.test
# Copyright(C) 2017 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/mroonga/skip_mysql_5_5.inc --source ../../include/mroonga/skip_mariadb_5_5.inc --source ../../include/mroonga/have_mroonga.inc --source ../../include/mroonga/load_mroonga_functions.inc --disable_warnings DROP DATABASE test; CREATE DATABASE test; USE test; --enable_warnings CREATE TABLE comments ( id int unsigned PRIMARY KEY, content varchar(140) NOT NULL ); CREATE TABLE entries ( content varchar(140) NOT NULL, comment_id int unsigned, FOREIGN KEY (comment_id) REFERENCES comments (id) ); INSERT INTO comments (id, content) VALUES (100, 'Good entry!'); INSERT INTO comments (id, content) VALUES (200, 'Very good entry!'); INSERT INTO entries (content, comment_id) VALUES ('Hello!', 100); DELETE FROM comments WHERE id = 200; SELECT * FROM entries; SELECT * FROM comments; SELECT mroonga_command('dump --dump_plugins no'); DROP TABLE entries; DROP TABLE comments; --source ../../include/mroonga/unload_mroonga_functions.inc --source ../../include/mroonga/have_mroonga_deinit.inc