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

Method ExecContext

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

Source from the content-addressed store, hash-verified

44}
45
46func (e *LocalExecutor) ExecContext(ctx context.Context, query string, args ...any) (ExecResult, error) {
47 return e.db.ExecContext(ctx, query, args...)
48}
49
50func (e *LocalExecutor) Query(query string, args ...any) (RowSet, error) {
51 rows, err := e.db.Query(query, args...)

Callers

nothing calls this directly

Calls 1

ExecContextMethod · 0.65

Tested by

no test coverage detected