You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[derive(Debug,Encode)]structWALEntry{index:u64,// 엔트리 인덱스entry_type:EntryType,// 엔트리 타입data:Vec<u8>,// 내부 데이터timestamp:u64,// 엔트리 생성 시간transaction_id:u64,// 트랜잭션 시 생성되는 sequence}#[derive(Debug,Encode)]enumEntryType{Insert,Set,Delete,Checkpoint,TransactionBegin,TransactionCommit,}
추후 구현할 WAL 스캐닝에서는 트랜잭션 시작 후 COMMIT이 발생하지 않으면 무시할 예정
에픽: #158
The text was updated successfully, but these errors were encountered: