Commit b92438c
committed
Use read-only mode for sqlite3 completion
The fix from the previous commit *should* be enough to keep my
completion from creating `':memory:'` files, but belt and suspenders, kids.
`immutable=1` isn't enough - AFAICT, that just means "don't create
WAL/SHM files". You need `mode=ro` to prevent SQLite from creating
non-existent database files, even for read-only operations.1 parent b04f740 commit b92438c
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
0 commit comments