Skip to content

Commit 32b8fc8

Browse files
author
Jesse Whitehouse
committed
Revert #326
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
1 parent cc5c1a8 commit 32b8fc8

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## dbt-databricks 1.6.x (Release TBD)
22

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+
39
## dbt-databricks 1.6.0 (August 2, 2023)
410

511
### Features

dbt/adapters/databricks/impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def _get_one_catalog(
452452
schema_relation = self.Relation.create(
453453
database=database,
454454
schema=schema,
455-
identifier=("|".join(table_names) if len("|".join(table_names)) < 2048 else "*"),
455+
identifier="|".join(table_names),
456456
quote_policy=self.config.quoting,
457457
)
458458
for relation, information in self._list_relations_with_information(schema_relation):

0 commit comments

Comments
 (0)