mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-06 15:49:35 +03:00
Suppress the display of the P4 operand in EXPLAIN output when an opcode
has been converted into a No-op. FossilOrigin-Name: 9f8297f862a110ded686d091854fae20c6bc393c
This commit is contained in:
@@ -850,6 +850,7 @@ int sqlite3VdbeChangeToNoop(Vdbe *p, int addr){
|
||||
pOp = &p->aOp[addr];
|
||||
freeP4(p->db, pOp->p4type, pOp->p4.p);
|
||||
pOp->p4type = P4_NOTUSED;
|
||||
pOp->p4.z = 0;
|
||||
pOp->opcode = OP_Noop;
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user