]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Document that the order of an update hook call is unspecied vis-a-vis the final resul...
authorstephan <stephan@noemail.net>
Thu, 28 Mar 2024 10:58:18 +0000 (10:58 +0000)
committerstephan <stephan@noemail.net>
Thu, 28 Mar 2024 10:58:18 +0000 (10:58 +0000)
FossilOrigin-Name: 3d4b1f0791384d3e531d6757daecf67e5b873954de61f37032474e3ae23cd22b

manifest
manifest.uuid
src/sqlite.h.in

index 0580f02c1ddaee0116cf1f17d55b1d0473ebbb5c..335dcd41b5ebc834a1299d2127b08a00983d6dfc 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Update\scomments\sin\sfts5.h.
-D 2024-03-27T20:34:14.698
+C Document\sthat\sthe\sorder\sof\san\supdate\shook\scall\sis\sunspecied\svis-a-vis\sthe\sfinal\sresult\sof\sthe\soperation\swhich\striggers\sthat\shook.\sDoc\schanges\sonly.
+D 2024-03-28T10:58:18.871
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -752,7 +752,7 @@ F src/resolve.c eb1860b134fb044fd819c4347105c148d5aac7c6498032be2829e5cc95619b28
 F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97
 F src/select.c 15a221347789e393b39e7d2d2bd102167979c95a1ce0675bb870b86a24ca6cf4
 F src/shell.c.in 0354ca51eee5fbf6af394a7ef9f5ef6823ef45b743db65431f6777e4d5be2199
-F src/sqlite.h.in e9af5761aab316d52e5a5ac11b42d6a25eaaa49352e982c14f1080aab684b5c4
+F src/sqlite.h.in b5fb41b730da29d7cec58c6020afba627baf58a3dca4e30814bd674bc2a6fc86
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h 3f046c04ea3595d6bfda99b781926b17e672fd6d27da2ba6d8d8fc39981dcb54
 F src/sqliteInt.h f8928f0397d797046396dd9d360a6af8ce6dcb48bd72ea290165b07c8c518744
@@ -2183,8 +2183,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P fe209099f5c348f1280b9b827ffbf6a6742ebdd1a23ef189445147894b1832ba
-R c56763aed4d4e5080faa164bf6334faf
-U dan
-Z d4f93415501168b234b57e2165e695ab
+P 862945d5c432c27377e90d93d64c4655eefcc369d086eb51edef925fb3d80b57
+R c8b4c3bc800aa223f9c43a96ed885105
+U stephan
+Z 8903ace573828f0152a9ba1563932171
 # Remove this line to create a well-formed Fossil manifest.
index 1b105c4bee04f4f28f0e94b08780a03298969b9c..8763970a6307667bbb179c548410ee1c894c1fb0 100644 (file)
@@ -1 +1 @@
-862945d5c432c27377e90d93d64c4655eefcc369d086eb51edef925fb3d80b57
\ No newline at end of file
+3d4b1f0791384d3e531d6757daecf67e5b873954de61f37032474e3ae23cd22b
\ No newline at end of file
index 6841cf38f7398d1499769ccfbd1308b3f3a26b0b..0a020d691cc116a13478dbd2ddf063ee3bc8e09c 100644 (file)
@@ -6887,6 +6887,12 @@ int sqlite3_autovacuum_pages(
 ** The exceptions defined in this paragraph might change in a future
 ** release of SQLite.
 **
+** Whether the update hook is invoked before or after the
+** corresponding change is currently unspecified and may differ
+** depending on the type of change. Do not rely on the order of the
+** hook call with regards to the final result of the operation which
+** triggers the hook.
+**
 ** The update hook implementation must not do anything that will modify
 ** the database connection that invoked the update hook.  Any actions
 ** to modify the database connection must be deferred until after the