| 3489 | } |
| 3490 | |
| 3491 | Oid |
| 3492 | PQftable(const PGresult *res, int field_num) |
| 3493 | { |
| 3494 | if (!check_field_number(res, field_num)) |
| 3495 | return InvalidOid; |
| 3496 | if (res->attDescs) |
| 3497 | return res->attDescs[field_num].tableid; |
| 3498 | else |
| 3499 | return InvalidOid; |
| 3500 | } |
| 3501 | |
| 3502 | int |
| 3503 | PQftablecol(const PGresult *res, int field_num) |
nothing calls this directly
no test coverage detected