| 86 | } |
| 87 | |
| 88 | func (dc *dataNodeQueryClientImpl) QueryRaw(ctx context.Context, requestID string, host topology.Host, query queryCom.AQLQuery) (bs []byte, err error) { |
| 89 | bs, err = dc.queryRaw(ctx, requestID, host, query, false) |
| 90 | if err == nil { |
| 91 | utils.GetLogger().With("host", host, "query", query).Debug("datanode query client QueryRaw succeeded") |
| 92 | } |
| 93 | return |
| 94 | } |
| 95 | |
| 96 | func (dc *dataNodeQueryClientImpl) queryRaw(ctx context.Context, requestID string, host topology.Host, query queryCom.AQLQuery, hll bool) (bs []byte, err error) { |
| 97 | var u *url.URL |