mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
561ee8fd37
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.
7 lines
338 B
PHP
7 lines
338 B
PHP
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';
|