* Returns the timestamp range of the written fragment with the input index. * Applicable only to WRITE queries. */
| 639 | * Applicable only to WRITE queries. |
| 640 | */ |
| 641 | std::pair<uint64_t, uint64_t> fragment_timestamp_range(uint32_t idx) const { |
| 642 | auto& ctx = ctx_.get(); |
| 643 | uint64_t t1, t2; |
| 644 | ctx.handle_error(tiledb_query_get_fragment_timestamp_range( |
| 645 | ctx.ptr().get(), query_.get(), idx, &t1, &t2)); |
| 646 | return std::make_pair(t1, t2); |
| 647 | } |
| 648 | |
| 649 | /** |
| 650 | * Prepare a query with the contents of a subarray. |
no test coverage detected