From: Jakub Vrana Date: Thu, 22 Dec 2011 07:35:50 +0000 (-0800) Subject: Don't use LIKE for numbers (http://forum.zdrojak.root.cz/index.php?topic=567) X-Git-Tag: v3.3.4~27 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=af3b762067a51d910a2ecc02ddb75c6504886f68;p=adminer.git Don't use LIKE for numbers (http://forum.zdrojak.root.cz/index.php?topic=567) --- diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php index 9a5c40bb..78745f36 100644 --- a/adminer/include/functions.inc.php +++ b/adminer/include/functions.inc.php @@ -337,7 +337,7 @@ function where($where) { $return = array(); foreach ((array) $where["where"] as $key => $val) { $return[] = idf_escape(bracket_escape($key, 1)) // 1 - back - . (ereg('\\.', $val) || $jush == "mssql" ? " LIKE " . exact_value(addcslashes($val, "%_\\")) : " = " . exact_value($val)) // LIKE because of floats, but slow with ints, in MS SQL because of text + . ((ereg('\\.', $val) || $jush == "mssql") && $jush != "pgsql" ? " LIKE " . exact_value(addcslashes($val, "%_\\")) : " = " . exact_value($val)) // LIKE because of floats, but slow with ints, in MS SQL because of text ; //! enum and set } foreach ((array) $where["null"] as $key) { diff --git a/changes.txt b/changes.txt index a87aaa6f..ee578957 100644 --- a/changes.txt +++ b/changes.txt @@ -9,6 +9,7 @@ Esc to cancel AJAX request Ability to disable export (customization) MySQL: set autocommit after connect PostgreSQL: fix alter foreign key +PostgreSQL: don't use LIKE for numbers PostgreSQL over PDO: connect if the eponymous database does not exist (bug #3391619) Boolean search (Editor) Persian translation