Commit 7c26af4a authored by Zardosht Kasheff's avatar Zardosht Kasheff

refs #5469, add mysql layer test

git-svn-id: file:///svn/mysql/tests/mysql-test@47801 c7de825b-a66e-492c-adef-691d508d4ae1
parent 6ef13917
*** Bug #23945 ***
SET STORAGE_ENGINE = tokudb;
DROP TABLE IF EXISTS t1;
SET AUTOCOMMIT = 1;
CREATE TABLE t1 (PRIMARY KEY (a)) SELECT 1 AS a UNION ALL SELECT 1;
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
SELECT * FROM t1;
ERROR 42S02: Table 'test.t1' doesn't exist
DROP TABLE t1;
ERROR 42S02: Unknown table 't1'
SET AUTOCOMMIT = 0;
CREATE TABLE t1 (PRIMARY KEY (a)) SELECT 1 AS a UNION ALL SELECT 1;
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
SELECT * FROM t1;
ERROR 42S02: Table 'test.t1' doesn't exist
DROP TABLE t1;
ERROR 42S02: Unknown table 't1'
create table t1 (a int, b int) engine=MyISAM;
insert into t1 values (1,1),(1,2);
alter table t1 engine=TokuDB, add unique key (a);
ERROR 23000: Duplicate entry '1' for key 'a'
drop table t1;
#
# Bug #23945: crash during drop table, AUTOCOMMIT=0, CREATE TABLE .. AS SELECT
#
--echo *** Bug #23945 ***
# --source include/have_innodb.inc
# SET STORAGE_ENGINE = InnoDB;
--source include/have_tokudb.inc
SET STORAGE_ENGINE = tokudb;
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
SET AUTOCOMMIT = 1;
--error ER_DUP_ENTRY
CREATE TABLE t1 (PRIMARY KEY (a)) SELECT 1 AS a UNION ALL SELECT 1;
--error ER_NO_SUCH_TABLE
SELECT * FROM t1;
--error ER_BAD_TABLE_ERROR
DROP TABLE t1;
SET AUTOCOMMIT = 0;
--error ER_DUP_ENTRY
CREATE TABLE t1 (PRIMARY KEY (a)) SELECT 1 AS a UNION ALL SELECT 1;
--error ER_NO_SUCH_TABLE
SELECT * FROM t1;
# Here comes a server crash.
--error ER_BAD_TABLE_ERROR
DROP TABLE t1;
create table t1 (a int, b int) engine=MyISAM;
insert into t1 values (1,1),(1,2);
--error ER_DUP_ENTRY
alter table t1 engine=TokuDB, add unique key (a);
drop table t1;
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment