diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-12-03 14:21:52 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-12-03 14:21:52 +0900 |
commit | ee2b37ae044f34851baba69e9ba737077326414e (patch) | |
tree | 7a1100b30707d054d2290f67241a1266495d8151 /src/backend | |
parent | d3c09b9b1307e022883801000ae36bcb5eef71e8 (diff) | |
download | postgresql-ee2b37ae044f34851baba69e9ba737077326414e.tar.gz postgresql-ee2b37ae044f34851baba69e9ba737077326414e.zip |
Add some missing schema qualifications
This does not improve the security and reliability of the touched areas,
but it makes the style more consistent.
Author: Michael Paquier
Reviewed-by- Noah Misch
Discussion: https://postgr.es/m/20180309075538.GD9376@paquier.xyz
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/catalog/information_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql index a3479afa104..6227a8f3d0d 100644 --- a/src/backend/catalog/information_schema.sql +++ b/src/backend/catalog/information_schema.sql @@ -186,7 +186,7 @@ CREATE FUNCTION _pg_interval_type(typid oid, mod int4) RETURNS text AS $$SELECT CASE WHEN $1 IN (1186) /* interval */ - THEN upper(substring(format_type($1, $2) from 'interval[()0-9]* #"%#"' for '#')) + THEN pg_catalog.upper(substring(pg_catalog.format_type($1, $2) from 'interval[()0-9]* #"%#"' for '#')) ELSE null END$$; |