We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45d7dc commit fbddbfeCopy full SHA for fbddbfe
1 file changed
ingestion/src/metadata/ingestion/source/database/hive/metadata.py
@@ -161,7 +161,8 @@ def get_table_partition_details(
161
# When metastore connection is configured, self.engine is a
162
# MySQL/Postgres engine — DESCRIBE FORMATTED will fail against it.
163
# Skip partition detection in this case.
164
- if getattr(self.service_connection, "metastoreConnection", None):
+ metastore_conn = self._get_validated_metastore_connection()
165
+ if metastore_conn:
166
logger.debug(
167
"Skipping partition key detection for"
168
f" {schema_name}.{table_name}: metastoreConnection"
0 commit comments