mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Update evidence marks on the URI filename tests to conform to the latest
documentation. FossilOrigin-Name: 1bab03c4811b5e5b3d15632bc2a3844891f9fad7
This commit is contained in:
12
manifest
12
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
|
||||
|
@ -1 +1 @@
|
||||
e3350dbd9f472c27ea6bc872d85098ac89d874c7
|
||||
1bab03c4811b5e5b3d15632bc2a3844891f9fad7
|
@ -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} "
|
||||
|
Reference in New Issue
Block a user