Skip to content

Commit 0e3ee8e

Browse files
authored
Merge branch 'master' into dremio-space-source-filters
2 parents d193651 + ea9eaf4 commit 0e3ee8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_query.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def tables_for_database(db_name: Optional[str]) -> str:
132132
auto_clustering_on AS "AUTO_CLUSTERING_ON"
133133
FROM {db_clause}information_schema.tables t
134134
WHERE table_schema != 'INFORMATION_SCHEMA'
135-
and table_type in ( 'BASE TABLE', 'EXTERNAL TABLE')
135+
and table_type in ( 'BASE TABLE', 'EXTERNAL TABLE', 'HYBRID TABLE')
136136
order by table_schema, table_name"""
137137

138138
@staticmethod
@@ -152,7 +152,7 @@ def tables_for_schema(schema_name: str, db_name: Optional[str]) -> str:
152152
auto_clustering_on AS "AUTO_CLUSTERING_ON"
153153
FROM {db_clause}information_schema.tables t
154154
where table_schema='{schema_name}'
155-
and table_type in ('BASE TABLE', 'EXTERNAL TABLE')
155+
and table_type in ('BASE TABLE', 'EXTERNAL TABLE', 'HYBRID TABLE')
156156
order by table_schema, table_name"""
157157

158158
@staticmethod

0 commit comments

Comments
 (0)