| 53 | |
| 54 | template <typename Definition, typename Configuration, bool is_data_lake> |
| 55 | ObjectStoragePtr TableFunctionObjectStorage<Definition, Configuration, is_data_lake>::getObjectStorage(const ContextPtr & context, bool create_readonly) const |
| 56 | { |
| 57 | if (!object_storage) |
| 58 | object_storage = configuration->createObjectStorage(context, create_readonly, std::nullopt); |
| 59 | return object_storage; |
| 60 | } |
| 61 | |
| 62 | template <typename Definition, typename Configuration, bool is_data_lake> |
| 63 | StorageObjectStorageConfigurationPtr TableFunctionObjectStorage<Definition, Configuration, is_data_lake>::getConfiguration(ContextPtr context) const |
no test coverage detected