|
29 | 29 | from sqlmesh.core.environment import EnvironmentNamingInfo |
30 | 30 | from sqlmesh.core.linter.rule import RuleViolation |
31 | 31 | from sqlmesh.core.model import Model |
32 | | -from sqlmesh.core.model.definition import AuditResult |
33 | 32 | from sqlmesh.core.snapshot import ( |
34 | 33 | Snapshot, |
35 | 34 | SnapshotChangeCategory, |
@@ -94,12 +93,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
94 | 93 | def stop_plan_evaluation(self) -> None: |
95 | 94 | """Indicates that the evaluation has ended.""" |
96 | 95 |
|
97 | | - @abc.abstractmethod |
98 | | - def store_evaluation_audit_results( |
99 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
100 | | - ) -> None: |
101 | | - """Stores the audit results for the snapshot evaluation.""" |
102 | | - |
103 | 96 | @abc.abstractmethod |
104 | 97 | def start_evaluation_progress( |
105 | 98 | self, |
@@ -357,11 +350,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
357 | 350 | def stop_plan_evaluation(self) -> None: |
358 | 351 | pass |
359 | 352 |
|
360 | | - def store_evaluation_audit_results( |
361 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
362 | | - ) -> None: |
363 | | - pass |
364 | | - |
365 | 353 | def start_evaluation_progress( |
366 | 354 | self, |
367 | 355 | batch_sizes: t.Dict[Snapshot, int], |
@@ -611,11 +599,6 @@ def start_plan_evaluation(self, plan: EvaluatablePlan) -> None: |
611 | 599 | def stop_plan_evaluation(self) -> None: |
612 | 600 | pass |
613 | 601 |
|
614 | | - def store_evaluation_audit_results( |
615 | | - self, snapshot: Snapshot, audit_results: t.List[AuditResult] |
616 | | - ) -> None: |
617 | | - self.evaluation_audit_results[snapshot] = audit_results |
618 | | - |
619 | 602 | def start_evaluation_progress( |
620 | 603 | self, |
621 | 604 | batch_sizes: t.Dict[Snapshot, int], |
|
0 commit comments