Versions in this module Expand all Collapse all v0 v0.1.0 Apr 20, 2015 Changes in this version + const OperationInsert + type FileWAL struct + func NewFileWAL(filename string) (*FileWAL, error) + func OpenFileWAL(filename string) (*FileWAL, error) + func (w *FileWAL) Append(entry WALEntry) (int, error) + func (w *FileWAL) Close() error + func (w *FileWAL) Destroy() error + func (w *FileWAL) Filename() string + func (w *FileWAL) ReadEntry() (WALEntry, error) + func (w *FileWAL) Truncate() error + type WAL interface + Append func(WALEntry) (int, error) + Close func() error + Destroy func() error + Filename func() string + ReadEntry func() (WALEntry, error) + Truncate func() error + type WALEntry struct + Operation walOperation + Rows []partition.Row