MySQL: Always set foreign_key_checks in export

This commit is contained in:
Jakub Vrana 2019-12-09 13:20:24 +01:00
parent 8706bc7c0f
commit 5da5b75536
3 changed files with 6 additions and 3 deletions

View file

@ -18,8 +18,8 @@ if ($_POST && !$error) {
if ($jush == "sql") {
echo "SET NAMES utf8;
SET time_zone = '+00:00';
" . ($_POST["data_style"] ? "SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
SET foreign_key_checks = 0;
" . ($_POST["data_style"] ? "SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
" : "") . "
";
$connection->query("SET time_zone = '+00:00';");

View file

@ -1,2 +1,2 @@
<?php
$VERSION = "4.7.5";
$VERSION = "4.7.6-dev";

View file

@ -1,3 +1,6 @@
Adminer 4.7.6-dev:
MySQL: Always set foreign_key_checks in export
Adminer 4.7.5 (released 2019-11-13):
Add id="" to cells with failed inline edit (bug #708)
PostgreSQL: Fix getting default value in PostgreSQL 12 (bug #719)