Returns True if plan and _apply_diffs should be used, False otherwise.
(self)
| 892 | return self.registry.delete_feature_service(name, self.project) |
| 893 | |
| 894 | def _should_use_plan(self): |
| 895 | """Returns True if plan and _apply_diffs should be used, False otherwise.""" |
| 896 | # Currently only the local provider with sqlite online store supports plan and _apply_diffs. |
| 897 | return self.config.provider == "local" and ( |
| 898 | self.config.online_store and self.config.online_store.type == "sqlite" |
| 899 | ) |
| 900 | |
| 901 | def _validate_all_feature_views( |
| 902 | self, |
no outgoing calls
no test coverage detected