mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-19 09:34:18 +01:00
cleanup remove unnecessary comments and correct spelling
This commit is contained in:
@@ -164,5 +164,5 @@ impl From<turso_ext::ResultCode> for LimboError {
|
|||||||
pub const SQLITE_CONSTRAINT: usize = 19;
|
pub const SQLITE_CONSTRAINT: usize = 19;
|
||||||
pub const SQLITE_CONSTRAINT_PRIMARYKEY: usize = SQLITE_CONSTRAINT | (6 << 8);
|
pub const SQLITE_CONSTRAINT_PRIMARYKEY: usize = SQLITE_CONSTRAINT | (6 << 8);
|
||||||
pub const SQLITE_CONSTRAINT_NOTNULL: usize = SQLITE_CONSTRAINT | (5 << 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;
|
pub const SQLITE_CONSTRAINT_UNIQUE: usize = 2067;
|
||||||
|
|||||||
@@ -6890,9 +6890,6 @@ pub fn op_parse_schema(
|
|||||||
.store(previous_auto_commit, Ordering::SeqCst);
|
.store(previous_auto_commit, Ordering::SeqCst);
|
||||||
maybe_nested_stmt_err?;
|
maybe_nested_stmt_err?;
|
||||||
|
|
||||||
// let updated_local_schema = conn.schema.borrow().clone();
|
|
||||||
// conn._db.update_schema_if_newer(updated_local_schema)?;
|
|
||||||
|
|
||||||
state.pc += 1;
|
state.pc += 1;
|
||||||
Ok(InsnFunctionStepResult::Step)
|
Ok(InsnFunctionStepResult::Step)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user