| 232 | } |
| 233 | |
| 234 | type SelectStatement struct { |
| 235 | Query string |
| 236 | } |
| 237 | |
| 238 | func (s *SelectStatement) Execute(ctx context.Context, session *Session) (*Result, error) { |
| 239 | stmt := spanner.NewStatement(s.Query) |
nothing calls this directly
no outgoing calls
no test coverage detected