* Number of items in a tlist (including any resjunk items!) */
| 1192 | * Number of items in a tlist (including any resjunk items!) |
| 1193 | */ |
| 1194 | int |
| 1195 | ExecTargetListLength(List *targetlist) |
| 1196 | { |
| 1197 | /* This used to be more complex, but fjoins are dead */ |
| 1198 | return list_length(targetlist); |
| 1199 | } |
| 1200 | |
| 1201 | /* |
| 1202 | * Number of items in a tlist, not including any resjunk items |
no test coverage detected