From: drh Date: Tue, 27 Sep 2016 00:09:33 +0000 (+0000) Subject: Update requirements marks due to improvements in the wording of documentation. X-Git-Tag: version-3.15.0~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96fdcb40af5c0842870a281aee6c1203357fc01a;p=thirdparty%2Fsqlite.git Update requirements marks due to improvements in the wording of documentation. No changes to code. FossilOrigin-Name: bf903b2ecac5d7b25c9cc899cae41f1d69aafe4e --- diff --git a/manifest b/manifest index c21d0bf96d..80568850e0 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sFTS3\stest\scases\sdue\sto\sthe\sflattener\schange\sof\sthe\sprevious\scheck-in. -D 2016-09-27T00:03:25.212 +C Update\srequirements\smarks\sdue\sto\simprovements\sin\sthe\swording\sof\sdocumentation.\nNo\schanges\sto\scode. +D 2016-09-27T00:09:33.561 F Makefile.in 6fd48ffcf7c2deea7499062d1f3747f986c19678 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434 F Makefile.msc 5151cc64c4c05f3455f4f692ad11410a810d937f @@ -332,7 +332,7 @@ F src/btmutex.c bc87dd3b062cc26edfe79918de2200ccb8d41e73 F src/btree.c 56e1732ecfb3731efcb216266ec26b1b96e5e8c9 F src/btree.h d05b2fcc290991a8a3d9ea1816ddd55a4359dcde F src/btreeInt.h c18b7d2a3494695133e4e60ee36061d37f45d9a5 -F src/build.c 7438b6dae3022818100a79ebbad707b5c65f9344 +F src/build.c 9a1f228cfa0aec70e2b4eba1fcf141ca4b499f6e F src/callback.c 2e76147783386374bf01b227f752c81ec872d730 F src/complete.c a3634ab1e687055cd002e11b8f43eb75c17da23e F src/ctime.c e77f3dc297b4b65c96da78b4ae4272fdfae863d7 @@ -453,7 +453,7 @@ F src/update.c 8179e699dbd45b92934fd02d3d8e3732e8da8802 F src/utf.c 699001c79f28e48e9bcdf8a463da029ea660540c F src/util.c 3e2da6101888d073e79ecc6af5e0a2f70fa1e498 F src/vacuum.c 913970b9d86dd6c2b8063ef1af421880f1464ec3 -F src/vdbe.c 0f87994593787575a4a23f932d27cb4588477436 +F src/vdbe.c 8ceb206967b58ea5397d1c3255ac8bf3ad45dc4b F src/vdbe.h c044be7050ac6bf596eecc6ab159f5dbc020a3b7 F src/vdbeInt.h d21f14721dd87975dc9e3bcdbf504f9c098cf611 F src/vdbeapi.c 794f80669e9e3b9b3edc78d80c15968985c7bf21 @@ -1525,7 +1525,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 -P cf7f9e6d5abff273dd2f8a8dce27d52e1449b3be -R df2b68a7640c290e9abf22bab0ae371c +P 0c8b9b211f4285e2ab77cf5e0820088ef10e05c4 +R 2790d47b3cb1c09143225834f9ceab40 U drh -Z b1604297e065dc768a551aec0598a153 +Z fa709185b4fcfa4bfb5550b3343a5618 diff --git a/manifest.uuid b/manifest.uuid index 8ebab9a692..b96c54fd42 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -0c8b9b211f4285e2ab77cf5e0820088ef10e05c4 \ No newline at end of file +bf903b2ecac5d7b25c9cc899cae41f1d69aafe4e \ No newline at end of file diff --git a/src/build.c b/src/build.c index 3384e6db85..2302fc20b1 100644 --- a/src/build.c +++ b/src/build.c @@ -1458,6 +1458,9 @@ CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName){ ** set back to prior value. But schema changes are infrequent ** and the probability of hitting the same cookie value is only ** 1 chance in 2^32. So we're safe enough. +** +** IMPLEMENTATION-OF: R-34230-56049 SQLite automatically increments +** the schema-version whenever the schema changes. */ void sqlite3ChangeCookie(Parse *pParse, int iDb){ sqlite3 *db = pParse->db; diff --git a/src/vdbe.c b/src/vdbe.c index 3965a012fa..915bf2dda0 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -3208,10 +3208,9 @@ case OP_Transaction: { } /* Gather the schema version number for checking: - ** IMPLEMENTATION-OF: R-32195-19465 The schema version is used by SQLite - ** each time a query is executed to ensure that the internal cache of the - ** schema used when compiling the SQL query matches the schema of the - ** database against which the compiled query is actually executed. + ** IMPLEMENTATION-OF: R-03189-51135 As each SQL statement runs, the schema + ** version is checked to ensure that the schema has not changed since the + ** SQL statement was prepared. */ sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&iMeta); iGen = db->aDb[pOp->p1].pSchema->iGeneration;