1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-11 05:52:26 +03:00

Accidentally pushed test changes (#54459) removed.

This commit is contained in:
Ramil Kalimullin
2010-06-24 21:13:08 +04:00
parent dac59fa9c3
commit 479d24a213

View File

@@ -4087,9 +4087,5 @@ EXPLAIN SELECT 1 FROM t1 ORDER BY a COLLATE latin1_german2_ci;
SELECT 1 FROM t1 ORDER BY a COLLATE latin1_german2_ci;
DROP TABLE t1;
create table t1(a enum('a'))engine=myisam charset=latin1;
insert into t1 values (''),(''),(''),(NULL);
select a, substr(a, 0, 0) from t1 order by substr(a, 0, 0);
select a, a collate latin1_german2_ci from t1 order by a collate latin1_german2_ci;
--echo End of 5.1 tests