summaryrefslogtreecommitdiff
path: root/mysql-test/suite/s3/partition_create_fail.result
blob: 923a54b59719600a429deb7e882b953d0153cfec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SET @saved_dbug = @@debug_dbug;
CREATE TABLE p0 (
c1 int primary key,
c2 int DEFAULT NULL
) ENGINE=InnoDB;
insert into p0 select seq,seq from seq_1_to_10;
SET debug_dbug='+d,failed_create_partitioning_metadata';
alter table p0 engine=s3
PARTITION BY RANGE (c1)
(PARTITION p0 VALUES LESS THAN (100));
ERROR HY000: Simulated crash
SET debug_dbug=@saved_dbug;
drop table p0;
drop table p0;
ERROR 42S02: Unknown table 's3.p0'