QueryExecutor defines query executor
| 31 | |
| 32 | // QueryExecutor defines query executor |
| 33 | type QueryExecutor interface { |
| 34 | // Execute executes query and flush result to connection |
| 35 | Execute(ctx context.Context, requestID string, aql *queryCom.AQLQuery, returnHLLBinary bool, w http.ResponseWriter) (err error) |
| 36 | } |
| 37 | |
| 38 | type QueryPlan interface { |
| 39 | Execute(ctx context.Context, w http.ResponseWriter) (err error) |
nothing calls this directly
no outgoing calls
no test coverage detected