mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
include buried in suspended count
This commit is contained in:
parent
7dcf0d8ead
commit
b1cb07077a
1 changed files with 1 additions and 1 deletions
|
@ -705,7 +705,7 @@ select
|
|||
sum(case when queue=2 and ivl >= 21 then 1 else 0 end), -- mtr
|
||||
sum(case when queue in (1,3) or (queue=2 and ivl < 21) then 1 else 0 end), -- yng/lrn
|
||||
sum(case when queue=0 then 1 else 0 end), -- new
|
||||
sum(case when queue=-1 then 1 else 0 end) -- susp
|
||||
sum(case when queue<0 then 1 else 0 end) -- susp
|
||||
from cards where did in %s""" % self._limit())
|
||||
|
||||
# Footer
|
||||
|
|
Loading…
Reference in a new issue