drop tags from sanity check

Since we rely on fixIntegrity() to garbage-collect tags and don't try to add
unused ones to the graves, after a check the tag counts will fall out of sync.
This commit is contained in:
Damien Elmes 2011-12-07 18:33:43 +09:00
parent 593e45a9bb
commit 6ce8c9b608

View file

@ -148,7 +148,6 @@ select count() from notes where id not in (select distinct nid from cards)""")
self.col.db.scalar("select count() from revlog"), self.col.db.scalar("select count() from revlog"),
self.col.db.scalar("select count() from graves"), self.col.db.scalar("select count() from graves"),
len(self.col.models.all()), len(self.col.models.all()),
len(self.col.tags.all()),
len(self.col.decks.all()), len(self.col.decks.all()),
len(self.col.decks.allConf()), len(self.col.decks.allConf()),
] ]