-C Fix\sa\sproblem\sin\sthe\smemdb\svfs\sxLock()\sfunction\sallowing\sclients\sto\supgrade\sto\sEXCLUSIVE\slocks\swhen\sother\sconnections\sare\sholding\sSHARED.
-D 2022-12-05T14:12:14.522
+C Add\stest\scase\sthat\sshould\shave\sbeen\spart\sof\sprevious\scommit.
+D 2022-12-05T14:20:54.124
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
F test/mem5.test c6460fba403c5703141348cd90de1c294188c68f
F test/memdb.test c1f2a343ad14398d5d6debda6ea33e80d0dafcc7
F test/memdb1.test 2c4e9cc10d21c6bf4e217d72b7f6b8ba9b2605971bb2c5e6df76018e189f98f5
+F test/memdb2.test d1dc6058ee59f78c7f46f85e069bb974a981920f8c499f0167690d16c0b079f6
F test/memjournal.test 70f3a00c7f84ee2978ad14e831231caa1e7f23915a2c54b4f775a021d5740c6c
F test/memjournal2.test 6b9083cfaab9a3281ec545c3da2487999e8025fb7501bbae10f713f80c56454c
F test/memleak.test 10b9c6c57e19fc68c32941495e9ba1c50123f6e2
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 35d670b3593a46e13ded541ef477fa35dac6bcb9c31e6cf4b90bd7fa550a8ee2
-R ce00ca3fa8b85afb0cb81cb19f7a317f
+P 15f0be8a640e7bfa4130edd4650a745337bd96083b119a1553f9abf9ff066806
+R 0d5d7f5190e8e855ad343ae2d8e33bd7
U dan
-Z 91e55fba552fdd00d9614ef94c1303dc
+Z 56bab95316a0c053d879db2cb26ee05d
# Remove this line to create a well-formed Fossil manifest.
-15f0be8a640e7bfa4130edd4650a745337bd96083b119a1553f9abf9ff066806
\ No newline at end of file
+dc7dd2d3e50e7cc474b22f1b5b219da32bcd7aa1ba56864d1dbcf0d3a6fa06f2
\ No newline at end of file
--- /dev/null
+# 2022-12-05
+#
+# The author disclaims copyright to this source code. In place of
+# a legal notice, here is a blessing:
+#
+# May you do good and not evil.
+# May you find forgiveness for yourself and forgive others.
+# May you share freely, never taking more than you give.
+#
+#***********************************************************************
+# This file implements regression tests for SQLite library. The
+# focus of this file is the "memdb" VFS
+#
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+set testprefix memdb1
+do_not_use_codec
+
+ifcapable !deserialize {
+ finish_test
+ return
+}
+
+db close
+
+#-------------------------------------------------------------------------
+# Test that when using a memdb database, it is not possible to upgrade
+# to an EXCLUSIVE lock if some other client is holding SHARED.
+#
+sqlite3 db file:/test.db?vfs=memdb -uri 1
+sqlite3 db2 file:/test.db?vfs=memdb -uri 1
+
+do_execsql_test 1.1 {
+ CREATE TABLE t1(x, y);
+ INSERT INTO t1 VALUES(1, 2);
+}
+
+do_execsql_test -db db2 1.2 {
+ BEGIN;
+ SELECT * FROM t1;
+} {1 2}
+
+do_execsql_test 1.3 {
+ BEGIN;
+ INSERT INTO t1 VALUES(3, 4);
+}
+
+do_catchsql_test 1.4 {
+ COMMIT
+} {1 {database is locked}}
+
+do_execsql_test -db db2 1.5 {
+ SELECT * FROM t1;
+ END;
+} {1 2}
+
+do_execsql_test 1.6 {
+ COMMIT
+} {}
+
+do_execsql_test -db db2 1.7 {
+ SELECT * FROM t1
+} {1 2 3 4}
+
+finish_test