MCPcopy Index your code
hub / github.com/uber/aresdb / QueryRaw

Method QueryRaw

datanode/client/query_client.go:88–94  ·  view source on GitHub ↗
(ctx context.Context, requestID string, host topology.Host, query queryCom.AQLQuery)

Source from the content-addressed store, hash-verified

86}
87
88func (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
96func (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

Callers

nothing calls this directly

Calls 4

queryRawMethod · 0.95
GetLoggerFunction · 0.92
DebugMethod · 0.65
WithMethod · 0.65

Tested by

no test coverage detected