[Commits] Rev 2834: after merge fixes in http://bazaar.launchpad.net/~maria-captains/maria/5.2/

At http://bazaar.launchpad.net/~maria-captains/maria/5.2/ ------------------------------------------------------------ revno: 2834 revision-id: sergii@pisem.net-20100828094917-ba6b9x9dd7l2ne1s parent: sergii@pisem.net-20100828094511-si8pyrbc2eweq8xc committer: Sergei Golubchik <sergii@pisem.net> branch nick: 5.2 timestamp: Sat 2010-08-28 11:49:17 +0200 message: after merge fixes === modified file 'BUILD/SETUP.sh' --- a/BUILD/SETUP.sh 2010-08-28 09:45:11 +0000 +++ b/BUILD/SETUP.sh 2010-08-28 09:49:17 +0000 @@ -182,7 +182,7 @@ max_no_embedded_configs="$SSL_LIBRARY -- max_no_qc_configs="$SSL_LIBRARY --with-plugins=max --without-query-cache" max_no_ndb_configs="$SSL_LIBRARY --with-plugins=max-no-ndb --with-embedded-server --with-libevent" max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-libevent" -all_configs="$SSL_LIBRARY --with-plugins=max --with-plugin-ndbcluster --with-embedded-server --with-libevent" +all_configs="$SSL_LIBRARY --with-plugins=max --with-plugin-ndbcluster --with-embedded-server --with-innodb_plugin --with-libevent" # # CPU and platform specific compilation flags. === modified file 'mysql-test/r/select_pkeycache.result' --- a/mysql-test/r/select_pkeycache.result 2010-06-01 19:52:20 +0000 +++ b/mysql-test/r/select_pkeycache.result 2010-08-28 09:49:17 +0000 @@ -4781,4 +4781,19 @@ a b c SELECT * FROM t1 WHERE 102 < c; a b c DROP TABLE t1; +# +# Bug #54459: Assertion failed: param.sort_length, +# file .\filesort.cc, line 149 (part II) +# +CREATE TABLE t1(a ENUM('') NOT NULL); +INSERT INTO t1 VALUES (), (), (); +EXPLAIN SELECT 1 FROM t1 ORDER BY a COLLATE latin1_german2_ci; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 ALL NULL NULL NULL NULL 3 +SELECT 1 FROM t1 ORDER BY a COLLATE latin1_german2_ci; +1 +1 +1 +1 +DROP TABLE t1; End of 5.1 tests
participants (1)
-
serg@askmonty.org