jldb/mdb/info.go

12 lines
398 B
Go
Raw Normal View History

2023-10-13 09:43:27 +00:00
package mdb
type Info struct {
SeqNum int64 // In-memory sequence number.
TimestampMS int64 // In-memory timestamp.
FileSeqNum int64 // Page file sequence number.
FileTimestampMS int64 // Page file timestamp.
WALFirstSeqNum int64 // WAL min sequence number.
WALLastSeqNum int64 // WAL max sequence number.
WALLastTimestampMS int64 // WAL timestamp.
}