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
If a.gpkg is in WAL mode, running geodiff copy a.gpkg b.gpkg will leave a.gpkg-wal and a.gpkg-shm files when it is finished, so probably it is not closing the source database correctly.
The text was updated successfully, but these errors were encountered:
Even though it is possible to open databases in WAL mode as read-only
since sqlite 3.22 (released in 2018), there seem to be a couple of limitations:
https://sqlite.org/wal.html#readonly
The -wal and -shm are left behind even after the database is closed.
So better let's open it in read/write mode as usual and those files
will get proper treatment - they will be removed when connection is closed.
Even though it is possible to open databases in WAL mode as read-only
since sqlite 3.22 (released in 2018), there seem to be a couple of limitations:
https://sqlite.org/wal.html#readonly
The -wal and -shm are left behind even after the database is closed.
So better let's open it in read/write mode as usual and those files
will get proper treatment - they will be removed when connection is closed.
If
a.gpkg
is in WAL mode, runninggeodiff copy a.gpkg b.gpkg
will leavea.gpkg-wal
anda.gpkg-shm
files when it is finished, so probably it is not closing the source database correctly.The text was updated successfully, but these errors were encountered: