summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorRamil Kalimullin <ramil@mysql.com>2010-06-24 21:13:08 +0400
committerRamil Kalimullin <ramil@mysql.com>2010-06-24 21:13:08 +0400
commit479d24a2130e629306ce8c2e02bad3b0aa7b57e6 (patch)
tree05060f7af98df17724d370b01fde285233d9aae0 /mysql-test/t
parentdac59fa9c3dab835872b9e9581ed5414d113e09e (diff)
downloadmariadb-git-479d24a2130e629306ce8c2e02bad3b0aa7b57e6.tar.gz
Accidentally pushed test changes (#54459) removed.
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/select.test4
1 files changed, 0 insertions, 4 deletions
diff --git a/mysql-test/t/select.test b/mysql-test/t/select.test
index 37f3675780b..db08aad0df0 100644
--- a/mysql-test/t/select.test
+++ b/mysql-test/t/select.test
@@ -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