Fix-4415: Fixes the Live Query Panic issue (#4437)
This commit is contained in:
parent
bf2eb32f01
commit
6e87f3ef66
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ impl Datastore {
|
||||||
let end = crate::key::table::lq::suffix(&ns.name, &db.name, &tb.name);
|
let end = crate::key::table::lq::suffix(&ns.name, &db.name, &tb.name);
|
||||||
let mut next = Some(beg..end);
|
let mut next = Some(beg..end);
|
||||||
while let Some(rng) = next {
|
while let Some(rng) = next {
|
||||||
let res = catch!(txn, txn.batch(rng, *NORMAL_FETCH_SIZE, false));
|
let res = catch!(txn, txn.batch(rng, *NORMAL_FETCH_SIZE, true));
|
||||||
next = res.next;
|
next = res.next;
|
||||||
for (k, v) in res.values.iter() {
|
for (k, v) in res.values.iter() {
|
||||||
// Decode the LIVE query statement
|
// Decode the LIVE query statement
|
||||||
|
|
Loading…
Reference in a new issue