aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2012-08-24 23:24:15 +0000
committerdrh <drh@noemail.net>2012-08-24 23:24:15 +0000
commitd40e208726918b770586cb0bf5cf7edabc17ee2a (patch)
treee00b3ddd6b0f816f04ddac7e2a4a2d85b933a33e /src/sqliteInt.h
parent7b36ba3da319786dea5deab70c8f8181ebdc2f8f (diff)
downloadsqlite-d40e208726918b770586cb0bf5cf7edabc17ee2a.tar.gz
sqlite-d40e208726918b770586cb0bf5cf7edabc17ee2a.zip
Move field WhereLevel.pCovidx inside the union to WhereLevel.u.pCovidx.
FossilOrigin-Name: b722143d075979ba3d92b7b29e576ce2307187d1
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index aa554a23a..19cd05eeb 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1947,8 +1947,8 @@ struct WhereLevel {
int addrInTop; /* Top of the IN loop */
} *aInLoop; /* Information about each nested IN operator */
} in; /* Used when plan.wsFlags&WHERE_IN_ABLE */
+ Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR */
} u;
- Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR levels */
/* The following field is really not part of the current level. But
** we need a place to cache virtual table index information for each