MCPcopy
hub / github.com/questdb/questdb / PgxQueryResult

Struct PgxQueryResult

compat/src/test/golang/drivers/pgxdriver.go:85–87  ·  view source on GitHub ↗

PgxQueryResult wraps pgx.Rows to implement QueryResult

Source from the content-addressed store, hash-verified

83
84// PgxQueryResult wraps pgx.Rows to implement QueryResult
85type PgxQueryResult struct {
86 rows pgx.Rows
87}
88
89func (r *PgxQueryResult) Next() bool {
90 return r.rows.Next()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected