doc: gin_page_opaque_info() must be a _compressed_ GIN page
[pgsql.git] / src / include / parser / parse_collate.h
bloba858deb0bce74274609ec95e2cfaa00b40eeb570
1 /*-------------------------------------------------------------------------
3 * parse_collate.h
4 * Routines for assigning collation information.
7 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/parser/parse_collate.h
12 *-------------------------------------------------------------------------
14 #ifndef PARSE_COLLATE_H
15 #define PARSE_COLLATE_H
17 #include "parser/parse_node.h"
19 extern void assign_query_collations(ParseState *pstate, Query *query);
21 extern void assign_list_collations(ParseState *pstate, List *exprs);
23 extern void assign_expr_collations(ParseState *pstate, Node *expr);
25 extern Oid select_common_collation(ParseState *pstate, List *exprs, bool none_ok);
27 #endif /* PARSE_COLLATE_H */