queryExecutorImpl will be reused across all queries
| 40 | |
| 41 | // queryExecutorImpl will be reused across all queries |
| 42 | type queryExecutorImpl struct { |
| 43 | tableSchemaReader memCom.TableSchemaReader |
| 44 | topo topology.HealthTrackingDynamicTopoloy |
| 45 | dataNodeClient dataCli.DataNodeQueryClient |
| 46 | } |
| 47 | |
| 48 | func (qe *queryExecutorImpl) Execute(ctx context.Context, requestID string, aql *queryCom.AQLQuery, returnHLLBinary bool, w http.ResponseWriter) (err error) { |
| 49 | var cancelFn context.CancelFunc |
nothing calls this directly
no outgoing calls
no test coverage detected