Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d8710f1

Browse files
committed
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>
1 parent 19322c0 commit d8710f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/catalog/information_schema.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@ CREATE VIEW routines AS
14711471
CAST(null AS cardinal_number) AS result_cast_char_octet_length,
14721472
CAST(null AS sql_identifier) AS result_cast_char_set_catalog,
14731473
CAST(null AS sql_identifier) AS result_cast_char_set_schema,
1474-
CAST(null AS sql_identifier) AS result_cast_character_set_name,
1474+
CAST(null AS sql_identifier) AS result_cast_char_set_name,
14751475
CAST(null AS sql_identifier) AS result_cast_collation_catalog,
14761476
CAST(null AS sql_identifier) AS result_cast_collation_schema,
14771477
CAST(null AS sql_identifier) AS result_cast_collation_name,

0 commit comments

Comments
 (0)