diff --git a/ingestion/src/metadata/profiler/orm/functions/table_metric_computer.py b/ingestion/src/metadata/profiler/orm/functions/table_metric_computer.py index 5566600c61d..9284b726424 100644 --- a/ingestion/src/metadata/profiler/orm/functions/table_metric_computer.py +++ b/ingestion/src/metadata/profiler/orm/functions/table_metric_computer.py @@ -412,7 +412,7 @@ class RedshiftTableMetricComputer(BaseTableMetricComputer): ) res = self.runner._session.execute(query).first() if not res: - return None + return super().compute() if res.rowCount is None or ( res.rowCount == 0 and self._entity.tableType == TableType.View ):