| 3500 | } |
| 3501 | |
| 3502 | int |
| 3503 | PQftablecol(const PGresult *res, int field_num) |
| 3504 | { |
| 3505 | if (!check_field_number(res, field_num)) |
| 3506 | return 0; |
| 3507 | if (res->attDescs) |
| 3508 | return res->attDescs[field_num].columnid; |
| 3509 | else |
| 3510 | return 0; |
| 3511 | } |
| 3512 | |
| 3513 | int |
| 3514 | PQfformat(const PGresult *res, int field_num) |
nothing calls this directly
no test coverage detected