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
*-shm and *-wal temp files are getting left behind when quitting the process. SQLite is supposed to delete these on exit, and also if it finds them when starting up, but it doesn't for some reason.
The WAL file is created when the first connection to the database is opened and is normally removed when the last connection to the database closes. However, if the last connection does not shutdown cleanly, the WAL file will remain in the filesystem and will be automatically cleaned up the next time the database is opened.
The text was updated successfully, but these errors were encountered:
*-shm
and*-wal
temp files are getting left behind when quitting the process. SQLite is supposed to delete these on exit, and also if it finds them when starting up, but it doesn't for some reason.https://www.sqlite.org/tempfiles.html
The text was updated successfully, but these errors were encountered: