mirror of https://github.com/jackc/pgx.git
Document new ResultReader.Values behavior
parent
f0cd9cb867
commit
3dc9d17757
|
@ -10,6 +10,8 @@ release work due to releasing multiple packages, and less clear changelogs.
|
||||||
|
|
||||||
`CommandTag` is now an opaque type instead of directly exposing an underlying `[]byte`.
|
`CommandTag` is now an opaque type instead of directly exposing an underlying `[]byte`.
|
||||||
|
|
||||||
|
The return value `ResultReader.Values()` is no longer safe to retain a reference to after a subsequent call to `NextRow()` or `Close()`.
|
||||||
|
|
||||||
`Trace()` method adds low level message tracing similar to the `PQtrace` function in `libpq`.
|
`Trace()` method adds low level message tracing similar to the `PQtrace` function in `libpq`.
|
||||||
|
|
||||||
pgconn now uses non-blocking IO. This is a significant internal restructuring, but it should not cause any visible changes on its own. However, it is important in implementing other new features.
|
pgconn now uses non-blocking IO. This is a significant internal restructuring, but it should not cause any visible changes on its own. However, it is important in implementing other new features.
|
||||||
|
|
|
@ -1358,8 +1358,7 @@ func (rr *ResultReader) FieldDescriptions() []pgproto3.FieldDescription {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only
|
// Values returns the current row data. NextRow must have been previously been called. The returned [][]byte is only
|
||||||
// valid until the next NextRow call or the ResultReader is closed. However, the underlying byte data is safe to
|
// valid until the next NextRow call or the ResultReader is closed.
|
||||||
// retain a reference to and mutate.
|
|
||||||
func (rr *ResultReader) Values() [][]byte {
|
func (rr *ResultReader) Values() [][]byte {
|
||||||
return rr.rowValues
|
return rr.rowValues
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue