Refresh old FoundationDB read transactions (code cleanup)

This commit is contained in:
mdecimus
2024-07-05 20:17:09 +02:00
parent b53c3d120e
commit 56ca136aa6
2 changed files with 6 additions and 8 deletions

View File

@@ -85,10 +85,9 @@ impl FdbStore {
let end = params.end.serialize(WITH_SUBSPACE);
if !params.first {
let mut has_more = true;
let mut begin_selector = KeySelector::first_greater_or_equal(&begin);
while has_more {
loop {
let mut last_key_bytes = None;
{
@@ -105,7 +104,6 @@ impl FdbStore {
);
while let Some(values) = values.try_next().await? {
has_more = values.more();
let mut last_key = &[] as &[u8];
for value in values.iter() {
@@ -115,7 +113,7 @@ impl FdbStore {
}
}
if has_more && trx.is_expired() {
if values.more() && trx.is_expired() {
last_key_bytes = last_key.to_vec().into();
break;
}