You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to track the WAL size to make sure it doesn't grow indefinitely (only truncated if there are no active readers & writers). Sqlx does not provide a non-unsafe way to do this without triggering a checkpoint.
Prefered solution
It would be very nice if sqlx would track the wal size on it's own by setting sqlite3_wal_hook.
Alternatively a safe wrapper method on LockedSqliteHandle (which has methods for a bunch of hooks already) could be added.