1
0
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:
Peter Eisentraut
2023-09-26 16:08:35 +01:00
parent 369202bf4b
commit b0ae29512c
3 changed files with 59 additions and 64 deletions

View File

@@ -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 */