Open SegmentationViolator opened 3 years ago
You should enable --enable-update-limit
python --enable-update-limit
?
Hmmm any other way than rebuilding? For my application, telling all users to rebuild sqlite is not a good solution. Also, was this change documented? It was working fine before, i'd like to know why it changed, requiring this modification into sqlite
You can use filter instead of get
I got the same error when running make test_sqlite
, and solved it by the following steps(My system is MacOS):
STEM=sqlite-src-3410000
FILE=$STEM.zip
if [ -d $STEM ]; then echo Folder $STEM exists. else if [ -f $FILE ]; then echo File $FILE exists. else wget https://www.sqlite.org/$(date +'%Y')/$FILE fi unzip $FILE fi
cd $STEM && \ ./configure --prefix=/usr/local --disable-static --enable-update-limit && \ make sqlite3.c && \ make install && \ echo Done.
https://stackoverflow.com/a/75553632/9586338
2. make symbolic link to use it
- show sqlite3 version in python
```bash
python -c 'import _sqlite3 as print(m.sqlite_version)
# 3.40.1
sudo find / -name "*sqlite3*"
# /usr/local/Cellar/sqlite/3.40.1
cd /usr/local/Cellar/sqlite/3.40.1/lib
ls -lh .
mv libsqlite3.a libsqlite3.a_3.40.1
ln -s /usr/local/lib/libsqlite3.a libsqlite3.a
mv libsqlite3.0.dylib libsqlite3.0.dylib_3.40.1
ln -s /usr/local/lib/libsqlite3.0.dylib libsqlite3.0.dylib
Describe the bug raises this exception instead of deleting the model.
To Reproduce
Expected behavior delete the specific model and not raise any exceptions.