diff --git a/core/error.rs b/core/error.rs index 9e4fa0dd1..23ce9fe9b 100644 --- a/core/error.rs +++ b/core/error.rs @@ -164,5 +164,5 @@ impl From for LimboError { pub const SQLITE_CONSTRAINT: usize = 19; pub const SQLITE_CONSTRAINT_PRIMARYKEY: usize = SQLITE_CONSTRAINT | (6 << 8); pub const SQLITE_CONSTRAINT_NOTNULL: usize = SQLITE_CONSTRAINT | (5 << 8); -pub const SQLITE_FULL: usize = 13; // we want this in autoincrement - incase if user inserts max alloweed int +pub const SQLITE_FULL: usize = 13; // we want this in autoincrement - incase if user inserts max allowed int pub const SQLITE_CONSTRAINT_UNIQUE: usize = 2067; diff --git a/core/vdbe/execute.rs b/core/vdbe/execute.rs index a7900aac2..955291ae5 100644 --- a/core/vdbe/execute.rs +++ b/core/vdbe/execute.rs @@ -6890,9 +6890,6 @@ pub fn op_parse_schema( .store(previous_auto_commit, Ordering::SeqCst); maybe_nested_stmt_err?; - // let updated_local_schema = conn.schema.borrow().clone(); - // conn._db.update_schema_if_newer(updated_local_schema)?; - state.pc += 1; Ok(InsnFunctionStepResult::Step) }