Skip to content

Commit ecdb39a

Browse files
committed
Fix problems from 5.5 merge
* Update mysqld_safe script to remove duplicated parameter --crash-script * Make --core-file-size accept underscores as well as dashes correctly. * Add mysqld_safe_helper to Debian and Ubuntu files. * Update innodb minor version to 35
1 parent 94e18e2 commit ecdb39a

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

debian/dist/Debian/mariadb-server-10.0.files.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ usr/bin/mysql_zap
3838
usr/bin/mysqlbinlog
3939
usr/bin/mysqld_multi
4040
usr/bin/mysqld_safe
41+
usr/bin/mysqld_safe_helper
4142
usr/bin/mysqlhotcopy
4243
usr/bin/perror
4344
usr/bin/replace

debian/dist/Ubuntu/mariadb-server-10.0.files.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ usr/bin/mysql_zap
4040
usr/bin/mysqlbinlog
4141
usr/bin/mysqld_multi
4242
usr/bin/mysqld_safe
43+
usr/bin/mysqld_safe_helper
4344
usr/bin/mysqlhotcopy
4445
usr/bin/perror
4546
usr/bin/replace

scripts/mysqld_safe.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ parse_arguments() {
215215
for arg do
216216
val=`echo "$arg" | sed -e "s;--[^=]*=;;"`
217217
case "$arg" in
218-
--crash[-_]script=*) CRASH_SCRIPT="$val" ;;
219218
# these get passed explicitly to mysqld
220219
--basedir=*) MY_BASEDIR_VERSION="$val" ;;
221220
--datadir=*|--data=*) DATADIR="$val" ;;
@@ -241,7 +240,7 @@ parse_arguments() {
241240
--socket=*) mysql_unix_port="$val" ;;
242241

243242
# mysqld_safe-specific options - must be set in my.cnf ([mysqld_safe])!
244-
--core[-_]file-size=*) core_file_size="$val" ;;
243+
--core[-_]file[-_]size=*) core_file_size="$val" ;;
245244
--ledir=*) check_executable_location "$arg" ; ledir="$val" ;;
246245
--malloc[-_]lib=*) check_executable_location "$arg"; set_malloc_lib "$val" ;;
247246
--crash[-_]script=*) check_executable_location "$arg"; crash_script="$val" ;;

storage/innobase/include/univ.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Created 1/20/1994 Heikki Tuuri
4444

4545
#define INNODB_VERSION_MAJOR5
4646
#define INNODB_VERSION_MINOR6
47-
#define INNODB_VERSION_BUGFIX33
47+
#define INNODB_VERSION_BUGFIX35
4848

4949
/* The following is the InnoDB version as shown in
5050
SELECT plugin_version FROM information_schema.plugins;

0 commit comments

Comments
 (0)