MySQL 9.1.0
Source Code Documentation
|
To expose TLS configuration details through performance schema:
When the server performs a SELECT * from performance_schema.tls_channeL_info, the performance schema creates a TLS_channel_status_container for the duration of the table scan.
Then, the scan loops for each TLS channel capable of exposing status (i.e. channels that registered TLS channel status iterator).
For each channel, an iterator is created, dedicated for this SELECT scan.
When rnd_init() is called, the performance schema iterates through registered TLS channels and add data corresponding to each channel in TLS channel data container.
Upon subsequent calls rnd_next(), data present in the container is returned. This process continues until no more data is left in the container.
This method allows performance schema to shorten the duration for which registered TLS channel container is locked. This is essential because mysql_tls_channel_register() and mysql_tls_channel_deregister() may modify the TLS channel container.