diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b61e595..f6f8f672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - PostgreSQL: Add SQL operator to select - PostgreSQL: Hide only partitions, not all inherited tables from menu - PostgreSQL: Allow comparing json columns (bug #1107) +- PostgreSQL: Shorten values in hstore columns - PostgreSQL 11-: Avoid duplicate oid in table status (bug #1089) - Elasticsearch: Support dropping aliases - Plugins: Methods processList() and killProcess() diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php index 12701e28..7c1ad839 100644 --- a/adminer/include/functions.inc.php +++ b/adminer/include/functions.inc.php @@ -809,7 +809,7 @@ function is_url(?string $string): bool { * @param Field $field */ function is_shortable(array $field): bool { - return preg_match('~char|text|json|lob|geometry|point|linestring|polygon|string|bytea~', $field["type"]); + return preg_match('~char|text|json|lob|geometry|point|linestring|polygon|string|bytea|hstore~', $field["type"]); } /** Get query to compute number of found rows