You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
445 B

  1. drop table if exists t1;
  2. create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
  3. select * from t1;
  4. c1 c2 stamp
  5. replace delayed into t1 (c1, c2) values ( "text1","11");
  6. ERROR HY000: DELAYED option not supported for table 't1'
  7. select * from t1;
  8. c1 c2 stamp
  9. replace delayed into t1 (c1, c2) values ( "text1","12");
  10. ERROR HY000: DELAYED option not supported for table 't1'
  11. select * from t1;
  12. c1 c2 stamp
  13. drop table t1;