mirror of https://github.com/jackc/pgx.git
parent
523411a3fb
commit
c81bba8690
|
@ -4,6 +4,8 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
|
"github.com/jackc/pgx/v5/pgtype"
|
||||||
)
|
)
|
||||||
|
|
||||||
// The PostgreSQL wire protocol has a limit of 1 GB - 1 per message. See definition of
|
// The PostgreSQL wire protocol has a limit of 1 GB - 1 per message. See definition of
|
||||||
|
@ -115,9 +117,10 @@ func (o *LargeObject) Read(p []byte) (int, error) {
|
||||||
expected = maxLargeObjectMessageLength
|
expected = maxLargeObjectMessageLength
|
||||||
}
|
}
|
||||||
|
|
||||||
var res []byte
|
res := pgtype.PreallocBytes(p[nTotal:])
|
||||||
err := o.tx.QueryRow(o.ctx, "select loread($1, $2)", o.fd, expected).Scan(&res)
|
err := o.tx.QueryRow(o.ctx, "select loread($1, $2)", o.fd, expected).Scan(&res)
|
||||||
copy(p[nTotal:], res)
|
// We compute expected so that it always fits into p, so it should never happen
|
||||||
|
// that PreallocBytes's ScanBytes had to allocate a new slice.
|
||||||
nTotal += len(res)
|
nTotal += len(res)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nTotal, err
|
return nTotal, err
|
||||||
|
|
Loading…
Reference in New Issue