This commit is contained in:
Jack Christensen 2022-07-04 06:20:15 -05:00
parent f635b43a6b
commit f7433cc5f2

View File

@ -1654,7 +1654,7 @@ func Construct(hc *HijackedConn) (*PgConn, error) {
// Pipeline represents a connection in pipeline mode. // Pipeline represents a connection in pipeline mode.
// //
// SendPrepare, SendQueryParam, and SendQueryPrepared queue requests to the server. These requests are not written until // SendPrepare, SendQueryParams, and SendQueryPrepared queue requests to the server. These requests are not written until
// pipeline is flushed by Flush or Sync. Sync must be called after the last request is queued. Requests between // pipeline is flushed by Flush or Sync. Sync must be called after the last request is queued. Requests between
// synchronization points are implicitly transactional unless explicit transaction control statements have been issued. // synchronization points are implicitly transactional unless explicit transaction control statements have been issued.
// //