PostgreSQL Source Code git master
Loading...
Searching...
No Matches
analyze.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * analyze.h
4 * parse analysis for optimizable statements
5 *
6 *
7 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/parser/analyze.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef ANALYZE_H
15#define ANALYZE_H
16
17#include "nodes/params.h"
18#include "nodes/queryjumble.h"
19#include "parser/parse_node.h"
20
21/* Hook for plugins to get control at end of parse analysis */
23 Query *query,
26
27
28extern Query *parse_analyze_fixedparams(RawStmt *parseTree, const char *sourceText,
29 const Oid *paramTypes, int numParams, QueryEnvironment *queryEnv);
30extern Query *parse_analyze_varparams(RawStmt *parseTree, const char *sourceText,
31 Oid **paramTypes, int *numParams, QueryEnvironment *queryEnv);
32extern Query *parse_analyze_withcb(RawStmt *parseTree, const char *sourceText,
33 ParserSetupHook parserSetup,
34 void *parserSetupArg,
35 QueryEnvironment *queryEnv);
36
37extern Query *parse_sub_analyze(Node *parseTree, ParseState *parentParseState,
40 bool resolve_unknowns);
41
47extern void transformReturningClause(ParseState *pstate, Query *qry,
48 ReturningClause *returningClause,
52
55extern bool query_requires_rewrite_plan(Query *query);
56
57extern const char *LCS_asString(LockClauseStrength strength);
58extern void CheckSelectLocking(Query *qry, LockClauseStrength strength);
59extern void applyLockingClause(Query *qry, Index rtindex,
60 LockClauseStrength strength,
61 LockWaitPolicy waitPolicy, bool pushedDown);
62
64 Index exclRelIndex);
65
67
68#endif /* ANALYZE_H */
void CheckSelectLocking(Query *qry, LockClauseStrength strength)
Definition analyze.c:3349
SortGroupClause * makeSortGroupClauseForSetOp(Oid rescoltype, bool require_hash)
Definition analyze.c:2030
Query * parse_analyze_withcb(RawStmt *parseTree, const char *sourceText, ParserSetupHook parserSetup, void *parserSetupArg, QueryEnvironment *queryEnv)
Definition analyze.c:198
bool analyze_requires_snapshot(RawStmt *parseTree)
Definition analyze.c:503
List * transformInsertRow(ParseState *pstate, List *exprlist, List *stmtcols, List *icolumns, List *attrnos, bool strip_indirection)
Definition analyze.c:1064
void(* post_parse_analyze_hook_type)(ParseState *pstate, Query *query, JumbleState *jstate)
Definition analyze.h:22
void applyLockingClause(Query *qry, Index rtindex, LockClauseStrength strength, LockWaitPolicy waitPolicy, bool pushedDown)
Definition analyze.c:3640
void transformReturningClause(ParseState *pstate, Query *qry, ReturningClause *returningClause, ParseExprKind exprKind)
Definition analyze.c:2671
List * transformUpdateTargetList(ParseState *pstate, List *origTlist)
Definition analyze.c:2557
bool query_requires_rewrite_plan(Query *query)
Definition analyze.c:532
Query * transformTopLevelStmt(ParseState *pstate, RawStmt *parseTree)
Definition analyze.c:261
const char * LCS_asString(LockClauseStrength strength)
Definition analyze.c:3324
Query * parse_analyze_fixedparams(RawStmt *parseTree, const char *sourceText, const Oid *paramTypes, int numParams, QueryEnvironment *queryEnv)
Definition analyze.c:117
Query * parse_sub_analyze(Node *parseTree, ParseState *parentParseState, CommonTableExpr *parentCTE, bool locked_from_parent, bool resolve_unknowns)
Definition analyze.c:234
List * BuildOnConflictExcludedTargetlist(Relation targetrel, Index exclRelIndex)
Definition analyze.c:1281
Query * parse_analyze_varparams(RawStmt *parseTree, const char *sourceText, Oid **paramTypes, int *numParams, QueryEnvironment *queryEnv)
Definition analyze.c:157
bool stmt_requires_parse_analysis(RawStmt *parseTree)
Definition analyze.c:459
PGDLLIMPORT post_parse_analyze_hook_type post_parse_analyze_hook
Definition analyze.c:68
Query * transformStmt(ParseState *pstate, Node *parseTree)
Definition analyze.c:324
#define PGDLLIMPORT
Definition c.h:1334
unsigned int Index
Definition c.h:628
LockWaitPolicy
Definition lockoptions.h:37
LockClauseStrength
Definition lockoptions.h:22
void(* ParserSetupHook)(ParseState *pstate, void *arg)
Definition params.h:107
ParseExprKind
Definition parse_node.h:39
unsigned int Oid
static int fb(int x)
Definition pg_list.h:54
Definition nodes.h:135