use of org.apache.ignite.internal.storage.basic.BinarySearchRow in project ignite-3 by apache.
the class VersionedRowStore method get.
/**
* Gets a row.
*
* @param row The search row.
* @param ts The timestamp.
* @return The result row.
*/
public BinaryRow get(@NotNull BinaryRow row, Timestamp ts) {
assert row != null;
var key = new BinarySearchRow(row);
DataRow readValue = storage.read(key);
return versionedRow(readValue, ts).getFirst();
}
Aggregations