cleanup remove unnecessary comments and correct spelling

This commit is contained in:
Pavan-Nambi
2025-09-24 19:11:48 +05:30
parent 49d5141f2d
commit 8ce506fded
2 changed files with 1 additions and 4 deletions

View File

@@ -164,5 +164,5 @@ impl From<turso_ext::ResultCode> 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;

View File

@@ -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)
}