|
31 | 31 | from sqlmesh.core.environment import EnvironmentNamingInfo |
32 | 32 | from sqlmesh.core.linter.rule import RuleViolation |
33 | 33 | from sqlmesh.core.model import Model |
34 | | -from sqlmesh.core.model.definition import AuditResult |
35 | 34 | from sqlmesh.core.snapshot import ( |
36 | 35 | Snapshot, |
37 | 36 | SnapshotChangeCategory, |
@@ -191,12 +190,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
191 | 190 | def stop_plan_evaluation(self) -> None: |
192 | 191 | """Indicates that the evaluation has ended.""" |
193 | 192 |
|
194 | | - @abc.abstractmethod |
195 | | - def store_evaluation_audit_results( |
196 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
197 | | - ) -> None: |
198 | | - """Stores the audit results for the snapshot evaluation.""" |
199 | | - |
200 | 193 | @abc.abstractmethod |
201 | 194 | def start_evaluation_progress( |
202 | 195 | self, |
@@ -425,11 +418,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
425 | 418 | def stop_plan_evaluation(self) -> None: |
426 | 419 | pass |
427 | 420 |
|
428 | | - def store_evaluation_audit_results( |
429 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
430 | | - ) -> None: |
431 | | - pass |
432 | | - |
433 | 421 | def start_evaluation_progress( |
434 | 422 | self, |
435 | 423 | batch_sizes: t.Dict[Snapshot, int], |
@@ -744,11 +732,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
744 | 732 | def stop_plan_evaluation(self) -> None: |
745 | 733 | pass |
746 | 734 |
|
747 | | - def store_evaluation_audit_results( |
748 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
749 | | - ) -> None: |
750 | | - self.evaluation_audit_results[snapshot] = audit_results |
751 | | - |
752 | 735 | def start_evaluation_progress( |
753 | 736 | self, |
754 | 737 | batch_sizes: t.Dict[Snapshot, int], |
|
0 commit comments