diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-04-15 16:54:48 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-04-15 18:22:27 +0200 |
commit | b5693953fa53a6fd9bed7316d1e00c83f0c9b99c (patch) | |
tree | c8a33fbbe104a2c3c00c78edc2cbe371345ef145 | |
parent | 892529ec09055921f17ec38e52586703a96b8fdf (diff) | |
download | mariadb-git-bb-10.2-wlad-release.tar.gz |
Fix test casebb-10.2-wlad-release
-rw-r--r-- | mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result | 2 | ||||
-rw-r--r-- | mysql-test/suite/sys_vars/r/thread_pool_stall_limit_basic.result | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result b/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result index e439adb20e4..b6180de7cff 100644 --- a/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result +++ b/mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result @@ -4889,7 +4889,7 @@ DEFAULT_VALUE 500 VARIABLE_SCOPE GLOBAL VARIABLE_TYPE INT UNSIGNED VARIABLE_COMMENT Maximum query execution time in milliseconds,before an executing non-yielding thread is considered stalled.If a worker thread is stalled, additional worker thread may be created to handle remaining clients. -NUMERIC_MIN_VALUE 10 +NUMERIC_MIN_VALUE 1 NUMERIC_MAX_VALUE 4294967295 NUMERIC_BLOCK_SIZE 1 ENUM_VALUE_LIST NULL diff --git a/mysql-test/suite/sys_vars/r/thread_pool_stall_limit_basic.result b/mysql-test/suite/sys_vars/r/thread_pool_stall_limit_basic.result index eda4e6baebe..0a4d8dea6d2 100644 --- a/mysql-test/suite/sys_vars/r/thread_pool_stall_limit_basic.result +++ b/mysql-test/suite/sys_vars/r/thread_pool_stall_limit_basic.result @@ -37,7 +37,7 @@ Warnings: Warning 1292 Truncated incorrect thread_pool_stall_limit value: '-1' select @@global.thread_pool_stall_limit; @@global.thread_pool_stall_limit -10 +1 set global thread_pool_stall_limit=10000000000; Warnings: Warning 1292 Truncated incorrect thread_pool_stall_limit value: '10000000000' |