2026-05-10 23:12:26 +02:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
from enum import Enum
|
|
|
|
|
from typing import Any, Literal
|
|
|
|
|
|
fix(context): merge overlay columns onto manifest columns by name (#94)
* fix(context): merge overlay columns onto manifest columns by name
composeOverlay was appending overlay columns to the manifest column list,
producing duplicate entries when dbt/metabase overlays declared a column
just to attach descriptions. The duplicates carried no `type`, so the
pydantic SourceDefinition rejected them at semantic-query time and broke
`ktx sl query` for every overlay-backed measure. Now overlay columns
match base columns by name (case-insensitive): same-name entries merge
onto the manifest (overlay fields win, type/role fall back to the base,
descriptions merge per source key) and only new names append.
* refactor(sl): split overlay columns from column_overrides and enforce TS/Python wire contract
Overlay sources now have two distinct collections: `columns:` for computed
columns (requiring `expr` + `type`) and `column_overrides:` for metadata
patches to inherited manifest columns. Composing or loading an overlay that
mixes the two — or references an unknown column — fails with a typed error.
Introduce `ResolvedSemanticLayerSource` / `resolvedSourceSchema` /
`toResolvedWire` as the strict shape sent to the Python engine, and add a
schema contract test that diffs Zod against the Pydantic JSON schema dumped
by `python -m semantic_layer dump-schema`. `SourceDefinition` is now
`extra="forbid"` on the Python side.
`loadAllSources` surfaces per-file load errors instead of swallowing them,
so validation/query paths can report manifest shard parse failures.
* fix(context): make scan description generation resilient and quiet
A transient sampleTable failure during ingest used to take out every
table in a connection: generateTableDescription returned a hardcoded
'Table not found' string into descriptions.ai, and KtxDescriptionGenerator
was constructed without a logger, so the failure left no trail anywhere.
- sampleTable / sampleColumn calls retry 3x with 200/400/800ms backoff,
honouring KtxScanContext.signal via a new KtxAbortedError.
- On retry exhaustion or missing capability, table generation falls back
to a metadata-only prompt built from column name / native type / comment
/ rawDescriptions. The column path follows the same rule -- call the
LLM when any of samples or rawDescriptions are available; skip only
when both are absent.
- Logger is now threaded from KtxScanContext into the generator. Failures
emit structured KtxScanWarning entries (new description_fallback_used
code, plus existing sampling_failed / enrichment_failed /
connector_capability_missing). ktx scan groups warnings by code so a
batch of identical failures collapses to one summary line plus sample.
- Returns null on failure instead of the 'Table not found' sentinel; the
manifest writer's existing guard already skips empty descriptions, so
schema YAML no longer carries misleading text. SCAN_MANAGED_DESCRIPTION_KEYS
already strips stale 'ai' on merge, so existing YAML clears on next run.
Also suppress AI SDK v6 'system in messages' warning: pull system messages
out of KtxMessageBuilder.wrapSimple's output via a new splitKtxSystemMessages
helper and pass them top-level to generateText (preserves cacheControl
providerOptions on the SystemModelMessage). Agent-runner's local
splitSystemPromptMessages dedupes onto the shared helper.
* test(docs): align examples-docs assertions with revamped docs
PR #103 (setup/guide doc revamp) reworded several CLI examples and
connection labels; the assertions in scripts/examples-docs.test.mjs
still referenced the pre-revamp wording and were failing in CI on main.
Update the regexes to match the post-revamp content:
- drop the `--json` flag from the sl-query example expectation
- move the `Driver:` / `Status: ok` probe to the connection reference,
which is where that output now lives (driver id is lowercase
`postgres`, not the display name `PostgreSQL`)
- drop the obsolete `Install \`uv\`...` troubleshooting line
- accept `<connectionId>` everywhere; the docs no longer use the
hyphenated `<connection-id>` form
- match the `warehouse` connection id used in the quickstart instead of
the `postgres-warehouse` id only used in the README and setup ref
* fix(sl): skip TS/Python schema contract test when uv is unavailable
The TypeScript checks CI job does not install uv or Python, so the
module-level `execFileSync('uv', ...)` in schemas.contract.test.ts threw
ENOENT and failed the suite. Wrap the schema dump in a try/catch and
guard the describe block with `describe.skipIf` so the test skips in
environments without uv. Local dev and any CI job that has uv on PATH
still runs the cross-language contract assertion.
2026-05-15 02:11:04 +02:00
|
|
|
from pydantic import BaseModel, ConfigDict, Field, model_validator
|
2026-05-10 23:12:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── Source Definition Models ──────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ColumnVisibility(str, Enum):
|
|
|
|
|
PUBLIC = "public"
|
|
|
|
|
INTERNAL = "internal"
|
|
|
|
|
HIDDEN = "hidden"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ColumnRole(str, Enum):
|
|
|
|
|
TIME = "time"
|
|
|
|
|
DEFAULT = "default"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ColumnDbtConstraints(BaseModel):
|
|
|
|
|
not_null: bool | None = None
|
|
|
|
|
unique: bool | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DbtDataTestRef(BaseModel):
|
|
|
|
|
name: str
|
|
|
|
|
package: str
|
|
|
|
|
kwargs: dict[str, Any] | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SourceColumnTests(BaseModel):
|
|
|
|
|
dbt: list[DbtDataTestRef] | None = None
|
|
|
|
|
dbt_by_package: dict[str, list[str]] | None = None
|
|
|
|
|
|
|
|
|
|
|
2026-05-11 00:31:15 -07:00
|
|
|
_DEFAULT_DESCRIPTION_PRIORITY = ["user", "ai", "dbt", "db"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _resolve_description_map(descriptions: dict[str, str] | None) -> str | None:
|
|
|
|
|
if not descriptions:
|
|
|
|
|
return None
|
|
|
|
|
for source in _DEFAULT_DESCRIPTION_PRIORITY:
|
|
|
|
|
text = descriptions.get(source)
|
|
|
|
|
if text:
|
|
|
|
|
return text
|
|
|
|
|
for text in descriptions.values():
|
|
|
|
|
if text:
|
|
|
|
|
return text
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
2026-05-10 23:12:26 +02:00
|
|
|
class FreshnessDbt(BaseModel):
|
|
|
|
|
raw: Any | None = None
|
|
|
|
|
loaded_at_field: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SourceColumn(BaseModel):
|
|
|
|
|
name: str
|
|
|
|
|
type: Literal["string", "number", "time", "boolean"]
|
|
|
|
|
visibility: ColumnVisibility = ColumnVisibility.PUBLIC
|
|
|
|
|
role: ColumnRole = ColumnRole.DEFAULT
|
|
|
|
|
description: str | None = None
|
2026-05-11 00:31:15 -07:00
|
|
|
descriptions: dict[str, str] | None = None
|
2026-05-10 23:12:26 +02:00
|
|
|
expr: str | None = None
|
|
|
|
|
natural_granularity: str | None = None
|
|
|
|
|
constraints: dict[str, ColumnDbtConstraints] | None = None
|
|
|
|
|
enum_values: dict[str, list[str]] | None = None
|
|
|
|
|
tests: SourceColumnTests | None = None
|
|
|
|
|
|
2026-05-11 00:31:15 -07:00
|
|
|
@model_validator(mode="after")
|
|
|
|
|
def resolve_description(self) -> SourceColumn:
|
|
|
|
|
if self.description is None:
|
|
|
|
|
self.description = _resolve_description_map(self.descriptions)
|
|
|
|
|
return self
|
|
|
|
|
|
2026-05-10 23:12:26 +02:00
|
|
|
|
|
|
|
|
class JoinDeclaration(BaseModel):
|
|
|
|
|
to: str
|
|
|
|
|
on: str # e.g. "customer_id = customers.id"
|
|
|
|
|
relationship: Literal["many_to_one", "one_to_many", "one_to_one"]
|
|
|
|
|
alias: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MeasureDefinition(BaseModel):
|
|
|
|
|
name: str
|
|
|
|
|
expr: str # e.g. "sum(amount)"
|
|
|
|
|
filter: str | None = None # e.g. "status != 'refunded'"
|
|
|
|
|
segments: list[str] = [] # bare segment names defined on the measure's own source
|
|
|
|
|
description: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Segment(BaseModel):
|
|
|
|
|
"""A named, reusable boolean predicate scoped to a single source."""
|
|
|
|
|
|
|
|
|
|
name: str
|
|
|
|
|
expr: str # e.g. "is_paid = true and is_refunded = '0'"
|
|
|
|
|
description: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DefaultTimeDimensionDbt(BaseModel):
|
|
|
|
|
dbt: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SourceDefinition(BaseModel):
|
fix(context): merge overlay columns onto manifest columns by name (#94)
* fix(context): merge overlay columns onto manifest columns by name
composeOverlay was appending overlay columns to the manifest column list,
producing duplicate entries when dbt/metabase overlays declared a column
just to attach descriptions. The duplicates carried no `type`, so the
pydantic SourceDefinition rejected them at semantic-query time and broke
`ktx sl query` for every overlay-backed measure. Now overlay columns
match base columns by name (case-insensitive): same-name entries merge
onto the manifest (overlay fields win, type/role fall back to the base,
descriptions merge per source key) and only new names append.
* refactor(sl): split overlay columns from column_overrides and enforce TS/Python wire contract
Overlay sources now have two distinct collections: `columns:` for computed
columns (requiring `expr` + `type`) and `column_overrides:` for metadata
patches to inherited manifest columns. Composing or loading an overlay that
mixes the two — or references an unknown column — fails with a typed error.
Introduce `ResolvedSemanticLayerSource` / `resolvedSourceSchema` /
`toResolvedWire` as the strict shape sent to the Python engine, and add a
schema contract test that diffs Zod against the Pydantic JSON schema dumped
by `python -m semantic_layer dump-schema`. `SourceDefinition` is now
`extra="forbid"` on the Python side.
`loadAllSources` surfaces per-file load errors instead of swallowing them,
so validation/query paths can report manifest shard parse failures.
* fix(context): make scan description generation resilient and quiet
A transient sampleTable failure during ingest used to take out every
table in a connection: generateTableDescription returned a hardcoded
'Table not found' string into descriptions.ai, and KtxDescriptionGenerator
was constructed without a logger, so the failure left no trail anywhere.
- sampleTable / sampleColumn calls retry 3x with 200/400/800ms backoff,
honouring KtxScanContext.signal via a new KtxAbortedError.
- On retry exhaustion or missing capability, table generation falls back
to a metadata-only prompt built from column name / native type / comment
/ rawDescriptions. The column path follows the same rule -- call the
LLM when any of samples or rawDescriptions are available; skip only
when both are absent.
- Logger is now threaded from KtxScanContext into the generator. Failures
emit structured KtxScanWarning entries (new description_fallback_used
code, plus existing sampling_failed / enrichment_failed /
connector_capability_missing). ktx scan groups warnings by code so a
batch of identical failures collapses to one summary line plus sample.
- Returns null on failure instead of the 'Table not found' sentinel; the
manifest writer's existing guard already skips empty descriptions, so
schema YAML no longer carries misleading text. SCAN_MANAGED_DESCRIPTION_KEYS
already strips stale 'ai' on merge, so existing YAML clears on next run.
Also suppress AI SDK v6 'system in messages' warning: pull system messages
out of KtxMessageBuilder.wrapSimple's output via a new splitKtxSystemMessages
helper and pass them top-level to generateText (preserves cacheControl
providerOptions on the SystemModelMessage). Agent-runner's local
splitSystemPromptMessages dedupes onto the shared helper.
* test(docs): align examples-docs assertions with revamped docs
PR #103 (setup/guide doc revamp) reworded several CLI examples and
connection labels; the assertions in scripts/examples-docs.test.mjs
still referenced the pre-revamp wording and were failing in CI on main.
Update the regexes to match the post-revamp content:
- drop the `--json` flag from the sl-query example expectation
- move the `Driver:` / `Status: ok` probe to the connection reference,
which is where that output now lives (driver id is lowercase
`postgres`, not the display name `PostgreSQL`)
- drop the obsolete `Install \`uv\`...` troubleshooting line
- accept `<connectionId>` everywhere; the docs no longer use the
hyphenated `<connection-id>` form
- match the `warehouse` connection id used in the quickstart instead of
the `postgres-warehouse` id only used in the README and setup ref
* fix(sl): skip TS/Python schema contract test when uv is unavailable
The TypeScript checks CI job does not install uv or Python, so the
module-level `execFileSync('uv', ...)` in schemas.contract.test.ts threw
ENOENT and failed the suite. Wrap the schema dump in a try/catch and
guard the describe block with `describe.skipIf` so the test skips in
environments without uv. Local dev and any CI job that has uv on PATH
still runs the cross-language contract assertion.
2026-05-15 02:11:04 +02:00
|
|
|
model_config = ConfigDict(extra="forbid")
|
|
|
|
|
|
2026-05-10 23:12:26 +02:00
|
|
|
name: str
|
|
|
|
|
description: str | None = None
|
2026-05-11 00:31:15 -07:00
|
|
|
descriptions: dict[str, str] | None = None
|
2026-05-10 23:12:26 +02:00
|
|
|
table: str | None = None
|
|
|
|
|
sql: str | None = None
|
|
|
|
|
grain: list[str]
|
|
|
|
|
columns: list[SourceColumn]
|
|
|
|
|
joins: list[JoinDeclaration] = []
|
|
|
|
|
measures: list[MeasureDefinition] = []
|
|
|
|
|
segments: list[Segment] = []
|
|
|
|
|
default_time_dimension: DefaultTimeDimensionDbt | None = None
|
|
|
|
|
tags: dict[str, list[str]] | None = None
|
|
|
|
|
freshness: dict[str, FreshnessDbt] | None = None
|
|
|
|
|
|
|
|
|
|
@model_validator(mode="after")
|
|
|
|
|
def validate_source(self) -> SourceDefinition:
|
2026-05-11 00:31:15 -07:00
|
|
|
if self.description is None:
|
|
|
|
|
self.description = _resolve_description_map(self.descriptions)
|
fix(context): merge overlay columns onto manifest columns by name (#94)
* fix(context): merge overlay columns onto manifest columns by name
composeOverlay was appending overlay columns to the manifest column list,
producing duplicate entries when dbt/metabase overlays declared a column
just to attach descriptions. The duplicates carried no `type`, so the
pydantic SourceDefinition rejected them at semantic-query time and broke
`ktx sl query` for every overlay-backed measure. Now overlay columns
match base columns by name (case-insensitive): same-name entries merge
onto the manifest (overlay fields win, type/role fall back to the base,
descriptions merge per source key) and only new names append.
* refactor(sl): split overlay columns from column_overrides and enforce TS/Python wire contract
Overlay sources now have two distinct collections: `columns:` for computed
columns (requiring `expr` + `type`) and `column_overrides:` for metadata
patches to inherited manifest columns. Composing or loading an overlay that
mixes the two — or references an unknown column — fails with a typed error.
Introduce `ResolvedSemanticLayerSource` / `resolvedSourceSchema` /
`toResolvedWire` as the strict shape sent to the Python engine, and add a
schema contract test that diffs Zod against the Pydantic JSON schema dumped
by `python -m semantic_layer dump-schema`. `SourceDefinition` is now
`extra="forbid"` on the Python side.
`loadAllSources` surfaces per-file load errors instead of swallowing them,
so validation/query paths can report manifest shard parse failures.
* fix(context): make scan description generation resilient and quiet
A transient sampleTable failure during ingest used to take out every
table in a connection: generateTableDescription returned a hardcoded
'Table not found' string into descriptions.ai, and KtxDescriptionGenerator
was constructed without a logger, so the failure left no trail anywhere.
- sampleTable / sampleColumn calls retry 3x with 200/400/800ms backoff,
honouring KtxScanContext.signal via a new KtxAbortedError.
- On retry exhaustion or missing capability, table generation falls back
to a metadata-only prompt built from column name / native type / comment
/ rawDescriptions. The column path follows the same rule -- call the
LLM when any of samples or rawDescriptions are available; skip only
when both are absent.
- Logger is now threaded from KtxScanContext into the generator. Failures
emit structured KtxScanWarning entries (new description_fallback_used
code, plus existing sampling_failed / enrichment_failed /
connector_capability_missing). ktx scan groups warnings by code so a
batch of identical failures collapses to one summary line plus sample.
- Returns null on failure instead of the 'Table not found' sentinel; the
manifest writer's existing guard already skips empty descriptions, so
schema YAML no longer carries misleading text. SCAN_MANAGED_DESCRIPTION_KEYS
already strips stale 'ai' on merge, so existing YAML clears on next run.
Also suppress AI SDK v6 'system in messages' warning: pull system messages
out of KtxMessageBuilder.wrapSimple's output via a new splitKtxSystemMessages
helper and pass them top-level to generateText (preserves cacheControl
providerOptions on the SystemModelMessage). Agent-runner's local
splitSystemPromptMessages dedupes onto the shared helper.
* test(docs): align examples-docs assertions with revamped docs
PR #103 (setup/guide doc revamp) reworded several CLI examples and
connection labels; the assertions in scripts/examples-docs.test.mjs
still referenced the pre-revamp wording and were failing in CI on main.
Update the regexes to match the post-revamp content:
- drop the `--json` flag from the sl-query example expectation
- move the `Driver:` / `Status: ok` probe to the connection reference,
which is where that output now lives (driver id is lowercase
`postgres`, not the display name `PostgreSQL`)
- drop the obsolete `Install \`uv\`...` troubleshooting line
- accept `<connectionId>` everywhere; the docs no longer use the
hyphenated `<connection-id>` form
- match the `warehouse` connection id used in the quickstart instead of
the `postgres-warehouse` id only used in the README and setup ref
* fix(sl): skip TS/Python schema contract test when uv is unavailable
The TypeScript checks CI job does not install uv or Python, so the
module-level `execFileSync('uv', ...)` in schemas.contract.test.ts threw
ENOENT and failed the suite. Wrap the schema dump in a try/catch and
guard the describe block with `describe.skipIf` so the test skips in
environments without uv. Local dev and any CI job that has uv on PATH
still runs the cross-language contract assertion.
2026-05-15 02:11:04 +02:00
|
|
|
if not self.table and not self.sql:
|
|
|
|
|
raise ValueError("resolved source must have 'table' or 'sql'")
|
2026-05-10 23:12:26 +02:00
|
|
|
if self.table and self.sql:
|
|
|
|
|
raise ValueError("'table' and 'sql' are mutually exclusive")
|
|
|
|
|
if not self.grain:
|
|
|
|
|
raise ValueError("grain must be non-empty")
|
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def is_sql_source(self) -> bool:
|
|
|
|
|
return self.sql is not None
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def is_table_source(self) -> bool:
|
|
|
|
|
return self.table is not None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── Query Models ──────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QueryMeasure(BaseModel):
|
|
|
|
|
"""Either a pre-defined name ('orders.revenue') or runtime expr."""
|
|
|
|
|
|
|
|
|
|
ref: str | None = None
|
|
|
|
|
expr: str | None = None
|
|
|
|
|
name: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QueryDimension(BaseModel):
|
|
|
|
|
"""Either a column ref or a time granularity."""
|
|
|
|
|
|
|
|
|
|
field: str
|
|
|
|
|
granularity: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SemanticQuery(BaseModel):
|
|
|
|
|
measures: list[str | dict[str, Any]]
|
|
|
|
|
dimensions: list[str | dict[str, Any]] = []
|
|
|
|
|
filters: list[str] = []
|
|
|
|
|
# dotted "source.segment" names; AND-ed into matching measures
|
|
|
|
|
segments: list[str] = []
|
|
|
|
|
order_by: list[str | dict[str, Any]] = []
|
|
|
|
|
limit: int = 1000
|
|
|
|
|
include_empty: bool = True
|
|
|
|
|
|
|
|
|
|
@model_validator(mode="after")
|
|
|
|
|
def _validate_limit(self) -> SemanticQuery:
|
|
|
|
|
if self.limit is not None and self.limit < 0:
|
|
|
|
|
raise ValueError(f"limit must be non-negative, got {self.limit}")
|
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── Plan & Result Models ──────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Provenance(str, Enum):
|
|
|
|
|
VERIFIED = "verified"
|
|
|
|
|
COMPOSED = "composed"
|
|
|
|
|
DIMENSION = "dimension"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResolvedColumn(BaseModel):
|
|
|
|
|
name: str
|
|
|
|
|
provenance: Provenance
|
|
|
|
|
expr: str | None = None
|
|
|
|
|
description: str | None = None
|
|
|
|
|
granularity: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResolvedMeasure(BaseModel):
|
|
|
|
|
name: str
|
|
|
|
|
expr: str # the aggregate expression, e.g. "sum(amount)"
|
|
|
|
|
source_name: str
|
|
|
|
|
original_name: str | None = None
|
|
|
|
|
qualified_ref: str | None = None
|
|
|
|
|
filter: str | None = None
|
|
|
|
|
provenance: Provenance = Provenance.COMPOSED
|
|
|
|
|
is_derived: bool = False
|
|
|
|
|
depends_on: list[str] = [] # names of other measures this depends on
|
|
|
|
|
description: str | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MeasureGroup(BaseModel):
|
|
|
|
|
"""A group of measures from the same source, for aggregate locality."""
|
|
|
|
|
|
|
|
|
|
source_name: str
|
|
|
|
|
measures: list[ResolvedMeasure]
|
|
|
|
|
join_path_to_dims: list[str] = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResolvedJoin(BaseModel):
|
|
|
|
|
from_source: str
|
|
|
|
|
to_source: str
|
|
|
|
|
from_column: str
|
|
|
|
|
to_column: str
|
|
|
|
|
relationship: str
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class OrderByClause(BaseModel):
|
|
|
|
|
field: str
|
|
|
|
|
direction: str = "asc"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ResolvedPlan(BaseModel):
|
|
|
|
|
sources_used: list[str]
|
|
|
|
|
join_paths: list[str] # human-readable descriptions
|
|
|
|
|
joins: list[ResolvedJoin] = [] # structured join info for generator
|
|
|
|
|
anchor_source: str | None = None # the primary FROM source
|
|
|
|
|
anchor_grain: list[str]
|
|
|
|
|
fan_out_description: str
|
|
|
|
|
has_fan_out: bool = False
|
|
|
|
|
measure_groups: list[MeasureGroup] = []
|
|
|
|
|
aggregate_locality: list[str] # human-readable CTE descriptions
|
|
|
|
|
where_filters: list[str]
|
|
|
|
|
having_filters: list[str]
|
|
|
|
|
columns: list[ResolvedColumn]
|
|
|
|
|
measures: list[ResolvedMeasure] = []
|
|
|
|
|
dimensions: list[QueryDimension] = []
|
|
|
|
|
order_by: list[OrderByClause] = []
|
|
|
|
|
limit: int | None = None
|
|
|
|
|
include_empty: bool = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QueryResult(BaseModel):
|
|
|
|
|
resolved_plan: ResolvedPlan
|
|
|
|
|
sql: str
|
|
|
|
|
dialect: str
|
|
|
|
|
columns: list[ResolvedColumn]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ValidationReport(BaseModel):
|
|
|
|
|
errors: list[str] = Field(default_factory=list)
|
|
|
|
|
warnings: list[str] = Field(default_factory=list)
|
|
|
|
|
per_source_warnings: dict[str, list[str]] = Field(default_factory=dict)
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def valid(self) -> bool:
|
|
|
|
|
return len(self.errors) == 0
|