PlannerEvent

data class PlannerEvent(eventName: String, input: Any, output: Any, duration: Duration)

Information about a planner event.

Constructors

Link copied to clipboard
fun PlannerEvent(eventName: String, input: Any, output: Any, duration: Duration)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val duration: Duration

The duration of the pass.

Link copied to clipboard
val eventName: String

The name of the event.

Link copied to clipboard
val input: Any

The input to the pass, e.g. the SQL query text or instance of the AST or query plan.

Link copied to clipboard
val output: Any

The output of the pass, e.g., the AST or rewritten query plan.