MCPcopy Create free account
hub / github.com/feast-dev/feast / _get_saved_dataset

Method _get_saved_dataset

sdk/python/feast/infra/registry/sql.py:549–559  ·  view source on GitHub ↗
(self, name: str, project: str)

Source from the content-addressed store, hash-verified

547 )
548
549 def _get_saved_dataset(self, name: str, project: str) -> SavedDataset:
550 return self._get_object(
551 table=saved_datasets,
552 name=name,
553 project=project,
554 proto_class=SavedDatasetProto,
555 python_class=SavedDataset,
556 id_field_name="saved_dataset_name",
557 proto_field_name="saved_dataset_proto",
558 not_found_exception=SavedDatasetNotFound,
559 )
560
561 def _get_validation_reference(self, name: str, project: str) -> ValidationReference:
562 return self._get_object(

Callers

nothing calls this directly

Calls 1

_get_objectMethod · 0.95

Tested by

no test coverage detected