Skip to main content
Version: devel

dlt.dataset.lineage

create_sqlglot_schema

def create_sqlglot_schema(schema_map: Dict[str, Sequence[dlt.Schema]],
dialect: TSqlGlotDialect) -> SQLGlotSchema

View source on GitHub

Create an SQLGlot schema from multiple dlt schemas grouped by dataset name.

Each key in schema_map becomes a top-level qualifier (SQL schema / catalog) that scopes all tables underneath it. Tables from multiple dlt schemas that share a dataset name are merged via Schema.unify_schemas; the first schema in each sequence is treated as the default and wins on column-level collisions.

Arguments:

  • schema_map - Mapping of dataset_name to a list of dlt schemas. The dataset name is used as the qualifying namespace in the generated SQLGlot schema.
  • dialect - SQLGlot dialect for the target destination.

compute_columns_schema

def compute_columns_schema(
expression: sge.Expression,
sqlglot_schema: SQLGlotSchema,
dialect: TSqlGlotDialect,
infer_sqlglot_schema: bool = True,
allow_anonymous_columns: bool = True,
allow_partial: bool = True
) -> Tuple[TTableSchemaColumns, Optional[sge.Query]]

View source on GitHub

Compute the expected dlt columns schema for the output of an SQL SELECT query. No case-folding or quoting is performed on the query.

Arguments:

  • infer_sqlglot_schema bool - If False, all columns and tables referenced must be derived from the SQLGlot schema. If True, allow columns and tables not found in SQLGlot schema

  • allow_anonymous_columns bool - If False, all columns in final selection must have an explicit name or alias. If True, the name of columns from the final selection can be generated by the dialect

  • allow_partial bool - If False, raise exceptions if the schema returned is incomplete. If True, this function always returns a dictionary, even in cases of SQL parsing errors, missing table reference, unresolved SELECT *, etc.

  • Returns - tuple of dlt columns schema and qualified sql_query

This demo works on codespaces. Codespaces is a development environment available for free to anyone with a Github account. You'll be asked to fork the demo repository and from there the README guides you with further steps.
The demo uses the Continue VSCode extension.

Off to codespaces!

DHelp

Ask a question

Welcome to "Codex Central", your next-gen help center, driven by OpenAI's GPT-4 model. It's more than just a forum or a FAQ hub – it's a dynamic knowledge base where coders can find AI-assisted solutions to their pressing problems. With GPT-4's powerful comprehension and predictive abilities, Codex Central provides instantaneous issue resolution, insightful debugging, and personalized guidance. Get your code running smoothly with the unparalleled support at Codex Central - coding help reimagined with AI prowess.