mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
MergeAttributes() and related variable renaming
Mainly, rename "schema" to "columns" and related changes. The previous naming has long been confusing. Discussion: https://www.postgresql.org/message-id/flat/52a125e4-ff9a-95f5-9f61-b87cf447e4da%40eisentraut.org
This commit is contained in:
@@ -147,8 +147,8 @@ extern void TupleDescInitEntryCollation(TupleDesc desc,
|
||||
AttrNumber attributeNumber,
|
||||
Oid collationid);
|
||||
|
||||
extern TupleDesc BuildDescForRelation(List *schema);
|
||||
extern TupleDesc BuildDescForRelation(const List *columns);
|
||||
|
||||
extern TupleDesc BuildDescFromLists(List *names, List *types, List *typmods, List *collations);
|
||||
extern TupleDesc BuildDescFromLists(const List *names, const List *types, const List *typmods, const List *collations);
|
||||
|
||||
#endif /* TUPDESC_H */
|
||||
|
Reference in New Issue
Block a user