I just realized that https://www.sqlite.org/releaselog/3_44_0.html states the following:
The PRAGMA case_sensitive_like statement is deprecated, as its use when the schema contains LIKE operators can lead to reports of database corruption by PRAGMA integrity_check.
… is there a ‘clean’ replacement? Or do I need to replace search & replace things like select X.A from X where A glob ?
with select X.A from X where lower(A) glob lower(?)
in my codebase?