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

MySQL数据库

开发平台:

Visual C++

  1. set timestamp=1000000000;
  2. drop table if exists t1,t2;
  3. create table t1 (word varchar(20));
  4. create table t2 (id int auto_increment not null primary key);
  5. insert into t1 values ("abirvalg");
  6. insert into t2 values ();
  7. load data infile '../../std_data/words.dat' into table t1;
  8. load data infile '../../std_data/words.dat' into table t1;
  9. load data infile '../../std_data/words.dat' into table t1;
  10. load data infile '../../std_data/words.dat' into table t1;
  11. load data infile '../../std_data/words.dat' into table t1;
  12. load data infile '../../std_data/words.dat' into table t1;
  13. insert into t1 values ("Alas");
  14. flush logs;
  15. --- Local --
  16. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  17. use test;
  18. SET TIMESTAMP=1000000000;
  19. drop table if exists t1,t2;
  20. SET TIMESTAMP=1000000000;
  21. create table t1 (word varchar(20));
  22. SET TIMESTAMP=1000000000;
  23. create table t2 (id int auto_increment not null primary key);
  24. SET TIMESTAMP=1000000000;
  25. insert into t1 values ("abirvalg");
  26. SET INSERT_ID=1;
  27. SET TIMESTAMP=1000000000;
  28. insert into t2 values ();
  29. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-1-0' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  30. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-2-0' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  31. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-3-0' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  32. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-4-0' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  33. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-5-0' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  34. --- Broken LOAD DATA --
  35. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  36. use test;
  37. SET TIMESTAMP=1000000000;
  38. insert into t1 values ("Alas");
  39. --- --database --
  40. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  41. SET INSERT_ID=1;
  42. --- --position --
  43. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  44. use test;
  45. SET TIMESTAMP=1000000000;
  46. insert into t1 values ("Alas");
  47. --- Remote --
  48. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  49. use test;
  50. SET TIMESTAMP=1000000000;
  51. drop table if exists t1,t2;
  52. SET TIMESTAMP=1000000000;
  53. create table t1 (word varchar(20));
  54. SET TIMESTAMP=1000000000;
  55. create table t2 (id int auto_increment not null primary key);
  56. SET TIMESTAMP=1000000000;
  57. insert into t1 values ("abirvalg");
  58. SET INSERT_ID=1;
  59. SET TIMESTAMP=1000000000;
  60. insert into t2 values ();
  61. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-1-1' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  62. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-2-1' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  63. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-3-1' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  64. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-4-1' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  65. LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/var/tmp/words.dat-5-1' INTO TABLE `t1` FIELDS TERMINATED BY 't' ENCLOSED BY '' ESCAPED BY '\' LINES TERMINATED BY 'n' STARTING BY '' (word);
  66. --- Broken LOAD DATA --
  67. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  68. use test;
  69. SET TIMESTAMP=1000000000;
  70. insert into t1 values ("Alas");
  71. --- --database --
  72. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  73. SET INSERT_ID=1;
  74. --- --position --
  75. /*!40019 SET @@session.max_insert_delayed_threads=0*/;
  76. use test;
  77. SET TIMESTAMP=1000000000;
  78. insert into t1 values ("Alas");
  79. drop table t1, t2;