log "next_id" to track append vec ids (#21971)

This commit is contained in:
Jeff Washington (jwash) 2021-12-16 22:41:34 -06:00 committed by GitHub
parent 6374995522
commit 5d40da5688
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -2381,6 +2381,7 @@ impl AccountsDb {
.swap(0, Ordering::Relaxed), .swap(0, Ordering::Relaxed),
i64 i64
), ),
("next_store_id", self.next_id.load(Ordering::Relaxed), i64),
); );
} }