package postgres_async
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=247ab43840311bef9290ac209f46ca56f21983f3a278f1ec51eba6a6776b7f9b
CHANGES.md.html
Release v0.17.0
Postgres_async
now returns appropriatesql_state_code
s for connection-related error states, such as connection unexpectedly closed.Postgres_async
gained implementation of the SimpleQuery message flow, which is currently exposed underPostgres_async.Private
, as it is relatively new and not extensively tested. If you wish to try it, the main entry points aresimple_query
andexecute_simple
.Postgres_async.Private.pg_cancel
is a best-effort attempt to send out-of-bound message equivalent to invocation ofpg_cancel_backend()
for the given connection.Postgres_async.close
now accepts an optionaltry_cancel_statement_before_close
parameter to try and issue out-of-band cancel request for the currently running statement (if any) before closing the connection.For the
Postgres_async.copy_in_rows
andString_escaping.Copy_in
, thecolumn_names
parameter type changed fromstring array
tostring list
.