1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

bug#7284: strnxfrm returns different results for equal strings

This commit is contained in:
unknown
2005-01-13 18:12:04 +04:00
parent bcb3783c7c
commit 9842aca3ef
34 changed files with 344 additions and 45 deletions

View File

@@ -0,0 +1,15 @@
#
# Set desired charset_connection and collation_collation
# before including this file.
#
# The next query creates a LONGTEXT column
# using the current character_set_connection
# and collation_connection.
create table t1 select repeat('a',4000) a;
delete from t1;
insert into t1 values ('a'), ('a '), ('a\t');
select collation(a),hex(a) from t1 order by a;
drop table t1;