Information Schema WSREP_CERT_KEYS
The Information Schema WSREP_CERT_KEYS table displays the certification keys for transactions currently being processed by the Galera Cluster.
Exclusive
CREATE TABLE parent (f1 TINYINT PRIMARY KEY, f2 TINYINT)engine=innodb;
START TRANSACTION;
INSERT INTO parent VALUES (1, 3);
SELECT * FROM INFORMATION_SCHEMA.WSREP_CERT_KEYS;
COMMIT;
+--------+-----------------------------+-----------+
| THD_ID | KEY_STRING | KEY_TYPE |
+--------+-----------------------------+-----------+
| 9 | 74657374 706172656E74 0001 | exclusive |
+--------+-----------------------------+-----------+
1 row in set (0.001 sec)Reference
Update
Shared
Last updated
Was this helpful?

