mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Performance improvements:
Avoid unnecessary seeks when doing a single-row UPDATE on a WITHOUT ROWID table. FossilOrigin-Name: 6f187a0fb1b09ebc4732c4afbf3c813f82e069f1
This commit is contained in:
@@ -2182,6 +2182,7 @@ case OP_IfNot: { /* jump, in1 */
|
||||
}
|
||||
|
||||
/* Opcode: IsNull P1 P2 * * *
|
||||
** Synopsis: if r[P1]==NULL goto P2
|
||||
**
|
||||
** Jump to P2 if the value in register P1 is NULL.
|
||||
*/
|
||||
@@ -2194,6 +2195,7 @@ case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */
|
||||
}
|
||||
|
||||
/* Opcode: NotNull P1 P2 * * *
|
||||
** Synopsis: if r[P1]!=NULL goto P2
|
||||
**
|
||||
** Jump to P2 if the value in register P1 is not NULL.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user