Skip to content

Commit c7cbb7f

Browse files
committed
upgrade to SQLite 1.52.0
This pulls in SQLite 1.52.0 from upstream. sqlite3_trunk.c is updated to match, with the exception of a SQLITE_WARNING log if the wal was wrapped during checkpointing after the header was already read. Updates tailscale/corp#37997 Signed-off-by: Percy Wegmann <percy@tailscale.com>
1 parent 070c921 commit c7cbb7f

7 files changed

Lines changed: 34100 additions & 29204 deletions

File tree

cgosqlite/release_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ package cgosqlite
55
import "testing"
66

77
func TestSQLiteVersion(t *testing.T) {
8-
const want = "3.51.2"
8+
const want = "3.52.0"
99
got := SQLiteVersion()
1010
if got != want {
1111
t.Fatalf("wrong version, want %s, got %s", want, got)
1212
}
1313
}
1414

1515
func TestSQLiteVersionNumber(t *testing.T) {
16-
const want = 3051002
16+
const want = 3052000
1717
got := SQLiteVersionNumber()
1818
if got != want {
1919
t.Fatalf("wrong version, want %d, got %d", want, got)

0 commit comments

Comments
 (0)