1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-02 05:54:29 +03:00

Change some internal details to bring this branch closer to the code on trunk.

FossilOrigin-Name: 58e42cfd7d4af2279dab8dd895dca7afbdf9035445bc81bd4a7461ea24e846fc
This commit is contained in:
dan
2017-10-11 20:10:22 +00:00
parent 31976dacf1
commit 7fdb9a7edc
9 changed files with 45 additions and 31 deletions

View File

@@ -1611,7 +1611,7 @@ int sqlite3VdbeList(
int i; /* Loop counter */
int rc = SQLITE_OK; /* Return code */
Mem *pMem = &p->aMem[1]; /* First Mem of result set */
int bFull = (p->explain==1 || (db->flags & SQLITE_FullEQP));
int bFull = (p->explain==1 || db->bFullEQP);
Op *pOp = 0;
assert( p->explain );