diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2016-08-07 21:53:16 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2016-08-07 21:56:13 -0400 |
commit | d8710f18f4a63947874301311f5558e7d3d93438 (patch) | |
tree | b18ba75caf07c3877305ed89563ad7f65c003a29 /src | |
parent | 19322c0a785f656b82a780c3db44920dcc9bd658 (diff) | |
download | postgresql-d8710f18f4a63947874301311f5558e7d3d93438.tar.gz postgresql-d8710f18f4a63947874301311f5558e7d3d93438.zip |
Correct column name in information schema
Although the standard has routines.result_cast_character_set_name, given
the naming of the surrounding columns, we concluded that this must have
been a mistake and that result_cast_char_set_name was intended, so
change the implementation. The documentation was already using the new
name.
found by Clément Prévost <prevostclement@gmail.com>
Diffstat (limited to 'src')
-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 309ac6b945d..18be08fead5 100644 --- a/src/backend/catalog/information_schema.sql +++ b/src/backend/catalog/information_schema.sql @@ -1471,7 +1471,7 @@ CREATE VIEW routines AS CAST(null AS cardinal_number) AS result_cast_char_octet_length, CAST(null AS sql_identifier) AS result_cast_char_set_catalog, CAST(null AS sql_identifier) AS result_cast_char_set_schema, - CAST(null AS sql_identifier) AS result_cast_character_set_name, + CAST(null AS sql_identifier) AS result_cast_char_set_name, CAST(null AS sql_identifier) AS result_cast_collation_catalog, CAST(null AS sql_identifier) AS result_cast_collation_schema, CAST(null AS sql_identifier) AS result_cast_collation_name, |