]> git.joonet.de Git - adminer.git/commitdiff
Introducer _binary is not needed
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 25 Aug 2009 13:56:05 +0000 (13:56 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 25 Aug 2009 13:56:05 +0000 (13:56 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1008 7c3ca157-0c34-0410-bff1-cbf682f78f5c

adminer/include/export.inc.php

index 639b88242430e7585897c17037401cb26bdb5add..faf907bfdf00f4b946821facbc2db1657d1a3601 100644 (file)
@@ -102,7 +102,7 @@ function dump_data($table, $style, $select = "") {
                if ($_POST["format"] != "csv" && $style == "TRUNCATE+INSERT") {
                        echo "TRUNCATE " . idf_escape($table) . ";\n";
                }
-               $result = $dbh->query(($select ? $select : "SELECT * FROM " . idf_escape($table))); //! enum and set as numbers, binary as _binary, microtime
+               $result = $dbh->query(($select ? $select : "SELECT * FROM " . idf_escape($table))); //! enum and set as numbers, microtime
                if ($result) {
                        $fields = fields($table);
                        $length = 0;