Interface QueryProcessingStatsAndExceptions

All Superinterfaces:
Stats
All Known Implementing Classes:
QueryProcessingStatsAndExceptionsImpl

public interface QueryProcessingStatsAndExceptions extends Stats
  • Method Details

    • getOverallQueryProcessingTime

      long getOverallQueryProcessingTime()
    • getPlanningTime

      long getPlanningTime()
    • getCompilationTime

      long getCompilationTime()
    • getExecutionTime

      long getExecutionTime()
    • getQueryPlanningStats

      QueryPlanningStats getQueryPlanningStats()
    • getExecutionStats

      ExecutionStats getExecutionStats()
    • containsExceptions

      boolean containsExceptions()
      Returns true if this object contains exceptions that have occurred while processing the query for which this object was returned. The exceptions themselves can be accessed via getExceptions().
    • getExceptions

      List<Exception> 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 returns null.

      The function containsExceptions() can be used to ask whether there are exceptions.