Save bytes

This commit is contained in:
Jakub Vrana 2019-08-21 14:13:08 +02:00
parent 3d32470b87
commit 021e3f900d
2 changed files with 2 additions and 2 deletions

View file

@ -585,7 +585,7 @@ if (!defined("DRIVER")) {
*/
function foreign_keys($table) {
global $connection, $on_actions;
static $pattern = '(?:`(?:[^`]|``)+`|(?:"(?:[^"]|"")+"))';
static $pattern = '(?:`(?:[^`]|``)+`|"(?:[^"]|"")+")';
$return = array();
$create_table = $connection->result("SHOW CREATE TABLE " . table($table), 1);
if ($create_table) {

View file

@ -1,5 +1,5 @@
Adminer 4.7.3-dev:
MySQL: Speed up displaying tables in large databases (bug #700)
MySQL: Speed up displaying tables in large databases (bug #700, regression from 4.7.2)
MySQL: Allow editing rows identified by negative floats (bug #695)
MySQL: Skip editing generated columns
SQLite: Quote strings stored in integer columns in export (bug #696)