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 has been archived by the owner on Jun 4, 2024. It is now read-only.
This seems like it would be very helpful for async Node applications allowing one to easily send all needed queries from an iteration of the event loop in one go. To achieve this currently I need to combine all the various queries I use into a single complex query (UNION ALL with an extra column identifying which of the combined queries the result is for.)
The text was updated successfully, but these errors were encountered:
Postgres 14 added support for pipeline mode to libpq. "You can use it on old PostgreSQL versions so long as you're using a new libpq."
This seems like it would be very helpful for async Node applications allowing one to easily send all needed queries from an iteration of the event loop in one go. To achieve this currently I need to combine all the various queries I use into a single complex query (UNION ALL with an extra column identifying which of the combined queries the result is for.)
The text was updated successfully, but these errors were encountered: