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
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Get the compiling time of the query.double
Get 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.
-