PostgreSQL Source Code git master
parse_oper.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * parse_oper.h
4 * handle operator things for parser
5 *
6 *
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/parser/parse_oper.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef PARSE_OPER_H
15#define PARSE_OPER_H
16
17#include "access/htup.h"
18#include "nodes/parsenodes.h"
19#include "parser/parse_node.h"
20
21
23
24/* Routines to look up an operator given name and exact input type(s) */
25extern Oid LookupOperName(ParseState *pstate, List *opername,
26 Oid oprleft, Oid oprright,
27 bool noError, int location);
28extern Oid LookupOperWithArgs(ObjectWithArgs *oper, bool noError);
29
30/* Routines to find operators matching a name and given input types */
31/* NB: the selected operator may require coercion of the input types! */
32extern Operator oper(ParseState *pstate, List *opname, Oid ltypeId,
33 Oid rtypeId, bool noError, int location);
34extern Operator left_oper(ParseState *pstate, List *op, Oid arg,
35 bool noError, int location);
36
37/* Routines to find operators that DO NOT require coercion --- ie, their */
38/* input types are either exactly as given, or binary-compatible */
39extern Operator compatible_oper(ParseState *pstate, List *op,
40 Oid arg1, Oid arg2,
41 bool noError, int location);
42
43/* currently no need for compatible_left_oper/compatible_right_oper */
44
45/* Error reporting support */
46extern const char *op_signature_string(List *op, Oid arg1, Oid arg2);
47
48/* Routines for identifying "<", "=", ">" operators for a type */
49extern void get_sort_group_operators(Oid argtype,
50 bool needLT, bool needEQ, bool needGT,
51 Oid *ltOpr, Oid *eqOpr, Oid *gtOpr,
52 bool *isHashable);
53
54/* Convenience routines for common calls on the above */
55extern Oid compatible_oper_opid(List *op, Oid arg1, Oid arg2, bool noError);
56
57/* Extract operator OID or underlying-function OID from an Operator tuple */
58extern Oid oprid(Operator op);
59extern Oid oprfuncid(Operator op);
60
61/* Build expression tree for an operator invocation */
62extern Expr *make_op(ParseState *pstate, List *opname,
63 Node *ltree, Node *rtree, Node *last_srf, int location);
64extern Expr *make_scalar_array_op(ParseState *pstate, List *opname,
65 bool useOr,
66 Node *ltree, Node *rtree, int location);
67
68#endif /* PARSE_OPER_H */
Operator left_oper(ParseState *pstate, List *op, Oid arg, bool noError, int location)
Definition: parse_oper.c:518
void get_sort_group_operators(Oid argtype, bool needLT, bool needEQ, bool needGT, Oid *ltOpr, Oid *eqOpr, Oid *gtOpr, bool *isHashable)
Definition: parse_oper.c:180
Expr * make_op(ParseState *pstate, List *opname, Node *ltree, Node *rtree, Node *last_srf, int location)
Definition: parse_oper.c:660
Oid LookupOperName(ParseState *pstate, List *opername, Oid oprleft, Oid oprright, bool noError, int location)
Definition: parse_oper.c:99
Expr * make_scalar_array_op(ParseState *pstate, List *opname, bool useOr, Node *ltree, Node *rtree, int location)
Definition: parse_oper.c:770
Oid oprfuncid(Operator op)
Definition: parse_oper.c:245
Oid oprid(Operator op)
Definition: parse_oper.c:238
Operator oper(ParseState *pstate, List *opname, Oid ltypeId, Oid rtypeId, bool noError, int location)
Definition: parse_oper.c:370
const char * op_signature_string(List *op, Oid arg1, Oid arg2)
Definition: parse_oper.c:602
Oid compatible_oper_opid(List *op, Oid arg1, Oid arg2, bool noError)
Definition: parse_oper.c:487
Operator compatible_oper(ParseState *pstate, List *op, Oid arg1, Oid arg2, bool noError, int location)
Definition: parse_oper.c:450
Oid LookupOperWithArgs(ObjectWithArgs *oper, bool noError)
Definition: parse_oper.c:133
HeapTuple Operator
Definition: parse_oper.h:22
void * arg
unsigned int Oid
Definition: postgres_ext.h:32
Definition: pg_list.h:54
Definition: nodes.h:129
Definition: ltree.h:43