We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9890c26 + 6479001 commit 797f380Copy full SHA for 797f380
query_result.go
@@ -20,6 +20,7 @@ const (
20
INDICES_CREATED string = "Indices created"
21
INDICES_DELETED string = "Indices deleted"
22
INTERNAL_EXECUTION_TIME string = "internal execution time"
23
+ CACHED_EXECUTION string = "Cached execution"
24
)
25
26
type ResultSetColumnTypes int
@@ -364,3 +365,8 @@ func (qr *QueryResult) IndicesDeleted() int {
364
365
func (qr *QueryResult) RunTime() int {
366
return qr.getStat(INTERNAL_EXECUTION_TIME)
367
}
368
+
369
+func (qr *QueryResult) CachedExecution() int {
370
+ return qr.getStat(CACHED_EXECUTION)
371
+}
372
0 commit comments