Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release 2.1.7 (CVS 329) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
71cb9e8ad7616b1f84dc04700685bd4d |
User & Date: | drh 2001-12-15 02:58:19.000 |
Context
2001-12-15
| ||
03:00 | Typo in change log fixed. (CVS 330) (check-in: 3a31daf646 user: drh tags: trunk) | |
02:58 | Release 2.1.7 (CVS 329) (check-in: 71cb9e8ad7 user: drh tags: trunk) | |
02:47 | Fix a bug in the sqliteBtreeFirst() function which was causing the first row of a table to be repeated during a scan. (CVS 328) (check-in: 1404ac076b user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 2.1.7 |
Changes to publish.sh.
︙ | ︙ | |||
33 34 35 36 37 38 39 | TCLDIR=/home/drh/tcltk/8.2linux TCLSTUBLIB=$TCLDIR/libtclstub8.2g.a OPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DOS_UNIX=1 -DOS_WIN=0' gcc -fPIC $OPTS -O2 -I. -I$TCLDIR -shared *.c $TCLSTUBLIB -o tclsqlite.so strip tclsqlite.so mv tclsqlite.so .. cd .. | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | TCLDIR=/home/drh/tcltk/8.2linux TCLSTUBLIB=$TCLDIR/libtclstub8.2g.a OPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DOS_UNIX=1 -DOS_WIN=0' gcc -fPIC $OPTS -O2 -I. -I$TCLDIR -shared *.c $TCLSTUBLIB -o tclsqlite.so strip tclsqlite.so mv tclsqlite.so .. cd .. rm -f tclsqlite.so.gz gzip tclsqlite.so # Build the tclsqlite.dll shared library that can be imported into tclsh # or wish on windows. # make target_source cd tsrc |
︙ | ︙ |
Changes to www/changes.tcl.
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2001 Dec 14 (2.1.6)} { <li>Fix the locking mechanism yet again to prevent <b>sqlite_exec()</b> from returning SQLITE_PROTOCOL unnecessarily. This time the bug was a race condition in the locking code. This change effects both POSIX and Windows users.</li> } | > > > > > > > > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2001 Dec 14 (2.1.7)} { <li>Fix a bug in <b>CREATE TEMPORARY TABLE</b> which was causing the table to be initially allocated in the main database file instead of in the separate temporary file. This bug could cause the library to suffer an assertion failure and it cause cause "page leaks" in the main database file. <li>Fix a bug in the b-tree subsystem that could sometimes cause the first row of a table to be repeated during a database scan.</li> } chng {2001 Dec 14 (2.1.6)} { <li>Fix the locking mechanism yet again to prevent <b>sqlite_exec()</b> from returning SQLITE_PROTOCOL unnecessarily. This time the bug was a race condition in the locking code. This change effects both POSIX and Windows users.</li> } |
︙ | ︙ |