BSD WAL support. (#90)

Uses in-memory locks.
Also supports illumos.
This commit is contained in:
Nuno Cruces
2024-06-05 00:43:49 +01:00
committed by GitHub
parent d78a53a789
commit e9ed4c103d
16 changed files with 314 additions and 32 deletions

View File

@@ -3,6 +3,7 @@ package tests
import (
"encoding/json"
"math"
"math/bits"
"testing"
"time"
@@ -617,6 +618,9 @@ func TestStmt_ColumnTime(t *testing.T) {
}
func TestStmt_Error(t *testing.T) {
if bits.UintSize < 64 {
t.Skip("skipping on 32-bit")
}
t.Parallel()
db, err := sqlite3.Open(":memory:")