Apply text length on geometry data

This commit is contained in:
Jakub Vrana 2012-09-09 10:19:07 -07:00
parent 944f141bf4
commit 66d537c150

View file

@ -18,7 +18,7 @@ foreach ($fields as $key => $field) {
$name = $adminer->fieldName($field); $name = $adminer->fieldName($field);
if (isset($field["privileges"]["select"]) && $name != "") { if (isset($field["privileges"]["select"]) && $name != "") {
$columns[$key] = html_entity_decode(strip_tags($name)); $columns[$key] = html_entity_decode(strip_tags($name));
if (ereg('text|lob', $field["type"])) { if (ereg('text|lob|geometry|point|linestring|polygon', $field["type"])) {
$text_length = $adminer->selectLengthProcess(); $text_length = $adminer->selectLengthProcess();
} }
} }
@ -349,7 +349,7 @@ if (!$columns) {
if ($val === "") { // === - may be int if ($val === "") { // === - may be int
$val = " "; $val = " ";
} elseif (is_utf8($val)) { } elseif (is_utf8($val)) {
if ($text_length != "" && ereg('text|blob', $field["type"])) { if ($text_length != "" && ereg('text|lob|geometry|point|linestring|polygon', $field["type"])) {
$val = shorten_utf8($val, max(0, +$text_length)); // usage of LEFT() would reduce traffic but complicate query - expected average speedup: .001 s VS .01 s on local network $val = shorten_utf8($val, max(0, +$text_length)); // usage of LEFT() would reduce traffic but complicate query - expected average speedup: .001 s VS .01 s on local network
} else { } else {
$val = h($val); $val = h($val);