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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test metadata
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2;
  6. --enable_warnings
  7. --enable_metadata
  8. # PS protocol gives slightly different metadata
  9. --disable_ps_protocol
  10. #
  11. # First some simple tests
  12. #
  13. select 1, 1.0, -1, "hello", NULL;
  14. create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp, l datetime, m enum('a','b'), n set('a','b'), o char(10));
  15. select * from t1;
  16. select a b, b c from t1 as t2;
  17. drop table t1;
  18. #
  19. # Test metadata from ORDER BY (Bug #2654)
  20. #
  21. CREATE TABLE t1 (id tinyint(3) default NULL, data varchar(255) default NULL);
  22. INSERT INTO t1 VALUES (1,'male'),(2,'female');
  23. CREATE TABLE t2 (id tinyint(3) unsigned default NULL, data char(3) default '0');
  24. INSERT INTO t2 VALUES (1,'yes'),(2,'no');
  25. select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id;
  26. select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id order by t1.id;
  27. select t1.id from t1 union select t2.id from t2;
  28. drop table t1,t2;
  29. #
  30. # variables union and derived tables metadata test
  31. #
  32. create table t1 ( a int, b varchar(30), primary key(a));
  33. insert into t1 values (1,'one');
  34. insert into t1 values (2,'two');
  35. set @arg00=1 ;
  36. select @arg00 FROM t1 where a=1 union distinct select 1 FROM t1 where a=1;
  37. select * from (select @arg00) aaa;
  38. select 1 union select 1;
  39. select * from (select 1 union select 1) aaa;
  40. drop table t1;
  41. --disable_metadata
  42. #
  43. # Bug #11688: Bad mysql_info() results in multi-results
  44. #
  45. --enable_info
  46. delimiter //;
  47. create table t1 (i int);
  48. insert into t1 values (1),(2),(3);
  49. select * from t1 where i = 2;
  50. drop table t1;//
  51. delimiter ;//
  52. --disable_info
  53. # End of 4.1 tests