dbt-clickhouse icon indicating copy to clipboard operation
dbt-clickhouse copied to clipboard

The Clickhouse plugin for dbt (data build tool)

Results 96 dbt-clickhouse issues
Sort by recently updated
recently updated
newest added

### Describe the bug For some reason, the tests' schemas are not being deleted when running with ClickHouse cloud.. ### Expected behavior The schema is supposed to be cleaned properly....

bug

**Is your feature request related to a problem? Please describe.** This issue does not fix a problem. **Describe the solution you'd like** I would like to use dbt to run...

enhancement

### Describe the bug Testing [v1.7.7 Community PRs](https://github.com/ClickHouse/dbt-clickhouse/releases/tag/v1.7.7) exacly: allows to add a comment in table's or view's metadata by @dstsimokha in https://github.com/ClickHouse/dbt-clickhouse/pull/228 We've found, that generated ALTER TABLE SQL...

bug

**Is your feature request related to a problem? Please describe.** I'm trying to store some sensitive variables like storage account credentials in the dbt profile, and then use them in...

enhancement

**Is your feature request related to a problem? Please describe.** invalidate_hard_deletes=True for snapshots not working with CH because of its default non-nullable column **Describe the solution you'd like** dbt general...

enhancement

**Is your feature request related to a problem? Please describe.** 'temporary' tables such as the 'new data' table (e.g. `my_table__dbt_new_data_` ), can clutter the main databases causing confusion to users....

enhancement

CH MVs are insert triggers on the source table. It is possible to setup two or more MVs that write their records to a single table. from what I can...

enhancement

**Is your feature request related to a problem? Please describe.** Currently snapshots are created without a primary key and sort key -- the snapshot config does not respect `order_by` or...

enhancement

Subsequence run incremental model with on cluster seems not work currently. (try to use `delete+insert` and `default`) First run work fine when incremental model create Replicated* table (and table materialization...

bug

### Describe the bug ### Steps to reproduce 1. Use the following model ```sql {{ config(order_by='old_customer_id') }} SELECT a .number as old_customer_id, b.number FROM system.numbers a LEFT JOIN ( SELECT...

bug