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/build.c | |
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/build.c')
-rw-r--r-- | src/build.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c index 5bd3aac3c..27d7b499d 100644 --- a/src/build.c +++ b/src/build.c @@ -4219,7 +4219,6 @@ void sqlite3CreateIndex( assert( j<=0x7fff ); if( j<0 ){ j = pTab->iPKey; - pIndex->bIdxRowid = 1; }else{ if( pTab->aCol[j].notNull==0 ){ pIndex->uniqNotNull = 0; |