MySQL 9.0 发行说明
返回 YES
或 NO
以指示是否为给定的连接 ID 启用了性能模式的检测,如果 ID 未知,则返回 UNKNOWN
,如果 ID 为 NULL
,则返回 NULL
。
in_connection_id BIGINT UNSIGNED
: 连接 ID。这是性能模式threads
表的PROCESSLIST_ID
列或SHOW PROCESSLIST
输出的Id
列中给出的类型的值。
mysql> SELECT sys.ps_is_thread_instrumented(43);
+-----------------------------------+
| sys.ps_is_thread_instrumented(43) |
+-----------------------------------+
| UNKNOWN |
+-----------------------------------+
mysql> SELECT sys.ps_is_thread_instrumented(CONNECTION_ID());
+------------------------------------------------+
| sys.ps_is_thread_instrumented(CONNECTION_ID()) |
+------------------------------------------------+
| YES |
+------------------------------------------------+