| 3533 | } |
| 3534 | |
| 3535 | int |
| 3536 | PQfsize(const PGresult *res, int field_num) |
| 3537 | { |
| 3538 | if (!check_field_number(res, field_num)) |
| 3539 | return 0; |
| 3540 | if (res->attDescs) |
| 3541 | return res->attDescs[field_num].typlen; |
| 3542 | else |
| 3543 | return 0; |
| 3544 | } |
| 3545 | |
| 3546 | int |
| 3547 | PQfmod(const PGresult *res, int field_num) |
no test coverage detected