mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
Per-column collation support
This adds collation support for columns and domains, a COLLATE clause to override it per expression, and B-tree index support. Peter Eisentraut reviewed by Pavel Stehule, Itagaki Takahiro, Robert Haas, Noah Misch
This commit is contained in:
@@ -114,8 +114,12 @@ extern void TupleDescInitEntry(TupleDesc desc,
|
||||
int32 typmod,
|
||||
int attdim);
|
||||
|
||||
extern void TupleDescInitEntryCollation(TupleDesc desc,
|
||||
AttrNumber attributeNumber,
|
||||
Oid collationid);
|
||||
|
||||
extern TupleDesc BuildDescForRelation(List *schema);
|
||||
|
||||
extern TupleDesc BuildDescFromLists(List *names, List *types, List *typmods);
|
||||
extern TupleDesc BuildDescFromLists(List *names, List *types, List *typmods, List *collations);
|
||||
|
||||
#endif /* TUPDESC_H */
|
||||
|
Reference in New Issue
Block a user