ExecutionStatisticsResponse

data class ExecutionStatisticsResponse(val cpuTimeMs: Double, val elapsedTimeMs: Double, val executionCount: Double, val hasErrors: Boolean, val sqlErrors: List<String>, val waitStats: Map<String, WaitStatisticsResponse>? = null)

Description about the errors happen while performing migration validation

Constructors

Link copied to clipboard
constructor(cpuTimeMs: Double, elapsedTimeMs: Double, executionCount: Double, hasErrors: Boolean, sqlErrors: List<String>, waitStats: Map<String, WaitStatisticsResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

CPU Time in millisecond(s) for the query execution

Link copied to clipboard

Time taken in millisecond(s) for executing the query

Link copied to clipboard

No. of query executions

Link copied to clipboard

Indicates whether the query resulted in an error

Link copied to clipboard

List of sql Errors

Link copied to clipboard

Dictionary of sql query execution wait types and the respective statistics