Topic: sqlite and "truncate" statement in 12_to_125_update.php
Hello,
I just did an update from 1.2.4 to 1.2.5. I'm using sqlite as the backend. The update script 12_to_125_update.php failed with an error at line 135 which I tracked down to a truncate statement ("truncate table search_cache"). sqlite apparently doesn't support this statement, so I commented it out and then the update went fine.
I'm not familiar with the "truncate" command - would "delete from search_cache" be analogous?