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