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

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_ndb.inc
  2. -- source include/not_embedded.inc
  3. --disable_warnings
  4. DROP TABLE IF EXISTS t2;
  5. --enable_warnings
  6. CREATE TABLE t2 (
  7.   a bigint unsigned NOT NULL PRIMARY KEY,
  8.   b int unsigned not null,
  9.   c int unsigned
  10. ) engine=ndbcluster;
  11. #
  12. # insert records into table
  13. #
  14. let $1=500;
  15. disable_query_log;
  16. while ($1)
  17. {
  18.  eval insert into t2 values($1*10, $1+9, 5*$1), ($1*10+1, $1+10, 7),($1*10+2, $1+10, 7*$1), ($1*10+3, $1+10, 10+$1), ($1*10+4, $1+10, 70*$1), ($1*10+5, $1+10, 7), ($1*10+6, $1+10, 9), ($1*10+7, $1+299, 899), ($1*10+8, $1+10, 12), ($1*10+9, $1+10, 14*$1);
  19.  dec $1;
  20. }
  21. enable_query_log;
  22. select count(*) from t2;
  23. truncate table t2;
  24. select count(*) from t2;
  25. drop table t2;
  26. # End of 4.1 tests