Merge pull request #17476 from pokemaobr/point

FIXES #17474 - Fixing geometry bug when clicking in edit or copy in browse link
This commit is contained in:
Maurício Meneghini Fauth 2022-04-05 15:00:41 -03:00 committed by GitHub
commit 0430df156f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -990,7 +990,7 @@ class Util
) {
// do not build a too big condition
if (mb_strlen((string) $row) < 5000) {
$condition .= '=0x' . bin2hex((string) $row) . ' AND';
$condition .= '= CAST(0x' . bin2hex((string) $row) . ' AS BINARY)';
} else {
$condition = '';
}