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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Some simple test of load data
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. create table t1 (a date, b date, c date not null, d date);
  8. load data infile '../../std_data/loaddata1.dat' into table t1 fields terminated by ',';
  9. load data infile '../../std_data/loaddata1.dat' into table t1 fields terminated by ',' IGNORE 2 LINES;
  10. SELECT * from t1;
  11. truncate table t1;
  12. load data infile '../../std_data/loaddata1.dat' into table t1 fields terminated by ',' LINES STARTING BY ',' (b,c,d);
  13. SELECT * from t1;
  14. drop table t1;
  15. create table t1 (a text, b text);
  16. load data infile '../../std_data/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''';
  17. select concat('|',a,'|'), concat('|',b,'|') from t1;
  18. drop table t1;
  19. create table t1 (a int, b char(10));
  20. load data infile '../../std_data/loaddata3.dat' into table t1 fields terminated by '' enclosed by '' ignore 1 lines;
  21. select * from t1;
  22. truncate table t1;
  23. load data infile '../../std_data/loaddata4.dat' into table t1 fields terminated by '' enclosed by '' lines terminated by '' ignore 1 lines;
  24. # The empty line last comes from the end line field in the file
  25. select * from t1;
  26. drop table t1;
  27. #
  28. # Bug #12053 LOAD DATA INFILE ignores NO_AUTO_VALUE_ON_ZERO setting
  29. #
  30. SET @OLD_SQL_MODE=@@SQL_MODE, @@SQL_MODE=NO_AUTO_VALUE_ON_ZERO;
  31. create table t1(id integer not null auto_increment primary key);
  32. insert into t1 values(0);
  33. disable_query_log;
  34. eval SELECT * INTO OUTFILE '$MYSQL_TEST_DIR/var/tmp/t1' from t1;
  35. delete from t1;
  36. eval load data infile '$MYSQL_TEST_DIR/var/tmp/t1' into table t1;
  37. enable_query_log;
  38. select * from t1;
  39. --exec rm $MYSQL_TEST_DIR/var/tmp/t1
  40. disable_query_log;
  41. eval SELECT * INTO OUTFILE '$MYSQL_TEST_DIR/var/tmp/t1'
  42. FIELDS TERMINATED BY '' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY 'rn'
  43. FROM t1;
  44. delete from t1;
  45. eval load data infile '$MYSQL_TEST_DIR/var/tmp/t1' into table t1
  46. FIELDS TERMINATED BY '' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY 'rn';
  47. enable_query_log;
  48. select * from t1;
  49. --exec rm $MYSQL_TEST_DIR/var/tmp/t1
  50. SET @@SQL_MODE=@OLD_SQL_MODE;
  51. drop table t1;
  52. #
  53. # Bug #11203: LOAD DATA does not accept same characters for ESCAPED and
  54. # ENCLOSED
  55. #
  56. create table t1 (a varchar(20), b varchar(20));
  57. load data infile '../../std_data/loaddata5.dat' into table t1 fields terminated by ',' enclosed by '"' escaped by '"' (a,b);
  58. select * from t1;
  59. drop table t1;
  60. # End of 4.1 tests