···496496 match Util.at_index index seq with
497497 | Some (Leaf (k, _, _)) when k = key ->
498498 Lwt.return Block_map.empty
499499- | Some (Leaf (k, v_right, _)) -> (
499499+ | Some (Leaf (_k, v_right, _)) -> (
500500 let prev =
501501 if index - 1 >= 0 then Util.at_index (index - 1) seq else None
502502 in
+1-1
pegasus/lib/util.ml
···191191 PRAGMA journal_mode=WAL;
192192 PRAGMA foreign_keys=ON;
193193 PRAGMA synchronous=NORMAL;
194194+ PRAGMA busy_timeout=5000;
194195 |sql}
195196 syntax_off]
196197 () conn
···231232 : 'a Lwt.t =
232233 match%lwt Caqti_lwt_unix.Pool.use f pool with
233234 | Ok res ->
234234- let%lwt () = Caqti_lwt_unix.Pool.drain pool in
235235 Lwt.return res
236236 | Error e ->
237237 raise (Caqti_error.Exn e)