dbt-dry-run icon indicating copy to clipboard operation
dbt-dry-run copied to clipboard

Dry run capability for dbt projects using BigQuery

Results 7 dbt-dry-run issues
Sort by recently updated
recently updated
newest added

Version constraints on `dbt-dry-run` are incompatible with latest version(s) of typer (now at 0.12.1): ``` Because no versions of dbt-dry-run match >0.7.5,=0.6.1,=0.7.5,=0.6.1,

prioritised

Hey, I know in your README you say: > It is best practice to compile the entire dbt project when supplying a manifest for dry run. And, I get the...

enhancement
question

# Description This PR integrates the parser [sqlglot](https://github.com/tobymao/sqlglot) into the dry runner to transform dbt models and insert select literals Using a parser could be quite risky because the dry...

I've encountered an issue where `dbt-dry-run` fails to recognize the partitions defined in a YAML configuration for a BigQuery table. Despite the correct specification of partitions under the `dbt-external-tables` setup,...

bug

# Description This update makes changes to how we handle partitions in our project. Here's what's new: * We've added a partitions list in the ExternalConfig class. It's for keeping...

Take the model ``` SELECT field1 , table1.field2 , field3 FROM table1 ``` Since the reference to `table1` is being replaced by `(SELECT "some string" as field2, 42 as field2...

bug
help wanted

**Context** The dry runner does not evaluate whether post and pre hooks are valid syntax. Adding this should be fairly easy, we just need to load the pre and post...