diff options
| author | vvvv <[email protected]> | 2025-10-24 14:59:50 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-10-24 15:29:24 +0300 |
| commit | 5b0d18921f2a509d8363c40a5ca208dfed026287 (patch) | |
| tree | d1369c696d3a9e9a65b68d9208e198269a48cfbc /yql/essentials/parser/pg_wrapper/postgresql/src/include/executor | |
| parent | e7fbdb6e81ae4a296e710b133de7a2a04b31bbc4 (diff) | |
YQL-20567 upgrade PG up to 16.10 & fix instructions
init
commit_hash:81aba13295273281d19d2d332a48ff1c44977447
Diffstat (limited to 'yql/essentials/parser/pg_wrapper/postgresql/src/include/executor')
3 files changed, 3 insertions, 1 deletions
diff --git a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execExpr.h b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execExpr.h index 048573c2bcb..0e67484cdd3 100644 --- a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execExpr.h +++ b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execExpr.h @@ -350,6 +350,7 @@ typedef struct ExprEvalStep /* faster to access without additional indirection: */ PGFunction fn_addr; /* actual call address */ int nargs; /* number of arguments */ + bool make_ro; /* make arg0 R/O (used only for NULLIF) */ } func; /* for EEOP_BOOL_*_STEP */ diff --git a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execdesc.h b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execdesc.h index af2bf36dfb8..10320c66b0c 100644 --- a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execdesc.h +++ b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/execdesc.h @@ -48,7 +48,7 @@ typedef struct QueryDesc EState *estate; /* executor's query-wide state */ PlanState *planstate; /* tree of per-plan-node state */ - /* This field is set by ExecutorRun */ + /* This field is set by ExecutePlan */ bool already_executed; /* true if previously executed */ /* This is always set NULL by the core system, but plugins can change it */ diff --git a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/executor.h b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/executor.h index 165871ad7d3..c26c3122ebe 100644 --- a/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/executor.h +++ b/yql/essentials/parser/pg_wrapper/postgresql/src/include/executor/executor.h @@ -210,6 +210,7 @@ extern void standard_ExecutorEnd(QueryDesc *queryDesc); extern void ExecutorRewind(QueryDesc *queryDesc); extern bool ExecCheckPermissions(List *rangeTable, List *rteperminfos, bool ereport_on_violation); +extern bool ExecCheckOneRelPerms(RTEPermissionInfo *perminfo); extern void CheckValidResultRel(ResultRelInfo *resultRelInfo, CmdType operation); extern void InitResultRelInfo(ResultRelInfo *resultRelInfo, Relation resultRelationDesc, |
