var bufio.ErrBufferFull

14 uses

	bufio (current package)
		bufio.go#L25: 	ErrBufferFull        = errors.New("bufio: buffer full")
		bufio.go#L148: 		return b.buf[b.r:b.w], ErrBufferFull
		bufio.go#L158: 			err = ErrBufferFull
		bufio.go#L365: 			err = ErrBufferFull
		bufio.go#L401: 	if err == ErrBufferFull {
		bufio.go#L450: 		if e != ErrBufferFull { // unexpected error

	github.com/go-pg/pg/v10
		messages.go#L1160: 				if err != nil && err != bufio.ErrBufferFull {

	github.com/go-pg/pg/v10/internal/pool
		reader_buf.go#L228: 			err = bufio.ErrBufferFull
		reader_buf.go#L274: 			err = bufio.ErrBufferFull
		reader_buf.go#L393: 			err = bufio.ErrBufferFull

	github.com/go-pg/pg/v10/orm
		composite_parser.go#L75: 		if err == bufio.ErrBufferFull {

	github.com/go-pg/pg/v10/types
		array_parser.go#L110: 		if err == bufio.ErrBufferFull {
		array_parser.go#L143: 					if err == bufio.ErrBufferFull {

	net/http/internal
		chunked.go#L135: 		} else if err == bufio.ErrBufferFull {