mirror of https://github.com/jackc/pgx.git
Add CollectOneRow
parent
90c2dc6f68
commit
62f0347586
|
@ -138,6 +138,7 @@ The `RowScanner` interface allows a single argument to Rows.Scan to scan the ent
|
||||||
## Rows Result Helpers
|
## Rows Result Helpers
|
||||||
|
|
||||||
* `CollectRows` and `RowTo*` functions simplify collecting results into a slice.
|
* `CollectRows` and `RowTo*` functions simplify collecting results into a slice.
|
||||||
|
* `CollectOneRow` collects one row using `RowTo*` functions.
|
||||||
* `ForEachRow` simplifies scanning each row and executing code using the scanned values. `ForEachRow` replaces `QueryFunc`.
|
* `ForEachRow` simplifies scanning each row and executing code using the scanned values. `ForEachRow` replaces `QueryFunc`.
|
||||||
|
|
||||||
## SendBatch Uses Pipeline Mode When Appropriate
|
## SendBatch Uses Pipeline Mode When Appropriate
|
||||||
|
|
21
rows.go
21
rows.go
|
@ -428,6 +428,27 @@ func CollectRows[T any](rows Rows, fn RowToFunc[T]) ([]T, error) {
|
||||||
return slice, nil
|
return slice, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CollectOneRow calls fn for the first row in rows and returns the result. If no rows are found returns an error where errors.Is(ErrNoRows) is true.
|
||||||
|
// CollectOneRow is to CollectRows as QueryRow is to Query.
|
||||||
|
func CollectOneRow[T any](rows Rows, fn RowToFunc[T]) (T, error) {
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
var value T
|
||||||
|
var err error
|
||||||
|
|
||||||
|
if !rows.Next() {
|
||||||
|
return value, ErrNoRows
|
||||||
|
}
|
||||||
|
|
||||||
|
value, err = fn(rows)
|
||||||
|
if err != nil {
|
||||||
|
return value, err
|
||||||
|
}
|
||||||
|
|
||||||
|
rows.Close()
|
||||||
|
return value, rows.Err()
|
||||||
|
}
|
||||||
|
|
||||||
// RowTo returns a T scanned from row.
|
// RowTo returns a T scanned from row.
|
||||||
func RowTo[T any](row CollectableRow) (T, error) {
|
func RowTo[T any](row CollectableRow) (T, error) {
|
||||||
var value T
|
var value T
|
||||||
|
|
41
rows_test.go
41
rows_test.go
|
@ -147,6 +147,47 @@ func TestCollectRows(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCollectOneRow(t *testing.T) {
|
||||||
|
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
||||||
|
rows, _ := conn.Query(ctx, `select 42`)
|
||||||
|
n, err := pgx.CollectOneRow(rows, func(row pgx.CollectableRow) (int32, error) {
|
||||||
|
var n int32
|
||||||
|
err := row.Scan(&n)
|
||||||
|
return n, err
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, int32(42), n)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCollectOneRowNotFound(t *testing.T) {
|
||||||
|
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
||||||
|
rows, _ := conn.Query(ctx, `select 42 where false`)
|
||||||
|
n, err := pgx.CollectOneRow(rows, func(row pgx.CollectableRow) (int32, error) {
|
||||||
|
var n int32
|
||||||
|
err := row.Scan(&n)
|
||||||
|
return n, err
|
||||||
|
})
|
||||||
|
assert.ErrorIs(t, err, pgx.ErrNoRows)
|
||||||
|
assert.Equal(t, int32(0), n)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCollectOneRowIgnoresExtraRows(t *testing.T) {
|
||||||
|
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
||||||
|
rows, _ := conn.Query(ctx, `select n from generate_series(42, 99) n`)
|
||||||
|
n, err := pgx.CollectOneRow(rows, func(row pgx.CollectableRow) (int32, error) {
|
||||||
|
var n int32
|
||||||
|
err := row.Scan(&n)
|
||||||
|
return n, err
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, int32(42), n)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func TestRowTo(t *testing.T) {
|
func TestRowTo(t *testing.T) {
|
||||||
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
|
||||||
rows, _ := conn.Query(ctx, `select n from generate_series(0, 99) n`)
|
rows, _ := conn.Query(ctx, `select n from generate_series(0, 99) n`)
|
||||||
|
|
Loading…
Reference in New Issue