You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The collect_iterator method was causing a deadlock when filter_map_fn
called storage.get() because std::sync::Mutex is not reentrant.
The method held the mutex lock during iteration, and nested get() calls
would try to acquire the same lock, causing tests to hang indefinitely.
Fix by collecting all matching rows first while holding the lock, then
releasing the lock before processing rows with filter_map_fn.
0 commit comments