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.
1 parent 2fde04d commit 03b1446Copy full SHA for 03b1446
query_result.go
@@ -361,12 +361,6 @@ func (qr *QueryResult) IndicesDeleted() int {
361
return int(qr.getStat(INDICES_DELETED))
362
}
363
364
-// This method is deprecated and returns wrong internal execution times.
365
-// Deprecated: Please use InternalExecutionTime() instead
366
-func (qr *QueryResult) RunTime() int {
367
- return int(qr.getStat(INTERNAL_EXECUTION_TIME))
368
-}
369
-
370
// Returns the query internal execution time in milliseconds
371
func (qr *QueryResult) InternalExecutionTime() float64 {
372
return qr.getStat(INTERNAL_EXECUTION_TIME)
0 commit comments