Sets the inclusive ending timestamp when opening this array. */
| 516 | |
| 517 | /** Sets the inclusive ending timestamp when opening this array. */ |
| 518 | void set_open_timestamp_end(uint64_t timestamp_end) const { |
| 519 | auto& ctx = ctx_.get(); |
| 520 | ctx.handle_error(tiledb_array_set_open_timestamp_end( |
| 521 | ctx.ptr().get(), array_.get(), timestamp_end)); |
| 522 | } |
| 523 | |
| 524 | /** Retrieves the inclusive starting timestamp. */ |
| 525 | uint64_t open_timestamp_start() const { |
no test coverage detected