Feature #7645
openFeature #4566: pgsql: add subprotocol-states
Feature #4854: pgsql: Add COPY subprotocol-state
pgsql: add CopyIn subprotocol/mode
Description
Add initial support to PostgreSQL's CopyIn mode, in which a frontend will send 0 or more CopyData [In] messages to a backend in response to a COPY FROM STDIN statement
from a simple query (happens in extended mode/ subprotocol, too, although extended query mode isn't covered by the pgsql app-layer yet).
PostgreSQL's protocol has a so called Copy subprotocol.
The COPY operations can be split into three different modes (cf https://www.postgresql.org/docs/13/protocol-flow.html#PROTOCOL-COPY):
- Copy-In mode - high-speed bulk data transfer to the server
- Copy-Out mode - high-speed bulk data transfer from the server
- Copy-Both - high-speed bulk data transfer to and from the server
Updated by Juliana Fajardini Reichow 7 days ago
- Related to Feature #4854: pgsql: Add COPY subprotocol-state added
Updated by Juliana Fajardini Reichow 7 days ago
- Related to Feature #7644: pgsql: add CopyOut subprotocol/mode added
Updated by Juliana Fajardini Reichow 7 days ago
- Tracker changed from Bug to Feature