diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2021-02-02 00:05:41 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2021-02-02 00:19:52 +0100 |
commit | b5dab19efaf9dfcc61ef91db19f38e9f8c8d8382 (patch) | |
tree | 174cc73f042b3dfa4bb9bab0fa457910244e1425 /mysql-test/main/thread_pool_info.result | |
parent | e2c571ad842b7ac699b2a6f3f95a4012bb7089f7 (diff) | |
download | mariadb-git-b5dab19efaf9dfcc61ef91db19f38e9f8c8d8382.tar.gz |
MDEV-24757 : fix potential null pointer dereference in I_S.thread_pool_queues
With the fix, new connection without THDs will now show NULL in
thread_pool_queues.CONNECTION_ID.
Diffstat (limited to 'mysql-test/main/thread_pool_info.result')
-rw-r--r-- | mysql-test/main/thread_pool_info.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/thread_pool_info.result b/mysql-test/main/thread_pool_info.result index 5eeb0ca1d6a..27717aa298a 100644 --- a/mysql-test/main/thread_pool_info.result +++ b/mysql-test/main/thread_pool_info.result @@ -31,7 +31,7 @@ Field Type Null Key Default Extra GROUP_ID int(6) NO 0 POSITION int(6) NO 0 PRIORITY int(1) NO 0 -CONNECTION_ID bigint(19) unsigned NO 0 +CONNECTION_ID bigint(19) unsigned YES NULL QUEUEING_TIME_MICROSECONDS bigint(19) NO 0 DESC INFORMATION_SCHEMA.THREAD_POOL_STATS; Field Type Null Key Default Extra |