| 266 | |
| 267 | template <class T> |
| 268 | shared_ptr<Array> CurrentDomainFx<T>::get_array(QueryType type) { |
| 269 | auto array = make_shared<Array>(HERE(), ctx_.resources(), uri_); |
| 270 | throw_if_not_ok(array->open(type, EncryptionType::NO_ENCRYPTION, nullptr, 0)); |
| 271 | return array; |
| 272 | } |
| 273 | |
| 274 | template <class T> |
| 275 | shared_ptr<ArrayDirectory> CurrentDomainFx<T>::get_array_directory() { |
no test coverage detected