Validates the underlying data source. Args: config: Configuration object used to configure a feature store. data_source: DataSource object that needs to be validated
(
self,
config: RepoConfig,
data_source: DataSource,
)
| 498 | |
| 499 | @abstractmethod |
| 500 | def validate_data_source( |
| 501 | self, |
| 502 | config: RepoConfig, |
| 503 | data_source: DataSource, |
| 504 | ): |
| 505 | """ |
| 506 | Validates the underlying data source. |
| 507 | |
| 508 | Args: |
| 509 | config: Configuration object used to configure a feature store. |
| 510 | data_source: DataSource object that needs to be validated |
| 511 | """ |
| 512 | pass |
| 513 | |
| 514 | @abstractmethod |
| 515 | def get_table_column_names_and_types_from_data_source( |
no outgoing calls
no test coverage detected