Sets the inclusive starting timestamp when opening this array. */
| 509 | |
| 510 | /** Sets the inclusive starting timestamp when opening this array. */ |
| 511 | void set_open_timestamp_start(uint64_t timestamp_start) const { |
| 512 | auto& ctx = ctx_.get(); |
| 513 | ctx.handle_error(tiledb_array_set_open_timestamp_start( |
| 514 | ctx.ptr().get(), array_.get(), timestamp_start)); |
| 515 | } |
| 516 | |
| 517 | /** Sets the inclusive ending timestamp when opening this array. */ |
| 518 | void set_open_timestamp_end(uint64_t timestamp_end) const { |
no test coverage detected