|
|
|
@ -123,6 +123,10 @@ master-bin.000001 # Query 1 # use `test`; create table t3 like t1 |
|
|
|
master-bin.000001 # Query 1 # use `test`; insert into t1 select * from t3 |
|
|
|
master-bin.000001 # Query 1 # use `test`; replace into t1 select * from t3 |
|
|
|
drop table t1,t2,t3; |
|
|
|
CREATE TABLE t1(a INT) ENGINE=BLACKHOLE; |
|
|
|
INSERT DELAYED INTO t1 VALUES(1); |
|
|
|
ERROR HY000: Table storage engine for 't1' doesn't have this option |
|
|
|
DROP TABLE t1; |
|
|
|
CREATE TABLE t1(a INT, b INT) ENGINE=BLACKHOLE; |
|
|
|
DELETE FROM t1 WHERE a=10; |
|
|
|
ALTER TABLE t1 ADD INDEX(a); |
|
|
|
|