commandcounterincrement for utility

executor
Jeff Davis 2021-08-25 11:42:15 -07:00
parent 3f3638c1a9
commit 6fd20cb5c3
1 changed files with 7 additions and 0 deletions

View File

@ -2026,6 +2026,13 @@ ColumnarProcessUtility(PlannedStmt *pstmt,
params, queryEnv, dest, completionTag); params, queryEnv, dest, completionTag);
ColumnarExecLevelPop(); ColumnarExecLevelPop();
/*
* The command counter was already incremented by
* standard_ProcessUtility(), but we need to do so again in case any
* additional writes were performed by ColumnarExecLevelPop().
*/
CommandCounterIncrement();
} }