fix: increase cursor match limit to 1024

This commit is contained in:
Lukas Spiss 2025-08-24 21:53:37 +01:00
parent f64bd43505
commit 5a085f0c19
No known key found for this signature in database
GPG key ID: BBBB56398372584A

View file

@ -1878,7 +1878,7 @@ impl<'a> Iterator for ByteChunks<'a> {
impl QueryCursorHandle {
pub fn new() -> Self {
let mut cursor = QUERY_CURSORS.lock().pop().unwrap_or_default();
cursor.set_match_limit(256);
cursor.set_match_limit(1024);
QueryCursorHandle(Some(cursor))
}
}