aboutsummaryrefslogtreecommitdiff
path: root/src/tutorial/funcs.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-07-04 14:48:10 +0900
committerMichael Paquier <michael@paquier.xyz>2023-07-04 14:48:10 +0900
commit28b5726561841556dc3e00ffe26b01a8107ee654 (patch)
tree79a4dad5f2ebae14b3ed650b367a79d7a1f23964 /src/tutorial/funcs.c
parent03f80daac8cff257294108caf908fe0397c40e1a (diff)
downloadpostgresql-28b5726561841556dc3e00ffe26b01a8107ee654.tar.gz
postgresql-28b5726561841556dc3e00ffe26b01a8107ee654.zip
libpq: Add support for Close on portals and statements
The following routines are added to libpq: PGresult *PQclosePrepared(PGconn *conn, const char *stmt); PGresult *PQclosePortal(PGconn *conn, const char *portal); int PQsendClosePrepared(PGconn *conn, const char *stmt); int PQsendClosePortal(PGconn *conn, const char *portal); The "send" routines are non-blocking versions of the two others. Close messages are part of the protocol but they did not have a libpq implementation. And, having these routines is for instance useful with connection poolers as these can detect more easily Close messages than DEALLOCATE queries. The implementation takes advantage of what the Describe routines rely on for portals and statements. Some regression tests are added in libpq_pipeline, for the four new routines, by closing portals and statements created already by the tests. Author: Jelte Fennema Reviewed-by: Jian He, Michael Paquier Discussion: https://postgr.es/m/CAGECzQTb4xFAopAVokudB+L62Kt44mNAL4Z9zZ7UTrs1TRFvWA@mail.gmail.com
Diffstat (limited to 'src/tutorial/funcs.c')
0 files changed, 0 insertions, 0 deletions