File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed
Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1010module Database.LSMTree (
1111 -- * Exceptions
1212 Common. LSMTreeError (.. )
13+ , Common. InvalidSnapshotNameError (.. )
1314
1415 -- * Tracing
1516 , Common. LSMTreeTrace (.. )
@@ -67,6 +68,7 @@ module Database.LSMTree (
6768
6869 -- * Durability (snapshots)
6970 , SnapshotName
71+ , Common. isValidSnapshotName
7072 , Common. toSnapshotName
7173 , Common. SnapshotLabel (.. )
7274 , createSnapshot
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module Database.LSMTree.Common (
33 IOLike
44 -- * Exceptions
55 , Internal. LSMTreeError (.. )
6+ , Internal. InvalidSnapshotNameError (.. )
67 -- * Tracing
78 , Internal. LSMTreeTrace (.. )
89 , Internal. TableTrace (.. )
@@ -24,6 +25,7 @@ module Database.LSMTree.Common (
2425 -- ** Snapshot names
2526 , Internal. SnapshotName
2627 , Internal. toSnapshotName
28+ , Internal. isValidSnapshotName
2729 -- * Blob references
2830 , BlobRef (.. )
2931 -- * Table configuration
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ module Database.LSMTree.Internal.Paths (
1717 -- * Snapshot name
1818 , SnapshotName
1919 , isValidSnapshotName
20+ , InvalidSnapshotNameError (.. )
2021 , toSnapshotName
2122 -- * Run paths
2223 , RunFsPaths (.. )
Original file line number Diff line number Diff line change 2525module Database.LSMTree.Monoidal (
2626 -- * Exceptions
2727 Common. LSMTreeError (.. )
28+ , Common. InvalidSnapshotNameError (.. )
2829
2930 -- * Tracing
3031 , Common. LSMTreeTrace (.. )
@@ -85,6 +86,7 @@ module Database.LSMTree.Monoidal (
8586 -- * Durability (snapshots)
8687 , SnapshotName
8788 , Common. toSnapshotName
89+ , Common. isValidSnapshotName
8890 , Common. SnapshotLabel (.. )
8991 , createSnapshot
9092 , openSnapshot
Original file line number Diff line number Diff line change 2424module Database.LSMTree.Normal (
2525 -- * Exceptions
2626 Common. LSMTreeError (.. )
27+ , Common. InvalidSnapshotNameError (.. )
2728
2829 -- * Tracing
2930 , Common. LSMTreeTrace (.. )
@@ -86,6 +87,7 @@ module Database.LSMTree.Normal (
8687 -- * Durability (snapshots)
8788 , SnapshotName
8889 , Common. toSnapshotName
90+ , Common. isValidSnapshotName
8991 , Common. SnapshotLabel (.. )
9092 , createSnapshot
9193 , openSnapshot
You can’t perform that action at this time.
0 commit comments