1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix an error in the previous commit on this branch.

FossilOrigin-Name: 47c11ca90f98ffc4d91f07e2ab35826a604a2c903008eeddf8b814bb984971f2
This commit is contained in:
dan
2023-06-30 19:13:27 +00:00
parent aec0aa83a9
commit e6d7ae24e3
3 changed files with 9 additions and 12 deletions

View File

@@ -286,10 +286,10 @@ static int bytecodevtabColumn(
#ifdef SQLITE_ENABLE_STMT_SCANSTATUS
case 9: /* nexec */
sqlite3_result_int(ctx, pCur->aOp[0].nExec);
sqlite3_result_int(ctx, pOp->nExec);
break;
case 10: /* ncycle */
sqlite3_result_int(ctx, pCur->aOp[0].nCycle);
sqlite3_result_int(ctx, pOp->nCycle);
break;
#else
case 9: /* nexec */