Skip to content

Commit

Permalink
Fix #19317: Add MaterializedView & DynamicTable for lineage computati…
Browse files Browse the repository at this point in the history
…on (#19373)
  • Loading branch information
ulixius9 committed Jan 28, 2025
1 parent 89fbf8f commit 44c2cdb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ingestion/src/metadata/ingestion/ometa/mixins/es_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,16 @@ def yield_es_view_def(
"bool": {
"must": [
{"term": {"service.name.keyword": service_name}},
{"term": {"tableType": TableType.View.value}},
{
"term": {
"tableType": [
TableType.View.value,
TableType.MaterializedView.value,
TableType.SecureView.value,
TableType.Dynamic.value,
]
}
},
{"term": {"deleted": False}},
{"exists": {"field": "schemaDefinition"}},
]
Expand Down

0 comments on commit 44c2cdb

Please sign in to comment.