]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Update evidence marks on the URI filename tests to conform to the latest
authordrh <drh@noemail.net>
Mon, 30 May 2011 15:06:48 +0000 (15:06 +0000)
committerdrh <drh@noemail.net>
Mon, 30 May 2011 15:06:48 +0000 (15:06 +0000)
documentation.

FossilOrigin-Name: 1bab03c4811b5e5b3d15632bc2a3844891f9fad7

manifest
manifest.uuid
test/e_uri.test

index f9e0a1ae9441011c2d6748fd43d578db7c19d1ad..207bb8d5bf90a26dc1c7963e079c2256c5f5a099 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Make\ssure\sthe\sP5\sargument\sto\sthe\sOP_VUpdate\sopcode\sis\salways\sset\sto\sa\nvalid\sconflict\sresolution\scode.
-D 2011-05-30T14:35:48.783
+C Update\sevidence\smarks\son\sthe\sURI\sfilename\stests\sto\sconform\sto\sthe\slatest\ndocumentation.
+D 2011-05-30T15:06:48.453
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 11dcc00a8d0e5202def00e81732784fb0cc4fe1d
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -380,7 +380,7 @@ F test/e_resolve.test dcce9308fb13b934ce29591105d031d3e14fbba6
 F test/e_select.test bf385ae3aa0f014c4933ae66fd3e1302138493eb
 F test/e_select2.test 5c3d3da19c7b3e90ae444579db2b70098599ab92
 F test/e_update.test 963d6876064e65f318d1c93aaed36a02b9b389bf
-F test/e_uri.test 9ce11319fb9b271bf7392027f913f7830e93e7a7
+F test/e_uri.test b6da43a10f44d9aa0aff5ffa3c2f3de668361255
 F test/e_vacuum.test 6c09c2af7f2f140518f371c5342100118f779dcf
 F test/enc.test e54531cd6bf941ee6760be041dff19a104c7acea
 F test/enc2.test 6d91a5286f59add0cfcbb2d0da913b76f2242398
@@ -938,7 +938,7 @@ F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/split-sqlite3c.tcl d9be87f1c340285a3e081eb19b4a247981ed290c
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P edb865c35415f9553f8279028120f7b8de2bf7e2
-R 3b765e3c18f9b2a8d8763c389176a0b5
+P e3350dbd9f472c27ea6bc872d85098ac89d874c7
+R 31eb4302622f868d251135572f646bae
 U drh
-Z 3e70f15cebd9551500dd66c2327a7d64
+Z 47e43c01cd8d7b7136f7bc52a005ac53
index f3911243bafa45ec04d6ff76d0d000efc2af3f44..45419984ac9be306f083f7f48d5810912949fb76 100644 (file)
@@ -1 +1 @@
-e3350dbd9f472c27ea6bc872d85098ac89d874c7
\ No newline at end of file
+1bab03c4811b5e5b3d15632bc2a3844891f9fad7
\ No newline at end of file
index b0e2f876de1f3fe4c5a793f2540ed03f640da821..3e474279413a161fd29eff58a50282d946175561 100644 (file)
@@ -48,10 +48,11 @@ proc open_uri_error {uri} {
 # and the filename argument begins with "file:", then the filename is
 # interpreted as a URI.
 #
-# EVIDENCE-OF: R-00067-59538 URI filename interpretation is enabled if
+# EVIDENCE-OF: R-32637-34037 URI filename interpretation is enabled if
 # the SQLITE_OPEN_URI flag is is set in the fourth argument to
 # sqlite3_open_v2(), or if it has been enabled globally using the
-# SQLITE_CONFIG_URI option with the sqlite3_config() method.
+# SQLITE_CONFIG_URI option with the sqlite3_config() method or by the
+# SQLITE_USE_URI compile-time option.
 #
 if {$tcl_platform(platform) == "unix"} {
   set flags [list SQLITE_OPEN_READWRITE SQLITE_OPEN_CREATE]
@@ -140,8 +141,8 @@ if {$tcl_platform(platform) == "unix"} {
   }
 }
 
-# EVIDENCE-OF: R-43804-65312 The 'fragment' component of a URI, if
-# present, is always ignored.
+# EVIDENCE-OF: R-45981-25528 The fragment component of a URI, if
+# present, is ignored.
 #
 #   It is difficult to test that something is ignore correctly. So these tests
 #   just show that adding a fragment does not interfere with the pathname or
@@ -157,14 +158,15 @@ if {$tcl_platform(platform) == "unix"} {
   }
 }
 
-# EVIDENCE-OF: R-00273-20588 SQLite uses the 'path' component of the URI
-# as the path to the database file to open.
+# EVIDENCE-OF: R-62557-09390 SQLite uses the path component of the URI
+# as the name of the disk file which contains the database.
 #
 # EVIDENCE-OF: R-28659-11035 If the path begins with a '/' character,
 # then it is interpreted as an absolute path.
 #
-# EVIDENCE-OF: R-39349-47203 If it does not begin with a '/', it is
-# interpreted as a relative path.
+# EVIDENCE-OF: R-46234-61323 If the path does not begin with a '/'
+# (meaning that the authority section is omitted from the URI) then the
+# path is interpreted as a relative path.
 #
 if {$tcl_platform(platform) == "unix"} {
   foreach {tn uri parse} "