diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-05-21 09:42:10 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-05-21 09:42:10 +0200 |
commit | fce7fc43ba165cd704889c9d35f92e15288f5730 (patch) | |
tree | 46bdba5c505ff6a94d63be0e9eb8d241013e0ef3 /mysql-test/suite/maria/r/distinct.result | |
parent | 639a766096733861ce5f4ed4863d9db37090a4f4 (diff) | |
download | mariadb-git-fce7fc43ba165cd704889c9d35f92e15288f5730.tar.gz |
fixes for buildbot
Diffstat (limited to 'mysql-test/suite/maria/r/distinct.result')
-rw-r--r-- | mysql-test/suite/maria/r/distinct.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/maria/r/distinct.result b/mysql-test/suite/maria/r/distinct.result index 04d5e3d6a2c..7963e7b72ff 100644 --- a/mysql-test/suite/maria/r/distinct.result +++ b/mysql-test/suite/maria/r/distinct.result @@ -17,7 +17,7 @@ GROUP_CONCAT(a) DROP TABLE t1; CREATE TABLE t1 (a INT, b VARCHAR(1)) ENGINE=MyISAM; INSERT INTO t1 VALUES (7,'q'),(2,NULL),(7,'g'),(6,'x'); -SELECT DISTINCT MAX( a ) FROM t1 GROUP BY b ORDER BY DES_DECRYPT( b ); +SELECT DISTINCT MAX( a ) FROM t1 GROUP BY b ORDER BY MD5( b ); MAX( a ) 2 7 |