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 amount of union debt is an upper bound on the amount of computation that
1689
-
needs to be performed before an incremental union is completed. This includes
1690
-
the cost of completing incremental unions that were part of a union's input.
1688
+
Union debt represents the amount of computation that must be performed before an incremental union is completed.
1689
+
This includes the cost of completing incremental unions that were part of a union's input.
1690
+
1691
+
__Warning:__ The 'UnionDebt' returned by 'Database.LSMTree.remainingUnionDebt' is an /upper bound/ on the remaining union debt, not the exact union debt.
1691
1692
-}
1692
1693
newtypeUnionDebt=UnionDebtInt
1693
1694
derivingnewtype (Show, Eq, Ord, Num)
@@ -1709,8 +1710,7 @@ remainingUnionDebt t = do
1709
1710
pure (UnionDebt c)
1710
1711
1711
1712
{- |
1712
-
The amount of union credits determines the amount of computation performed to
1713
-
incrementally complete a union.
1713
+
Union credits are passed to 'Database.LSMTree.supplyUnionCredits' to perform some amount of computation to incrementally complete a union.
0 commit comments