whoops, add missing vendor changes...

This commit is contained in:
kim 2025-02-12 16:23:44 +00:00
commit 8c601beaa3
38 changed files with 833 additions and 830 deletions

View file

@ -10,9 +10,11 @@ import (
"github.com/ncruces/go-sqlite3/vfs"
)
// Must be a multiple of 64K (the largest page size).
const sectorSize = 65536
// Ensure sectorSize is a multiple of 64K (the largest page size).
var _ [0]struct{} = [sectorSize & 65535]struct{}{}
type memVFS struct{}
func (memVFS) Open(name string, flags vfs.OpenFlag) (vfs.File, vfs.OpenFlag, error) {