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

Method ExecContext

server/executor.go:106–108  ·  view source on GitHub ↗
(ctx context.Context, query string, args ...any)

Source from the content-addressed store, hash-verified

104}
105
106func (e *PinnedExecutor) ExecContext(ctx context.Context, query string, args ...any) (ExecResult, error) {
107 return e.conn.ExecContext(ctx, query, args...)
108}
109
110func (e *PinnedExecutor) Query(query string, args ...any) (RowSet, error) {
111 rows, err := e.conn.QueryContext(context.Background(), query, args...)

Callers

nothing calls this directly

Calls 1

ExecContextMethod · 0.65

Tested by

no test coverage detected