innodb-replace.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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"),( "text2","12");
  6. ERROR HY000: Table storage engine for 't1' doesn't have this option
  7. select * from t1;
  8. c1 c2 stamp
  9. replace delayed into t1 (c1, c2)  values ( "text1","12"),( "text2","13"),( "text3","14", "a" ),( "text4","15", "b" );
  10. ERROR HY000: Table storage engine for 't1' doesn't have this option
  11. select * from t1;
  12. c1 c2 stamp
  13. drop table t1;