Skip to content

Commit 03b1446

Browse files
committed
[fix] Introduced InternalExecutionTime() and removed RunTime()
1 parent 2fde04d commit 03b1446

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

query_result.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,6 @@ func (qr *QueryResult) IndicesDeleted() int {
361361
return int(qr.getStat(INDICES_DELETED))
362362
}
363363

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-
370364
// Returns the query internal execution time in milliseconds
371365
func (qr *QueryResult) InternalExecutionTime() float64 {
372366
return qr.getStat(INTERNAL_EXECUTION_TIME)

0 commit comments

Comments
 (0)