gocqlExecutor implements Executor over a live *gocql.Session. It is the only part of the driver that touches gocql; the planner/assembler stay pure.
| 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. |
| 17 | type gocqlExecutor struct { |
| 18 | session *gocql.Session |
| 19 | } |
| 20 | |
| 21 | func newGocqlExecutor(s *gocql.Session) *gocqlExecutor { return &gocqlExecutor{session: s} } |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected