mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Post-PG 10 beta1 pgindent run
perltidy run not included.
This commit is contained in:
@ -1230,7 +1230,7 @@ SPI_cursor_open_internal(const char *name, SPIPlanPtr plan,
|
||||
if (!(portal->cursorOptions & (CURSOR_OPT_SCROLL | CURSOR_OPT_NO_SCROLL)))
|
||||
{
|
||||
if (list_length(stmt_list) == 1 &&
|
||||
linitial_node(PlannedStmt, stmt_list)->commandType != CMD_UTILITY &&
|
||||
linitial_node(PlannedStmt, stmt_list)->commandType != CMD_UTILITY &&
|
||||
linitial_node(PlannedStmt, stmt_list)->rowMarks == NIL &&
|
||||
ExecSupportsBackwardScan(linitial_node(PlannedStmt, stmt_list)->planTree))
|
||||
portal->cursorOptions |= CURSOR_OPT_SCROLL;
|
||||
@ -1246,7 +1246,7 @@ SPI_cursor_open_internal(const char *name, SPIPlanPtr plan,
|
||||
if (portal->cursorOptions & CURSOR_OPT_SCROLL)
|
||||
{
|
||||
if (list_length(stmt_list) == 1 &&
|
||||
linitial_node(PlannedStmt, stmt_list)->commandType != CMD_UTILITY &&
|
||||
linitial_node(PlannedStmt, stmt_list)->commandType != CMD_UTILITY &&
|
||||
linitial_node(PlannedStmt, stmt_list)->rowMarks != NIL)
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
||||
@ -1990,8 +1990,8 @@ _SPI_execute_plan(SPIPlanPtr plan, ParamListInfo paramLI,
|
||||
stmt_list = pg_analyze_and_rewrite_params(parsetree,
|
||||
src,
|
||||
plan->parserSetup,
|
||||
plan->parserSetupArg,
|
||||
_SPI_current->queryEnv);
|
||||
plan->parserSetupArg,
|
||||
_SPI_current->queryEnv);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -2668,7 +2668,7 @@ SPI_register_relation(EphemeralNamedRelation enr)
|
||||
if (enr == NULL || enr->md.name == NULL)
|
||||
return SPI_ERROR_ARGUMENT;
|
||||
|
||||
res = _SPI_begin_call(false); /* keep current memory context */
|
||||
res = _SPI_begin_call(false); /* keep current memory context */
|
||||
if (res < 0)
|
||||
return res;
|
||||
|
||||
@ -2702,7 +2702,7 @@ SPI_unregister_relation(const char *name)
|
||||
if (name == NULL)
|
||||
return SPI_ERROR_ARGUMENT;
|
||||
|
||||
res = _SPI_begin_call(false); /* keep current memory context */
|
||||
res = _SPI_begin_call(false); /* keep current memory context */
|
||||
if (res < 0)
|
||||
return res;
|
||||
|
||||
@ -2735,8 +2735,8 @@ SPI_register_trigger_data(TriggerData *tdata)
|
||||
if (tdata->tg_newtable)
|
||||
{
|
||||
EphemeralNamedRelation enr =
|
||||
palloc(sizeof(EphemeralNamedRelationData));
|
||||
int rc;
|
||||
palloc(sizeof(EphemeralNamedRelationData));
|
||||
int rc;
|
||||
|
||||
enr->md.name = tdata->tg_trigger->tgnewtable;
|
||||
enr->md.reliddesc = tdata->tg_relation->rd_id;
|
||||
@ -2752,8 +2752,8 @@ SPI_register_trigger_data(TriggerData *tdata)
|
||||
if (tdata->tg_oldtable)
|
||||
{
|
||||
EphemeralNamedRelation enr =
|
||||
palloc(sizeof(EphemeralNamedRelationData));
|
||||
int rc;
|
||||
palloc(sizeof(EphemeralNamedRelationData));
|
||||
int rc;
|
||||
|
||||
enr->md.name = tdata->tg_trigger->tgoldtable;
|
||||
enr->md.reliddesc = tdata->tg_relation->rd_id;
|
||||
|
Reference in New Issue
Block a user