Retrieves the inclusive starting timestamp. */
| 523 | |
| 524 | /** Retrieves the inclusive starting timestamp. */ |
| 525 | uint64_t open_timestamp_start() const { |
| 526 | auto& ctx = ctx_.get(); |
| 527 | uint64_t timestamp_start; |
| 528 | ctx.handle_error(tiledb_array_get_open_timestamp_start( |
| 529 | ctx.ptr().get(), array_.get(), ×tamp_start)); |
| 530 | return timestamp_start; |
| 531 | } |
| 532 | |
| 533 | /** Retrieves the inclusive ending timestamp. */ |
| 534 | uint64_t open_timestamp_end() const { |
no test coverage detected