MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecGetAllUpdatedCols

Function ExecGetAllUpdatedCols

src/backend/executor/execUtils.c:1404–1409  ·  view source on GitHub ↗

Return columns being updated, including generated columns */

Source from the content-addressed store, hash-verified

1402
1403/* Return columns being updated, including generated columns */
1404Bitmapset *
1405ExecGetAllUpdatedCols(ResultRelInfo *relinfo, EState *estate)
1406{
1407 return bms_union(ExecGetUpdatedCols(relinfo, estate),
1408 ExecGetExtraUpdatedCols(relinfo, estate));
1409}
1410
1411/*
1412 * flatten_logic_exprs

Callers 5

ExecBSUpdateTriggersFunction · 0.85
ExecASUpdateTriggersFunction · 0.85
ExecBRUpdateTriggersFunction · 0.85
ExecARUpdateTriggersFunction · 0.85
ExecUpdateLockModeFunction · 0.85

Calls 3

bms_unionFunction · 0.85
ExecGetUpdatedColsFunction · 0.85
ExecGetExtraUpdatedColsFunction · 0.85

Tested by

no test coverage detected