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

MySQL数据库

开发平台:

Visual C++

  1. # Test of charset cp1251
  2. --disable_warnings
  3. drop table if exists t1;
  4. --enable_warnings
  5. SET NAMES cp1251;
  6. #
  7. # Test problem with LEFT() (Bug #514)
  8. #
  9. create table t1 (a varchar(10) not null) character set cp1251;
  10. insert into t1 values ("a"),("ab"),("abc");
  11. select * from t1;
  12. select a, left(a,1) as b from t1;
  13. select a, left(a,1) as b from t1 group by a;
  14. SELECT DISTINCT RIGHT(a,1) from t1;
  15. drop table t1;
  16. #
  17. # Test of binary and upper/lower
  18. #
  19. create table t1 (a char(15) binary, b binary(15)) character set cp1251;
  20. insert into t1 values ('aaa','bbb'),('AAA','BBB');
  21. select upper(a),upper(b) from t1;
  22. select lower(a),lower(b) from t1;
  23. select * from t1 where upper(a)='AAA';
  24. select * from t1 where lower(a)='aaa';
  25. select * from t1 where upper(b)='BBB';
  26. select * from t1 where lower(b)='bbb';
  27. select charset(a), charset(b), charset(binary 'ccc') from t1 limit 1;
  28. select collation(a), collation(b), collation(binary 'ccc') from t1 limit 1;
  29. drop table t1;
  30. # Test for BUG#8560
  31. create table t1 (
  32.  a varchar(16) character set cp1251 collate cp1251_bin not null,
  33.  b int(10) default null,
  34.  primary key(a)
  35. ) charset=cp1251;
  36. insert into t1 (a) values ('air'),
  37.   ('we'),('g'),('we_toshko'), ('s0urce'),('we_ivo'),('we_iliyan'),
  38.   ('we_martin'),('vw_grado'),('vw_vasko'),('tn_vili'),('tn_kalina'),
  39.   ('tn_fakira'),('vw_silvia'),('vw_starshi'),('vw_geo'),('vw_b0x1');
  40. select * from t1 where a like 'we_%';
  41. drop table t1;
  42. # End of 4.1 tests