Introducer _binary is not needed

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1008 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2009-08-25 13:56:05 +00:00
parent 51c860f06a
commit 250de2f602

View 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;