Remove ReceiveResults

Pipeline mode should be used instead.
pull/1281/head
Jack Christensen 2022-07-02 21:49:16 -05:00
parent ae2881a23c
commit a97ba0c34a
2 changed files with 2 additions and 33 deletions

View File

@ -18,6 +18,8 @@ pgconn now uses non-blocking IO. This is a significant internal restructuring, b
pgconn now supports pipeline mode. pgconn now supports pipeline mode.
`*PgConn.ReceiveResults` removed. Use pipeline mode instead.
## pgtype ## pgtype
The `pgtype` package has been significantly changed. The `pgtype` package has been significantly changed.

View File

@ -917,39 +917,6 @@ func (pgConn *PgConn) Exec(ctx context.Context, sql string) *MultiResultReader {
return multiResult return multiResult
} }
// ReceiveResults reads the result that might be returned by Postgres after a SendBytes
// (e.a. after sending a CopyDone in a copy-both situation).
//
// This is a very low level method that requires deep understanding of the PostgreSQL wire protocol to use correctly.
// See https://www.postgresql.org/docs/current/protocol.html.
func (pgConn *PgConn) ReceiveResults(ctx context.Context) *MultiResultReader {
if err := pgConn.lock(); err != nil {
return &MultiResultReader{
closed: true,
err: err,
}
}
pgConn.multiResultReader = MultiResultReader{
pgConn: pgConn,
ctx: ctx,
}
multiResult := &pgConn.multiResultReader
if ctx != context.Background() {
select {
case <-ctx.Done():
multiResult.closed = true
multiResult.err = newContextAlreadyDoneError(ctx)
pgConn.unlock()
return multiResult
default:
}
pgConn.contextWatcher.Watch(ctx)
}
return multiResult
}
// ExecParams executes a command via the PostgreSQL extended query protocol. // ExecParams executes a command via the PostgreSQL extended query protocol.
// //
// sql is a SQL command string. It may only contain one query. Parameter substitution is positional using $1, $2, $3, // sql is a SQL command string. It may only contain one query. Parameter substitution is positional using $1, $2, $3,