core: Disable autovacuum by default

People have discovered various bugs in autovacuum so let's disable it by
default for now.
This commit is contained in:
Pekka Enberg
2025-11-02 10:37:41 +02:00
parent a87323855b
commit 913b7ac600
10 changed files with 79 additions and 18 deletions

View File

@@ -317,7 +317,7 @@ impl Drop for Connection {
#[allow(clippy::arc_with_non_send_sync)]
#[pyfunction(signature = (path))]
pub fn connect(path: &str) -> Result<Connection> {
match turso_core::Connection::from_uri(path, true, false, false, false, false, false) {
match turso_core::Connection::from_uri(path, true, false, false, false, false, false, false) {
Ok((io, conn)) => Ok(Connection { conn, _io: io }),
Err(e) => Err(PyErr::new::<ProgrammingError, _>(format!(
"Failed to create connection: {e:?}"