We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc5c1a8 commit 32b8fc8Copy full SHA for 32b8fc8
2 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
## dbt-databricks 1.6.x (Release TBD)
2
3
+## dbt-databricks 1.6.1 (August 2, 2023)
4
+
5
+### Fixes
6
7
+- Revert change from #326 as it breaks DESCRIBE table in cases where the dbt API key does not have access to all tables in the schema
8
9
## dbt-databricks 1.6.0 (August 2, 2023)
10
11
### Features
dbt/adapters/databricks/impl.py
@@ -452,7 +452,7 @@ def _get_one_catalog(
452
schema_relation = self.Relation.create(
453
database=database,
454
schema=schema,
455
- identifier=("|".join(table_names) if len("|".join(table_names)) < 2048 else "*"),
+ identifier="|".join(table_names),
456
quote_policy=self.config.quoting,
457
)
458
for relation, information in self._list_relations_with_information(schema_relation):
0 commit comments