1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-17 03:53:59 +02:00

Do not export names in quotes with sql_mode='ANSI_QUOTES' (bug #749)

This commit is contained in:
Jakub Vrana
2021-02-06 12:30:39 +01:00
parent 5cab8eabb7
commit b558ec8ecf
2 changed files with 3 additions and 1 deletions

View File

@@ -22,7 +22,8 @@ SET foreign_key_checks = 0;
" . ($_POST["data_style"] ? "SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
" : "") . "
";
$connection->query("SET time_zone = '+00:00';");
$connection->query("SET time_zone = '+00:00'");
$connection->query("SET sql_mode = ''");
}
}