* pqResultAlloc - exported routine to allocate local storage in a PGresult. * * We force all such allocations to be maxaligned, since we don't know * whether the value might be binary. */
| 544 | * whether the value might be binary. |
| 545 | */ |
| 546 | void * |
| 547 | PQresultAlloc(PGresult *res, size_t nBytes) |
| 548 | { |
| 549 | return pqResultAlloc(res, nBytes, true); |
| 550 | } |
| 551 | |
| 552 | /* |
| 553 | * pqResultAlloc - |
no test coverage detected