sqlmesh
sqlmesh copied to clipboard
Efficient data transformation and modeling framework that is backwards compatible with dbt.
This is to fix #5546. After the fix, EMBEDDED model will reject any audit in model definition.
Hi team, While reviewing the codebase, I noticed that for the BigQuery engine adapter, the `MAX_TABLE_COMMENT_LENGTH` is [set to 1024 characters](https://github.com/TobikoData/sqlmesh/blob/a99bfaa97135b6139aa9ab5e2e753c28d770c9da/sqlmesh/core/engine_adapter/bigquery.py#L74): ```python MAX_TABLE_COMMENT_LENGTH = 1024 ``` However, according to the...
I referred to the cases in the `tests` directory and tried to achieve the same result using the command line, but it still didn’t work. Any help would be greatly...
In my project, I use a lot of `INCREMENTAL_BY_PARTITION` kind models. Note: This model type is **not compatible** with the `forward_only FALSE` option, despite the documentation saying this option is...
Add support for a BigQuery reservation to be specified. This allows users to optionally direct the SQLMesh jobs to a particular BigQuery compute reservation. This is needed for workload management,...
https://tobiko-data.slack.com/archives/C044BRE5W4S/p1758688241595459 Hi, Opening an issue as discussed in the slack thread above. My sqlmesh project has py spark models and uses databricks connect to be able to plan using the...
Bumps [elkjs](https://github.com/kieler/elkjs) from 0.8.2 to 0.11.0. Release notes Sourced from elkjs's releases. 0.11.0 Based on ELK 0.11.0 For changes and fixed issues see the release notes. Full Changelog: https://github.com/kieler/elkjs/compare/0.10.2...0.11.0 0.10.2...
# Problem Changed formatting of the query of parent model causes child model to be classified as indirectly modified. Depending on the model kind this may cause unnecessary backfilling of...
When a column type change is recognised by sqlmesh, it runs a command like this in the database `/* SQLMESH_PLAN: 12345asdf */ ALTER TABLE "my_catalog"."my_schema"."my_schema__my_table__12345678" ALTER COLUMN "my_column" TYPE VARCHAR(355)`...
### Description Models defined with `kind EMBEDDED` are purely virtual and are designed to be in-lined as CTEs into downstream models. They should never be materialized into a physical table....