mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 14:32:34 +01:00
d0e8003b2f
The followin mysql-tests failed (and they are known to fail): main.information_schema [ fail ] main.innodb_file_per_table_basic[ fail ] main.type_bit_innodb [ fail ] Tested against : MYSQL_SERVER_VERSION "5.1.28"
13 lines
445 B
Text
13 lines
445 B
Text
drop table if exists t1;
|
|
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
|
|
select * from t1;
|
|
c1 c2 stamp
|
|
replace delayed into t1 (c1, c2) values ( "text1","11");
|
|
ERROR HY000: DELAYED option not supported for table 't1'
|
|
select * from t1;
|
|
c1 c2 stamp
|
|
replace delayed into t1 (c1, c2) values ( "text1","12");
|
|
ERROR HY000: DELAYED option not supported for table 't1'
|
|
select * from t1;
|
|
c1 c2 stamp
|
|
drop table t1;
|