MySQL 8.4 Release Notes
30.4.5.10 The ps_is_consumer_enabled() Function
返回一个表示给定性能架构消费者的启用状态的YES
或NO
,或如果参数为NULL
,则返回NULL
。如果参数不是有效的消费者名称,则发生错误。
这个函数考虑了消费者层次结构,因此除非所有依赖的消费者都启用,否则不会认为消费者启用。关于消费者层次结构的信息,请参见第29.4.7节,“Pre-Filtering by Consumer”。
-
in_consumer VARCHAR(64)
:要检查的消费者名称。
一个ENUM('YES','NO')
值。
mysql> SELECT sys.ps_is_consumer_enabled('thread_instrumentation');
+------------------------------------------------------+
| sys.ps_is_consumer_enabled('thread_instrumentation') |
+------------------------------------------------------+
| YES |
+------------------------------------------------------+