* SearchSysCacheCopyAttNum * * As above, an attisdropped-aware version of SearchSysCacheCopy. */
| 1580 | * As above, an attisdropped-aware version of SearchSysCacheCopy. |
| 1581 | */ |
| 1582 | HeapTuple |
| 1583 | SearchSysCacheCopyAttNum(Oid relid, int16 attnum) |
| 1584 | { |
| 1585 | HeapTuple tuple, |
| 1586 | newtuple; |
| 1587 | |
| 1588 | tuple = SearchSysCacheAttNum(relid, attnum); |
| 1589 | if (!HeapTupleIsValid(tuple)) |
| 1590 | return NULL; |
| 1591 | newtuple = heap_copytuple(tuple); |
| 1592 | ReleaseSysCache(tuple); |
| 1593 | return newtuple; |
| 1594 | } |
| 1595 | |
| 1596 | |
| 1597 | /* |
no test coverage detected