diff --git a/ChangeLog b/ChangeLog index 70325e6ae8..c0a2b3fdb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -61,6 +61,7 @@ phpMyAdmin - ChangeLog - issue #14359 Prevent multiple error modals, and error-report request spamming from script - issue Fixed error reporting javascript errors on multi server setup - issue Fixed wrong property name on TableStructureController +- issue #14811 Fix SHOW FULL TABLES FROM when a table is locked 4.8.5 (2019-01-25) - issue Developer debug data was saved to the PHP error log diff --git a/libraries/classes/Util.php b/libraries/classes/Util.php index cdb90fbc9e..3ee036253d 100644 --- a/libraries/classes/Util.php +++ b/libraries/classes/Util.php @@ -4688,7 +4688,7 @@ class Util } $db_info_result = $GLOBALS['dbi']->query( 'SHOW FULL TABLES FROM ' . self::backquote($db) . $tblGroupSql, - null, + DatabaseInterface::CONNECT_USER, DatabaseInterface::QUERY_STORE ); unset($tblGroupSql, $whereAdded);