You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Add text protocol based query method (sfackler#14)
Add query_raw_txt client method
It takes all the extended protocol params as text and passes them to
postgres to sort out types. With that we can avoid situations when
postgres derived different type compared to what was passed in arguments.
There is also propare_typed method, but since we receive data in text
format anyway it makes more sense to avoid dealing with types in params.
This way we also can save on roundtrip and send Parse+Bind+Describe+Execute
right away without waiting for params description before Bind.
Use text protocol for responses -- that allows to grab
postgres-provided serializations for types.
Catch command tag.
Expose row buffer size and add `max_backend_message_size` option to
prevent handling and storing in memory large messages from the backend.
Co-authored-by: Arthur Petukhovsky <[email protected]>
0 commit comments