mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Add const qualifiers to node inspection functions
Thomas Munro
This commit is contained in:
@@ -31,8 +31,8 @@ typedef struct
|
||||
extern Expr *make_opclause(Oid opno, Oid opresulttype, bool opretset,
|
||||
Expr *leftop, Expr *rightop,
|
||||
Oid opcollid, Oid inputcollid);
|
||||
extern Node *get_leftop(Expr *clause);
|
||||
extern Node *get_rightop(Expr *clause);
|
||||
extern Node *get_leftop(const Expr *clause);
|
||||
extern Node *get_rightop(const Expr *clause);
|
||||
|
||||
extern bool not_clause(Node *clause);
|
||||
extern Expr *make_notclause(Expr *notclause);
|
||||
|
||||
Reference in New Issue
Block a user