Package com.kuzudb
Class QuerySummary
java.lang.Object
com.kuzudb.QuerySummary
QuerySummary stores the execution time, plan, compiling time and query options of a query.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubleGet the compiling time of the query.doubleGet the execution time of the query.
-
Constructor Details
-
QuerySummary
public QuerySummary(double cmpTime, double exeTime) Construct a new query summary.- Parameters:
cmpTime- : The compiling time of the query.exeTime- : The execution time of the query.
-
-
Method Details
-
getCompilingTime
public double getCompilingTime()Get the compiling time of the query.- Returns:
- The compiling time of the query.
-
getExecutionTime
public double getExecutionTime()Get the execution time of the query.- Returns:
- The execution time of the query.
-