MCPcopy Create free account
hub / github.com/PostHog/duckgres / LocalRowSet

Struct LocalRowSet

server/executor.go:144–146  ·  view source on GitHub ↗

LocalRowSet wraps *sql.Rows to implement RowSet.

Source from the content-addressed store, hash-verified

142
143// LocalRowSet wraps *sql.Rows to implement RowSet.
144type LocalRowSet struct {
145 rows *sql.Rows
146}
147
148func (r *LocalRowSet) Columns() ([]string, error) {
149 return r.rows.Columns()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected