文档首页
MySQL 9.0 参考手册
相关文档 下载本手册
PDF (US Ltr) - 40.0Mb
PDF (A4) - 40.1Mb
手册页 (TGZ) - 258.2Kb
手册页 (Zip) - 365.3Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 9.0 参考手册  /  ...  /  ps_is_thread_instrumented() 函数

30.4.5.13 ps_is_thread_instrumented() 函数

返回 YESNO 以指示是否为给定的连接 ID 启用了性能模式的检测,如果 ID 未知,则返回 UNKNOWN,如果 ID 为 NULL,则返回 NULL

参数
  • in_connection_id BIGINT UNSIGNED: 连接 ID。这是性能模式 threads 表的 PROCESSLIST_ID 列或 SHOW PROCESSLIST 输出的 Id 列中给出的类型的值。

返回值

一个 ENUM('YES','NO','UNKNOWN') 值。

示例
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                                            |
+------------------------------------------------+