Don't export binary and geometry columns twice in select

This commit is contained in:
Jakub Vrana 2013-04-26 11:52:26 -07:00
parent 741cd5b4b6
commit 91dbaca3c4
2 changed files with 2 additions and 1 deletions

View file

@ -31,7 +31,7 @@ $where = $adminer->selectSearchProcess($fields, $indexes);
$order = $adminer->selectOrderProcess($fields, $indexes);
$limit = $adminer->selectLimitProcess();
$from = ($select ? implode(", ", $select) : "*" . ($oid ? ", $oid" : ""));
if ($jush == "sql") {
if ($jush == "sql" && !$_POST["export"]) {
foreach ($columns as $key => $val) {
if ($select && !$select[$key]) {
continue;

View file

@ -1,6 +1,7 @@
Adminer 3.6.5-dev:
Print run time next to executed queries
Fix handling of POINT data type (bug #3582578)
Don't export binary and geometry columns twice in select
Adminer 3.6.4 (released 2013-04-26):
Display pagination on a fixed position