* Number of items in a tlist, not including any resjunk items */
| 1202 | * Number of items in a tlist, not including any resjunk items |
| 1203 | */ |
| 1204 | int |
| 1205 | ExecCleanTargetListLength(List *targetlist) |
| 1206 | { |
| 1207 | int len = 0; |
| 1208 | ListCell *tl; |
| 1209 | |
| 1210 | foreach(tl, targetlist) |
| 1211 | { |
| 1212 | TargetEntry *curTle = lfirst_node(TargetEntry, tl); |
| 1213 | |
| 1214 | if (!curTle->resjunk) |
| 1215 | len++; |
| 1216 | } |
| 1217 | return len; |
| 1218 | } |
| 1219 | |
| 1220 | /* |
| 1221 | * Return a relInfo's tuple slot for a trigger's OLD tuples. |
no test coverage detected