Commit 58a77aaf authored by unknown's avatar unknown

MDEV-3882: .deb versions lower than upstream repo, causing install failure

The official Debian Wheezy MySQL packages have versions like 5.5.30+dfsg-xxx.
Such version is larger than 5.5.30-yyy, so apt prefers it.
So use instead 5.5.30+maria-yyy, which is larger and can be pulled in
automatically by apt.

Also included are a couple of fixes for test failures in buildbot.
parent fc17efc2
...@@ -21,8 +21,8 @@ source ./VERSION ...@@ -21,8 +21,8 @@ source ./VERSION
UPSTREAM="${MYSQL_VERSION_MAJOR}.${MYSQL_VERSION_MINOR}.${MYSQL_VERSION_PATCH}${MYSQL_VERSION_EXTRA}" UPSTREAM="${MYSQL_VERSION_MAJOR}.${MYSQL_VERSION_MINOR}.${MYSQL_VERSION_PATCH}${MYSQL_VERSION_EXTRA}"
RELEASE_EXTRA="" RELEASE_EXTRA=""
RELEASE_NAME=mariadb RELEASE_NAME=""
PATCHLEVEL="" PATCHLEVEL="+maria"
LOGSTRING="MariaDB build" LOGSTRING="MariaDB build"
# Look up distro-version specific stuff. # Look up distro-version specific stuff.
......
...@@ -4772,6 +4772,9 @@ sub extract_warning_lines ($$) { ...@@ -4772,6 +4772,9 @@ sub extract_warning_lines ($$) {
qr|Warning: io_setup\(\) failed|, qr|Warning: io_setup\(\) failed|,
qr|Warning: io_setup\(\) attempt|, qr|Warning: io_setup\(\) attempt|,
qr|setrlimit could not change the size of core files to 'infinity';|, qr|setrlimit could not change the size of core files to 'infinity';|,
qr|feedback plugin: failed to retrieve the MAC address|,
qr|Plugin 'FEEDBACK' init function returned error|,
qr|Plugin 'FEEDBACK' registration as a INFORMATION SCHEMA failed|,
); );
my $matched_lines= []; my $matched_lines= [];
......
...@@ -36,7 +36,7 @@ let $wait_condition = ...@@ -36,7 +36,7 @@ let $wait_condition =
# depending on platform. # depending on platform.
# #
connection con1; connection con1;
-- error 1317, 2006, 2013 -- error 1317, 2006, 2013, ER_CONNECTION_KILLED
reap; reap;
connection default; connection default;
DROP TABLE bug51920; DROP TABLE bug51920;
......
...@@ -33,7 +33,7 @@ while ($1) ...@@ -33,7 +33,7 @@ while ($1)
ALTER TABLE t1 ENABLE KEYS; ALTER TABLE t1 ENABLE KEYS;
--connection default --connection default
--let $wait_timeout=10 --let $wait_timeout=60
--let $show_statement= SHOW PROCESSLIST --let $show_statement= SHOW PROCESSLIST
--let $field= State --let $field= State
--let $condition= = 'Repair by sorting' --let $condition= = 'Repair by sorting'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment