* ExecFindJunkAttribute * * Locate the specified junk attribute in the junk filter's targetlist, * and return its resno. Returns InvalidAttrNumber if not found. */
| 219 | * and return its resno. Returns InvalidAttrNumber if not found. |
| 220 | */ |
| 221 | AttrNumber |
| 222 | ExecFindJunkAttribute(JunkFilter *junkfilter, const char *attrName) |
| 223 | { |
| 224 | return ExecFindJunkAttributeInTlist(junkfilter->jf_targetList, attrName); |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * ExecFindJunkAttributeInTlist |
no test coverage detected