delete.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Check for problems with delete
  3. #
  4. drop table if exists t1;
  5. CREATE TABLE t1 (a tinyint(3), b tinyint(5));
  6. INSERT INTO t1 VALUES (1,1);
  7. INSERT LOW_PRIORITY INTO t1 VALUES (1,2);
  8. INSERT INTO t1 VALUES (1,3);
  9. DELETE from t1 where a=1 limit 1;
  10. DELETE LOW_PRIORITY from t1 where a=1;
  11. INSERT INTO t1 VALUES (1,1);
  12. DELETE from t1;
  13. LOCK TABLE t1 write;
  14. INSERT INTO t1 VALUES (1,2);
  15. DELETE from t1;
  16. UNLOCK TABLES;
  17. INSERT INTO t1 VALUES (1,2);
  18. SET AUTOCOMMIT=0;
  19. DELETE from t1;
  20. SET AUTOCOMMIT=1;
  21. drop table t1;
  22. #
  23. # Test of delete when the delete will cause a node to disappear and reappear
  24. # (This assumes a block size of 1024)
  25. #
  26. create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a));
  27. insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23);
  28. delete from t1 where a=26;
  29. drop table t1;
  30. create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a));
  31. insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27);
  32. delete from t1 where a=27;
  33. drop table t1;