MCPcopy
hub / github.com/dosco/graphjin / gocqlExecutor

Struct gocqlExecutor

cassandradriver/executor.go:17–19  ·  view source on GitHub ↗

gocqlExecutor implements Executor over a live *gocql.Session. It is the only part of the driver that touches gocql; the planner/assembler stay pure.

Source from the content-addressed store, hash-verified

15// gocqlExecutor implements Executor over a live *gocql.Session. It is the only
16// part of the driver that touches gocql; the planner/assembler stay pure.
17type gocqlExecutor struct {
18 session *gocql.Session
19}
20
21func newGocqlExecutor(s *gocql.Session) *gocqlExecutor { return &gocqlExecutor{session: s} }
22

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected