I am trying to perform some DDL on a table and SHOW PROCESSLIST results in a \" Waiting for table metadata lock \" message.
SHOW PROCESSLIST
How can I find out which tra
mysql 5.7 exposes metadata lock information through the performance_schema.metadata_locks table.
performance_schema.metadata_locks
Documentation here