diff options
author | unknown <bar@mysql.com> | 2004-12-01 19:25:05 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-12-01 19:25:05 +0400 |
commit | 561ee8fd3713ddd713c7cc420b8c03265855de51 (patch) | |
tree | c41ffeff12a89bdd045bf4b468fe39f22317d7c9 /mysql-test/t/endspace.test | |
parent | 2d2d61d10ca245a3f2524d6ee76a7bbcf3911153 (diff) | |
download | mariadb-git-561ee8fd3713ddd713c7cc420b8c03265855de51.tar.gz |
Move common trailing space checks into an include file.
Check UCS2 trailing spaces.
mysql-test/r/ctype_ucs.result:
Move common trailing space checks into an include file.
Check UCS2 trailing spaces.
Fix UCS2 to handle trailing spaces in PAD way.
mysql-test/t/ctype_ucs.test:
Move common trailing space checks into an include file.
Check UCS2 trailing spaces.
Fix UCS2 to handle trailing spaces in PAD way.
mysql-test/t/endspace.test:
Move common trailing space checks into an include file.
Check UCS2 trailing spaces.
Fix UCS2 to handle trailing spaces in PAD way.
strings/ctype-ucs2.c:
Move common trailing space checks into an include file.
Check UCS2 trailing spaces.
Fix UCS2 to handle trailing spaces in PAD way.
Diffstat (limited to 'mysql-test/t/endspace.test')
-rw-r--r-- | mysql-test/t/endspace.test | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mysql-test/t/endspace.test b/mysql-test/t/endspace.test index 9ee5e32967a..462bc3083e1 100644 --- a/mysql-test/t/endspace.test +++ b/mysql-test/t/endspace.test @@ -7,13 +7,7 @@ drop table if exists t1; --enable_warnings -select 'a' = 'a', 'a' = 'a ', 'a ' = 'a'; -select 'a\0' = 'a', 'a\0' < 'a', 'a\0' > 'a'; -select 'a' = 'a\0', 'a' < 'a\0', 'a' > 'a\0'; -select 'a\0' = 'a ', 'a\0' < 'a ', 'a\0' > 'a '; -select 'a ' = 'a\0', 'a ' < 'a\0', 'a ' > 'a\0'; -select 'a a' > 'a', 'a \0' < 'a'; -select binary 'a a' > 'a', binary 'a \0' > 'a', binary 'a\0' > 'a'; +-- source include/endspace.inc # # Test MyISAM tables. |