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

A better fix for the sqlite3_trace() problem.

Ticket [11d5aa455e0d98f3c1e6a]

FossilOrigin-Name: 44d5bd4cc3f76e9a151ba0abae1092bd184af264
This commit is contained in:
drh
2014-08-19 20:41:36 +00:00
parent 2c7946a485
commit 5f58ae75c9
3 changed files with 8 additions and 8 deletions

View File

@@ -518,7 +518,7 @@ int sqlite3_step(sqlite3_stmt *pStmt){
rc2 = rc = sqlite3Reprepare(v);
if( rc!=SQLITE_OK) break;
sqlite3_reset(pStmt);
v->doingRerun = savedPc>=0;
if( savedPc>=0 ) v->doingRerun = 1;
assert( v->expired==0 );
}
if( rc2!=SQLITE_OK ){