File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ Run an action with access to a session opened from a session directory.
380380If the session directory is empty, a new session is created.
381381Otherwise, the session directory is opened as an existing session.
382382
383- If there are no open tables or cursors when the session terminates, then this disk I\/O complexity of this operation is \(O(1)\).
383+ If there are no open tables or cursors when the session terminates, then the disk I\/O complexity of this operation is \(O(1)\).
384384Otherwise, 'closeTable' is called for each open table and 'closeCursor' is called for each open cursor.
385385Consequently, the worst-case disk I\/O complexity of this operation depends on the merge policy of the open tables in the session.
386386The following assumes all tables in the session have the same merge policy:
@@ -496,7 +496,7 @@ openSessionIO tracer sessionDir = do
496496{- |
497497Close a session.
498498
499- If there are no open tables or cursors in the session, then this disk I\/O complexity of this operation is \(O(1)\).
499+ If there are no open tables or cursors in the session, then the disk I\/O complexity of this operation is \(O(1)\).
500500Otherwise, 'closeTable' is called for each open table and 'closeCursor' is called for each open cursor.
501501Consequently, the worst-case disk I\/O complexity of this operation depends on the merge policy of the tables in the session.
502502The following assumes all tables in the session have the same merge policy:
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ newtype Session = Session (LSMT.Session IO)
384384{- |
385385Run an action with access to a session opened from a session directory.
386386
387- If there are no open tables or cursors when the session terminates, then this disk I\/O complexity of this operation is \(O(1)\).
387+ If there are no open tables or cursors when the session terminates, then the disk I\/O complexity of this operation is \(O(1)\).
388388Otherwise, 'closeTable' is called for each open table and 'closeCursor' is called for each open cursor.
389389Consequently, the worst-case disk I\/O complexity of this operation depends on the merge policy of the open tables in the session.
390390The following assumes all tables in the session have the same merge policy:
@@ -446,7 +446,7 @@ openSession dir = do
446446{- |
447447Close a session.
448448
449- If there are no open tables or cursors in the session, then this disk I\/O complexity of this operation is \(O(1)\).
449+ If there are no open tables or cursors in the session, then the disk I\/O complexity of this operation is \(O(1)\).
450450Otherwise, 'closeTable' is called for each open table and 'closeCursor' is called for each open cursor.
451451Consequently, the worst-case disk I\/O complexity of this operation depends on the merge policy of the tables in the session.
452452The following assumes all tables in the session have the same merge policy:
You can’t perform that action at this time.
0 commit comments