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

In "PRAGMA vdbe_trace" output, show the results of OP_Affinity opcodes.

FossilOrigin-Name: 56604bb60a8ebac8d2854628d1b052d594d7effe14be8333977995dc07b65114
This commit is contained in:
drh
2019-05-01 14:41:47 +00:00
parent a3e086d803
commit 6fcc1ecc99
3 changed files with 9 additions and 8 deletions

View File

@@ -2769,6 +2769,7 @@ case OP_Affinity: {
assert( pIn1 <= &p->aMem[(p->nMem+1 - p->nCursor)] );
assert( memIsValid(pIn1) );
applyAffinity(pIn1, *(zAffinity++), encoding);
REGISTER_TRACE((int)(pIn1-aMem), pIn1);
pIn1++;
}while( zAffinity[0] );
break;