diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2026-07-31 21:39:56 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2026-07-31 23:35:23 +0200 |
| commit | 656e5dcce132716b39005814407224f989aa8c2d (patch) | |
| tree | ab0a6d3a046170f0ace6a6e4ab3668ce0af811ae /benchmark/internal/oblast_pgx/results.go | |
| parent | a2f8d7a68f324d5b4086148571f990409425e22a (diff) | |
| download | go-oblast-656e5dcce132716b39005814407224f989aa8c2d.tar.gz | |
replace types Handle, DB, Conn, Tx with their gg/gsql equivalents
Diffstat (limited to 'benchmark/internal/oblast_pgx/results.go')
| -rw-r--r-- | benchmark/internal/oblast_pgx/results.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/benchmark/internal/oblast_pgx/results.go b/benchmark/internal/oblast_pgx/results.go index 3ccb5ce..f842d36 100644 --- a/benchmark/internal/oblast_pgx/results.go +++ b/benchmark/internal/oblast_pgx/results.go @@ -9,16 +9,16 @@ import ( "github.com/jackc/pgx/v5" "github.com/jackc/pgx/v5/pgconn" - "go.xyrillian.de/oblast/handle" + "go.xyrillian.de/gg/gsql" ) type wrappedRows struct { inner pgx.Rows } -var _ handle.Rows = wrappedRows{} +var _ gsql.Rows = wrappedRows{} -// Columns implements the [handle.Rows] interface. +// Columns implements the [gsql.Rows] interface. func (r wrappedRows) Columns() ([]string, error) { descriptions := r.inner.FieldDescriptions() result := make([]string, len(descriptions)) @@ -28,23 +28,23 @@ func (r wrappedRows) Columns() ([]string, error) { return result, nil } -// Close implements the [handle.Rows] interface. +// Close implements the [gsql.Rows] interface. func (r wrappedRows) Close() error { r.inner.Close() return nil } -// Err implements the [handle.Rows] interface. +// Err implements the [gsql.Rows] interface. func (r wrappedRows) Err() error { return r.inner.Err() } -// Next implements the [handle.Rows] interface. +// Next implements the [gsql.Rows] interface. func (r wrappedRows) Next() bool { return r.inner.Next() } -// Scan implements the [handle.Rows] interface. +// Scan implements the [gsql.Rows] interface. func (r wrappedRows) Scan(args ...any) error { return r.inner.Scan(args...) } |
