fix: update executor doc comment to reflect P2 implementation status

Executor comment now reflects reality:
- StreamWALEntries, TransferFullBase, TransferSnapshot: real
- TruncateWAL: stub
- Implements engine.CatchUpIO and engine.RebuildIO interfaces

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
pingqiu
2026-03-31 15:14:34 -07:00
co-authored by Claude Opus 4.6
parent 1578adfba5
commit 8b1b6ec1c0
+3 -2
View File
@@ -10,8 +10,9 @@ import (
// It executes what the engine tells it to do — it does NOT decide
// recovery policy.
//
// Phase 07 P1: one narrow path (WAL catch-up streaming).
// Full-base rebuild and snapshot transfer are deferred.
// Implements engine.CatchUpIO and engine.RebuildIO interfaces.
// Phase 08 P2: StreamWALEntries, TransferFullBase, TransferSnapshot real.
// TruncateWAL: stub.
type Executor struct {
vol *blockvol.BlockVol
}