Skip to content

Commit 344f849

Browse files
authored
Fix: add cluster clause to streaming table alter sql (#1330)
<!-- Please review our pull request review process in CONTRIBUTING.md before your proceed. --> Resolves #1329 ### Description <!--- Describe the Pull Request here --> ### Checklist - [x] I have run this code in development and it appears to resolve the stated issue - [x] This PR includes tests, or tests are not required/relevant for this PR - [x] I have updated the `CHANGELOG.md` and added information about my change to the "dbt-databricks next" section.
1 parent a871acd commit 344f849

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
### Fixes
1212

1313
- Fix catalog names with special characters (e.g., hyphens) not being quoted in `SHOW SCHEMAS` commands, causing `INVALID_IDENTIFIER` errors ([#1325](https://github.com/databricks/dbt-databricks/issues/1325))
14+
- Fix liquid clustering rendering on streaming table materialization [#1330](https://github.com/databricks/dbt-databricks/pull/1330)
1415

1516
## dbt-databricks 1.11.5 (Feb 19, 2026)
1617

dbt/include/databricks/macros/relations/streaming_table/alter.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
{% if partition_by -%}
5757
{{ get_create_sql_partition_by(partition_by) }}
5858
{%- endif %}
59+
{{ liquid_clustered_cols() }}
5960
{% if comment -%}
6061
{{ get_create_sql_comment(comment) }}
6162
{%- endif %}

0 commit comments

Comments
 (0)