1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Fix a minor problem with EXPLAIN QUERY PLAN for triggers.

FossilOrigin-Name: 6e11c03f84efa93b218b07e39b6b56b1d872639f39c18498ee54d8cd8364d4f5
This commit is contained in:
drh
2020-04-02 19:58:31 +00:00
parent e1cd73f671
commit 49d01abaac
3 changed files with 8 additions and 8 deletions

View File

@@ -2048,7 +2048,7 @@ int sqlite3VdbeNextOpcode(
{
assert( eMode==1 );
if( aOp[i].opcode==OP_Explain ) break;
if( aOp[i].opcode==OP_Init && p->pc>1 ) break;
if( aOp[i].opcode==OP_Init && iPc>1 ) break;
}
}
*piPc = iPc;