mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
7dd137c4ac
Added tid (thread ID) for system where it is present. ps -eL -o tid,pid,command shows the thread on Linux
7 lines
194 B
Text
7 lines
194 B
Text
#
|
|
# MDEV-6756: map a linux pid (child pid) to a connection id shown in
|
|
# the output of SHOW PROCESSLIST
|
|
#
|
|
SELECT max(tid) != min(tid) FROM information_schema.processlist;
|
|
max(tid) != min(tid)
|
|
1
|