Home | History | Annotate | Download | only in storage

Lines Matching defs:lastVersion

1794     int64_t lastVersion = -1;
1795 if (!getInt(db, lastVersionKey, lastVersion))
1796 lastVersion = 0;
1798 ASSERT(lastVersion >= 0);
1800 int64_t version = lastVersion + 1;
1804 ASSERT(version > lastVersion); // FIXME: Think about how we want to handle the overflow scenario.