Merge branch '3.0' into pt-table-checksum-fix-ignored-dbs-LP1642994

This commit is contained in:
guriandoro
2017-03-22 23:32:06 -04:00
8 changed files with 20 additions and 13 deletions

View File

@@ -404,7 +404,7 @@ innodb_status() {
ps_locks_transactions() {
local outfile=$1
mysql -e 'select @@performance_schema' | grep "1" &>/dev/null
$CMD_MYSQL $EXT_ARGV -e 'select @@performance_schema' | grep "1" &>/dev/null
if [ $? -eq 0 ]; then
local status="select t.processlist_id, ml.* from performance_schema.metadata_locks ml join performance_schema.threads t on (ml.owner_thread_id=t.thread_id)\G"