1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-09 16:17:48 +02:00

PostgreSQL: Do not cast boolean to text on search (#264)

This commit is contained in:
Matěj Humpál
2018-03-18 14:34:54 +01:00
committed by Jakub Vrána
parent 89c66ccabe
commit 78f4513d9d

View File

@@ -216,7 +216,7 @@ if (isset($_GET["pgsql"])) {
function convertSearch($idf, $val, $field) {
return (preg_match('~char|text'
. (!preg_match('~LIKE~', $val["op"]) ? '|date|time(stamp)?|' . number_type() : '')
. (!preg_match('~LIKE~', $val["op"]) ? '|date|time(stamp)?|boolean|' . number_type() : '')
. '~', $field["type"])
? $idf
: "CAST($idf AS text)"