mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
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>
This commit is contained in:
parent
19322c0a78
commit
d8710f18f4
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user