Interface QueryProcessingStatsAndExceptions
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturnstrueif this object contains exceptions that have occurred while processing the query for which this object was returned.longReturns a list of the exceptions that have occurred while processing the query for which this object was returned.longlonglongMethods inherited from interface se.liu.ida.hefquin.base.utils.Stats
getEntry, getEntryNames, isEmpty
-
Method Details
-
getOverallQueryProcessingTime
long getOverallQueryProcessingTime() -
getPlanningTime
long getPlanningTime() -
getCompilationTime
long getCompilationTime() -
getExecutionTime
long getExecutionTime() -
getQueryPlanningStats
QueryPlanningStats getQueryPlanningStats() -
getExecutionStats
ExecutionStats getExecutionStats() -
containsExceptions
boolean containsExceptions()Returnstrueif this object contains exceptions that have occurred while processing the query for which this object was returned. The exceptions themselves can be accessed viagetExceptions(). -
getExceptions
Returns a list of the exceptions that have occurred while processing the query for which this object was returned. If no exceptions occurred, this function returnsnull.The function
containsExceptions()can be used to ask whether there are exceptions.
-