Monday, 28 November 2022

[HyperSQL] zlib.error: Error -5 while decompressing data: incomplete or truncated stream

Apparently, versions up to 3.9.8 have a problem with cleaning their own cache. As workaround, delete all the files in the cache directory:
del /f /s %install_direcotry_of_HyperSQL%\cache\*
rm -rf ${install_direcotry_of_HyperSQL}/cache/*

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...