| 3511 | } |
| 3512 | |
| 3513 | int |
| 3514 | PQfformat(const PGresult *res, int field_num) |
| 3515 | { |
| 3516 | if (!check_field_number(res, field_num)) |
| 3517 | return 0; |
| 3518 | if (res->attDescs) |
| 3519 | return res->attDescs[field_num].format; |
| 3520 | else |
| 3521 | return 0; |
| 3522 | } |
| 3523 | |
| 3524 | Oid |
| 3525 | PQftype(const PGresult *res, int field_num) |
no test coverage detected