public final class QueryExplanation:
Immutable diagnostic description of a compiled query and provider plan.
Parameter values and credentials are never included. Providers may add warnings about determinism, buffering, policies, or unsupported estimates.
explanation = query.explain() print(explanation.provider) print(explanation.providerPlan)
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | normalizedQuerynormalizedQuery as String |
Normalized provider-neutral query summary. |
| public readonly property | providerprovider as String |
Provider identifier. |
| public readonly property | providerPlanproviderPlan as String |
Provider plan or provider-specific diagnostic text. |
| public readonly property | warnings | Immutable snapshot of warnings attached to the plan. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | QueryExplanation | Creates a query explanation. |