diff options
author | drh <> | 2025-07-07 16:19:44 +0000 |
---|---|---|
committer | drh <> | 2025-07-07 16:19:44 +0000 |
commit | 0a5508aeb4433dc75a22d9cd18ece5c7a13648b5 (patch) | |
tree | a502edb3ad670e12131a6123efe8621a0239b310 /src/sqliteInt.h | |
parent | 24d290e7b0373b0b0749a0ac32d16bc42d462e60 (diff) | |
parent | 4fe1ac8fe1c3831588ae2ad1f8ea0841b11523ab (diff) | |
download | sqlite-0a5508aeb4433dc75a22d9cd18ece5c7a13648b5.tar.gz sqlite-0a5508aeb4433dc75a22d9cd18ece5c7a13648b5.zip |
Rework the fix to the problem described by
[forum:/forumpost/b9647a113b465950|forum post b9647a113b] so that it
provides a more complete fix that covers cases that were not resolved by
the original fix, and so that it does not cause performance regressions.
FossilOrigin-Name: 28db0d152d90fb5e62d03ea5caceabe8901be98522aef3dc2b54564fbc35355d
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 36a21d92e..a05cf75ad 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2808,7 +2808,6 @@ struct Index { unsigned hasStat1:1; /* aiRowLogEst values come from sqlite_stat1 */ unsigned bNoQuery:1; /* Do not use this index to optimize queries */ unsigned bAscKeyBug:1; /* True if the bba7b69f9849b5bf bug applies */ - unsigned bIdxRowid:1; /* One or more of the index keys is the ROWID */ unsigned bHasVCol:1; /* Index references one or more VIRTUAL columns */ unsigned bHasExpr:1; /* Index contains an expression, either a literal ** expression, or a reference to a VIRTUAL column */ |