| 384 | } |
| 385 | |
| 386 | Status Array::open( |
| 387 | QueryType query_type, |
| 388 | EncryptionType encryption_type, |
| 389 | const void* encryption_key, |
| 390 | uint32_t key_length) { |
| 391 | return Array::open( |
| 392 | query_type, |
| 393 | array_dir_timestamp_start_, |
| 394 | user_set_timestamp_end_.value_or(UINT64_MAX), |
| 395 | encryption_type, |
| 396 | encryption_key, |
| 397 | key_length); |
| 398 | } |
| 399 | |
| 400 | Status Array::open( |
| 401 | QueryType query_type, |