(self, command: dict)
| 525 | return data_source |
| 526 | |
| 527 | def validate_data_source(self, command: dict): |
| 528 | data_source = OfflineServer._extract_data_source_from_command(command) |
| 529 | logger.debug(f"Validating data source {data_source.name}") |
| 530 | assert_permissions(data_source, actions=[AuthzedAction.READ_OFFLINE]) |
| 531 | |
| 532 | self.offline_store.validate_data_source( |
| 533 | config=self.store.config, |
| 534 | data_source=data_source, |
| 535 | ) |
| 536 | |
| 537 | def get_table_column_names_and_types_from_data_source(self, command: dict): |
| 538 | data_source = OfflineServer._extract_data_source_from_command(command) |
no test coverage detected