MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / fragment_timestamp_range

Method fragment_timestamp_range

tiledb/sm/cpp_api/query.h:641–647  ·  view source on GitHub ↗

* Returns the timestamp range of the written fragment with the input index. * Applicable only to WRITE queries. */

Source from the content-addressed store, hash-verified

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.

Callers 1

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected