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

Debugging improvement: when tracing the VDBE, output the register value for

OP_Cast after the cast is completed.

FossilOrigin-Name: dc5f1d282d1e75f8a3791b0c95cb8f143b2a956323cb6c889d76d20db7f89257
This commit is contained in:
drh
2019-12-20 17:25:10 +00:00
parent 8cc8feae7e
commit 5d73272340
3 changed files with 8 additions and 7 deletions

View File

@@ -1869,6 +1869,7 @@ case OP_Cast: { /* in1 */
sqlite3VdbeMemCast(pIn1, pOp->p2, encoding);
UPDATE_MAX_BLOBSIZE(pIn1);
if( rc ) goto abort_due_to_error;
REGISTER_TRACE(pOp->p1, pIn1);
break;
}
#endif /* SQLITE_OMIT_CAST */