Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 126) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e31be5824813d1690a4ee7bac9e49658 |
User & Date: | drh 2000-08-04 13:51:11.000 |
Context
2000-08-04
| ||
13:52 | :-) (CVS 127) (check-in: 695fd68eb6 user: drh tags: trunk) | |
13:51 | :-) (CVS 126) (check-in: e31be58248 user: drh tags: trunk) | |
13:49 | :-) (CVS 1702) (check-in: 14785d94fb user: drh tags: trunk) | |
Changes
Changes to test/lock.test.
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - + | # drh@hwaci.com # http://www.hwaci.com/drh/ # #*********************************************************************** # This file implements regression tests for SQLite library. The # focus of this script is database locks. # |
︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + | # Create a background query that gives us a read lock on the big table # set f [open slow.sql w] puts $f "SELECT a.f1, b.f1 FROM big AS a, big AS B" puts $f "WHERE a.f1+b.f1==0.5;" close $f set ::lock_pid [exec ./sqlite testdb <slow.sql &] |
︙ |