Fix panic in Pipeline when PgConn is busy or closed

pull/1856/head
Ryan Fowler 2023-12-16 09:23:17 -08:00 committed by Jack Christensen
parent 603c8c1e90
commit dfd198003a
1 changed files with 7 additions and 0 deletions

View File

@ -2053,6 +2053,13 @@ func (p *Pipeline) Flush() error {
// Sync establishes a synchronization point and flushes the queued requests.
func (p *Pipeline) Sync() error {
if p.closed {
if p.err != nil {
return p.err
}
return errors.New("pipeline closed")
}
p.conn.frontend.SendSync(&pgproto3.Sync{})
err := p.Flush()
if err != nil {