MCPcopy
hub / github.com/questdb/questdb / PqQueryResult

Struct PqQueryResult

compat/src/test/golang/drivers/pqdriver.go:138–140  ·  view source on GitHub ↗

PqQueryResult wraps sql.Rows to implement QueryResult

Source from the content-addressed store, hash-verified

136
137// PqQueryResult wraps sql.Rows to implement QueryResult
138type PqQueryResult struct {
139 rows *sql.Rows
140}
141
142func (r *PqQueryResult) Next() bool {
143 return r.rows.Next()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected