Skip to content

Commit

Permalink
Don't use LIKE for numbers (http://forum.zdrojak.root.cz/index.php?to…
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Dec 22, 2011
1 parent 1e70b74 commit af3b762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/include/functions.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af3b762

Please sign in to comment.