mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Disable call to setpriority() in pbxt. This caused mysqld to run with nice priority -19, which was far from optimal.
mysql-test/suite/innodb/r/innodb_bug60049.result: Updated results mysql-test/suite/innodb/t/innodb_bug60049.test: Force global.innodb_fast_shutdown to 0 as test require it mysql-test/suite/innodb_plugin/t/innodb_bug60049.test: Force global.innodb_fast_shutdown to 0 as test require it storage/pbxt/src/pthread_xt.cc: Disable call to setpriority()
This commit is contained in:
@ -1,3 +1,4 @@
|
|||||||
|
set @@global.innodb_fast_shutdown=0;
|
||||||
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
||||||
RENAME TABLE t TO u;
|
RENAME TABLE t TO u;
|
||||||
DROP TABLE u;
|
DROP TABLE u;
|
||||||
|
@ -5,11 +5,10 @@
|
|||||||
-- source include/not_embedded.inc
|
-- source include/not_embedded.inc
|
||||||
-- source include/have_innodb.inc
|
-- source include/have_innodb.inc
|
||||||
|
|
||||||
if (`SELECT @@innodb_fast_shutdown != 0`)
|
#
|
||||||
|
# This test will not work if we don't do full shutdown of innodb
|
||||||
{
|
#
|
||||||
skip Need innodb_fast_shutdown=0;
|
set @@global.innodb_fast_shutdown=0;
|
||||||
}
|
|
||||||
|
|
||||||
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
||||||
RENAME TABLE t TO u;
|
RENAME TABLE t TO u;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
set @@global.innodb_fast_shutdown=0;
|
||||||
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
||||||
RENAME TABLE t TO u;
|
RENAME TABLE t TO u;
|
||||||
DROP TABLE u;
|
DROP TABLE u;
|
||||||
|
@ -5,6 +5,10 @@
|
|||||||
-- source include/not_embedded.inc
|
-- source include/not_embedded.inc
|
||||||
-- source include/have_innodb_plugin.inc
|
-- source include/have_innodb_plugin.inc
|
||||||
|
|
||||||
|
# This test will not work if we don't do full shutdown of innodb
|
||||||
|
#
|
||||||
|
set @@global.innodb_fast_shutdown=0;
|
||||||
|
|
||||||
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
CREATE TABLE t(a INT)ENGINE=InnoDB;
|
||||||
RENAME TABLE t TO u;
|
RENAME TABLE t TO u;
|
||||||
DROP TABLE u;
|
DROP TABLE u;
|
||||||
|
@ -558,8 +558,10 @@ xtPublic int xt_p_set_low_priority(pthread_t thr)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* -20 = highest, 20 = lowest */
|
/* -20 = highest, 20 = lowest */
|
||||||
|
#ifdef SET_GLOBAL_PRIORITY
|
||||||
if (setpriority(PRIO_PROCESS, getpid(), 20) == -1)
|
if (setpriority(PRIO_PROCESS, getpid(), 20) == -1)
|
||||||
return errno;
|
return errno;
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return pth_set_priority(thr, pth_min_priority);
|
return pth_set_priority(thr, pth_min_priority);
|
||||||
|
Reference in New Issue
Block a user