Retrieves the inclusive ending timestamp. */
| 532 | |
| 533 | /** Retrieves the inclusive ending timestamp. */ |
| 534 | uint64_t open_timestamp_end() const { |
| 535 | auto& ctx = ctx_.get(); |
| 536 | uint64_t timestamp_end; |
| 537 | ctx.handle_error(tiledb_array_get_open_timestamp_end( |
| 538 | ctx.ptr().get(), array_.get(), ×tamp_end)); |
| 539 | return timestamp_end; |
| 540 | } |
| 541 | |
| 542 | /** |
| 543 | * Sets the array config. |
no test coverage detected