I have the following issue with zstd VFS. I cannot support temporary files as it is read-only.
The workaround is to set PRAGMA temp_store = memory;;
In the following appendvfs implementation, it diverts temporary files to the base file system operations. I cannot implement this with interface for VFS at the moment. It does not provide access to the base VFS.
I don't know what to do, but I want to keep track if anyone experiences this issue.
I have the following issue with zstd VFS. I cannot support temporary files as it is read-only.
The workaround is to set
PRAGMA temp_store = memory;;In the following
appendvfsimplementation, it diverts temporary files to the base file system operations. I cannot implement this withinterfacefor VFS at the moment. It does not provide access to the base VFS.I don't know what to do, but I want to keep track if anyone experiences this issue.