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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of --lower-case-table-names
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2,t3,t4;
  6. # Clear up from other tests (to ensure that SHOW TABLES below is right)
  7. drop table if exists t0,t5,t6,t7,t8,t9;
  8. drop database if exists mysqltest;
  9. --enable_warnings
  10. create table T1 (id int primary key, Word varchar(40) not null, Index(Word));
  11. create table t4 (id int primary key, Word varchar(40) not null);
  12. INSERT INTO T1 VALUES (1, 'a'), (2, 'b'), (3, 'c');
  13. INSERT INTO T4 VALUES(1,'match');
  14. SELECT * FROM t1;
  15. SELECT T1.id from T1 LIMIT 1;
  16. SELECT T2.id from t1 as T2 LIMIT 1;
  17. SELECT * from t1 left join t4 on (test.t1.id= TEST.t4.id) where TEST.t1.id >= test.t4.id;
  18. # This gave an error in 4.0, but it's fixed in 4.1
  19. SELECT T2.id from t1 as t2 LIMIT 1;
  20. RENAME TABLE T1 TO T2;
  21. ALTER TABLE T2 ADD new_col int not null;
  22. ALTER TABLE T2 RENAME T3;
  23. show tables like 't_';
  24. drop table t3,t4;
  25. #
  26. # Test alias
  27. #
  28. create table t1 (a int);
  29. select count(*) from T1;
  30. select count(*) from t1;
  31. select count(T1.a) from t1;
  32. select count(bags.a) from t1 as Bags;
  33. drop table t1;
  34. #
  35. # Test all caps database name
  36. #
  37. create database mysqltest;
  38. use MYSQLTEST;
  39. create table t1 (a int);
  40. select T1.a from MYSQLTEST.T1;
  41. select t1.a from MYSQLTEST.T1;
  42. select mysqltest.t1.* from MYSQLTEST.t1;
  43. select MYSQLTEST.t1.* from MYSQLTEST.t1;
  44. select MYSQLTEST.T1.* from MYSQLTEST.T1;
  45. select MYSQLTEST.T1.* from T1;
  46. alter table t1 rename to T1;
  47. select MYSQLTEST.t1.* from MYSQLTEST.t1;
  48. drop database mysqltest;
  49. use test;
  50. #
  51. # multiupdate/delete & --lower-case-table-names
  52. #
  53. create table t1 (a int);
  54. create table t2 (a int);
  55. delete p1.*,P2.* from t1 as p1, t2 as p2 where p1.a=P2.a;
  56. delete P1.*,p2.* from t1 as P1, t2 as P2 where P1.a=p2.a;
  57. update t1 as p1, t2 as p2 SET p1.a=1,P2.a=1 where p1.a=P2.a;
  58. update t1 as P1, t2 as P2 SET P1.a=1,p2.a=1 where P1.a=p2.a;
  59. drop table t1,t2;
  60. #
  61. # aliases case insensitive
  62. #
  63. create table t1 (a int);
  64. create table t2 (a int);
  65. -- error 1066
  66. select * from t1 c, t2 C;
  67. -- error 1066
  68. select C.a, c.a from t1 c, t2 C;
  69. drop table t1, t2;
  70. #
  71. # Bug #9761: CREATE TABLE ... LIKE ... not handled correctly when
  72. # lower_case_table_names is set
  73. create table t1 (a int);
  74. create table t2 like T1;
  75. drop table t1, t2;
  76. show tables;
  77. # End of 4.1 tests