pgwire
pgwire copied to clipboard
PostgreSQL wire protocol implemented as a rust library.
Hi there. Is the ``COPY`` command supported by pgwire? I saw it as ticked off in the to-do on the README but I can't find any example or API for...
Context: - https://www.postgresql.org/docs/current/protocol-logical-replication.html Logical streaming replication protocol - https://www.postgresql.org/docs/current/protocol-logicalrep-message-formats.html message types
Our current jdbc integration test are based on babashka, a modified clojure runtime. After some investigation, I found it's difficult to add support for prepared statement. We can switch to...
Seek to see if our query handlers can fit into tower's service design
Backend Key is designed to work as an id of particular connection. Frontend could open another connection to send `Cancel` request with that id, in order to cancel an in-progress...
The current implementation of `ToSqlText` for arrays does not adhere to the specified rules for quoting array elements. According to the PostgreSQL [documentation](https://www.postgresql.org/docs/current/arrays.html#ARRAYS-IO): > The array output routine will put...
Fixes https://github.com/sunng87/pgwire/issues/60 Writing an integration test to evaluate how the Go lib/pq client handles pgwire.
Fixes #170 This patch adds transaction state tracking and allows developer to return transaction state change from `Response` type.