Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

MySQL 8.3 Reference Manual  /  ...  /  The ps_is_thread_instrumented() Function

30.4.5.13 ps_is_thread_instrumented() 函数

返回 YESNO,以指示给定连接 ID 的性能模式仪表是否启用,UNKNOWN 如果 ID 未知,或者 NULL 如果 ID 为 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                                            |
+------------------------------------------------+