| 3544 | } |
| 3545 | |
| 3546 | int |
| 3547 | PQfmod(const PGresult *res, int field_num) |
| 3548 | { |
| 3549 | if (!check_field_number(res, field_num)) |
| 3550 | return 0; |
| 3551 | if (res->attDescs) |
| 3552 | return res->attDescs[field_num].atttypmod; |
| 3553 | else |
| 3554 | return 0; |
| 3555 | } |
| 3556 | |
| 3557 | char * |
| 3558 | PQcmdStatus(PGresult *res) |
no test coverage detected