We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94c2ec0 commit c6d4f1dCopy full SHA for c6d4f1d
libsql-replication/src/injector/mod.rs
@@ -163,6 +163,8 @@ impl Injector {
163
164
fn begin_txn(&mut self) -> Result<(), Error> {
165
let conn = self.connection.lock();
166
+ conn.pragma_update(None, "writable_schema", "true")?;
167
+
168
let mut stmt = conn.prepare_cached("BEGIN IMMEDIATE")?;
169
stmt.execute(())?;
170
// we create a dummy table. This table MUST not be persisted, otherwise the replica schema
0 commit comments