Add tests to prevent a recurrance of bug #16. Also: put a hyperlink to the new
ticket screen on the main page of the website. (CVS 527) FossilOrigin-Name: cdab6dad323dd1e95ec8b7684a7c4b06c75905e0
This commit is contained in:
parent
c8d30ac109
commit
adbe353fc6
14
manifest
14
manifest
@ -1,5 +1,5 @@
|
||||
C Fix\sfor\sbug\s#15:\sAdd\sthe\ssqlite_changes()\sAPI\sfunction\sfor\sretrieving\sthe\nnumber\sof\srows\sthat\schanged\sin\sthe\sprevious\soperation.\s(CVS\s526)
|
||||
D 2002-04-12T10:08:59
|
||||
C Add\stests\sto\sprevent\sa\srecurrance\sof\sbug\s#16.\sAlso:\sput\sa\shyperlink\sto\sthe\snew\nticket\sscreen\son\sthe\smain\spage\sof\sthe\swebsite.\s(CVS\s527)
|
||||
D 2002-04-12T13:11:53
|
||||
F Makefile.in 50f1b3351df109b5774771350d8c1b8d3640130d
|
||||
F Makefile.template 89e373b2dad0321df00400fa968dc14b61a03296
|
||||
F README a4c0ba11354ef6ba0776b400d057c59da47a4cc0
|
||||
@ -67,7 +67,7 @@ F test/expr.test 846795016b5993a7411f772eebe82ab67bd7230a
|
||||
F test/func.test d34e461f0acb0cf2978a4b3a3e098460f2ea8fbc
|
||||
F test/in.test c09312672e3f0709fa02c8e2e9cd8fb4bd6269aa
|
||||
F test/index.test c8a471243bbf878974b99baf5badd59407237cf3
|
||||
F test/insert.test c36d534a4ab58c2cd452a273e51b2b0dd1ede1f9
|
||||
F test/insert.test 58d44c19b3557f67f4aeb5110ed9ef02038c3684
|
||||
F test/insert2.test eb8481878a7f52ccb4e3346f87550f5afdd77f76
|
||||
F test/intpkey.test 31b5f28b2c44273e6695cf36ab2e4133aee7753c
|
||||
F test/ioerr.test 57d9bffaca18b34f9e976f786eadc2591d6efc6a
|
||||
@ -123,7 +123,7 @@ F www/download.tcl 29aa6679ca29621d10613f60ebbbda18f4b91c49
|
||||
F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
|
||||
F www/faq.tcl fb1e92e2f604546694f83a36d969492f52fb685d
|
||||
F www/formatchng.tcl 2ce21ff30663fad6618198fe747ce675df577590
|
||||
F www/index.tcl 2a9653ebeeaba3aca3401f476ba0e0e4acb40929
|
||||
F www/index.tcl d0c52fbf031d0a3ee6d9d77aa669d5a4b24b6130
|
||||
F www/lang.tcl 2d4654255ad1ec7f58d02dc41b59528c0ee6ea44
|
||||
F www/mingw.tcl f1c7c0a7f53387dd9bb4f8c7e8571b7561510ebc
|
||||
F www/opcode.tcl bdec8ef9f100dbd87bbef8976c54b88e43fd8ccc
|
||||
@ -131,7 +131,7 @@ F www/speed.tcl da8afcc1d3ccc5696cfb388a68982bc3d9f7f00f
|
||||
F www/sqlite.tcl 8b5884354cb615049aed83039f8dfe1552a44279
|
||||
F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331
|
||||
F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
|
||||
P 43a77f019d34e1a6b3f502ad0ec31a00c8fdbe6e
|
||||
R f1c51fffab48448616c03a8f7db64a46
|
||||
P 6e71493b9dc77d508c3ce90562766789e87e6d80
|
||||
R 1c28bb516c3dd5de76adf35f517aa9d2
|
||||
U drh
|
||||
Z fa8a7c3395ff2734ddb7f18394f23f2a
|
||||
Z 59bf2c2973a5fd320a12e7c400509189
|
||||
|
@ -1 +1 @@
|
||||
6e71493b9dc77d508c3ce90562766789e87e6d80
|
||||
cdab6dad323dd1e95ec8b7684a7c4b06c75905e0
|
@ -11,7 +11,7 @@
|
||||
# This file implements regression tests for SQLite library. The
|
||||
# focus of this file is testing the INSERT statement.
|
||||
#
|
||||
# $Id: insert.test,v 1.9 2002/02/19 13:39:23 drh Exp $
|
||||
# $Id: insert.test,v 1.10 2002/04/12 13:11:53 drh Exp $
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
@ -162,6 +162,8 @@ do_test insert-3.5 {
|
||||
set x
|
||||
} {ok}
|
||||
|
||||
# Test of expressions in the VALUES clause
|
||||
#
|
||||
do_test insert-4.1 {
|
||||
execsql {
|
||||
CREATE TABLE t3(a,b,c);
|
||||
@ -192,5 +194,18 @@ do_test insert-4.5 {
|
||||
SELECT b,c FROM t3 WHERE a IS NULL;
|
||||
}
|
||||
} {6 7}
|
||||
do_test insert-4.6 {
|
||||
catchsql {
|
||||
INSERT INTO t3 VALUES(notafunc(2,3),2,3);
|
||||
}
|
||||
} {1 {no such function: notafunc}}
|
||||
do_test insert-4.7 {
|
||||
execsql {
|
||||
INSERT INTO t3 VALUES(min(1,2,3),max(1,2,3),99);
|
||||
SELECT * FROM t3 WHERE c=99;
|
||||
}
|
||||
} {1 3 99}
|
||||
|
||||
# Test
|
||||
|
||||
finish_test
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# Run this TCL script to generate HTML for the index.html file.
|
||||
#
|
||||
set rcsid {$Id: index.tcl,v 1.58 2002/04/03 20:50:21 drh Exp $}
|
||||
set rcsid {$Id: index.tcl,v 1.59 2002/04/12 13:11:53 drh Exp $}
|
||||
|
||||
puts {<html>
|
||||
<head><title>SQLite: An SQL Database Engine In A C Library</title></head>
|
||||
@ -29,13 +29,20 @@ big database server. SQLite <b>is</b> the server. The SQLite
|
||||
library reads and writes directly to and from the database files
|
||||
on disk.</p>}
|
||||
|
||||
puts {<table align="right"hspace="10">
|
||||
<tr><td align="center" bgcolor="#8ee5ee">
|
||||
<table border="2"><tr><td align="center">
|
||||
<a href="download.html"><big><b>Download<br>SQLite
|
||||
puts {
|
||||
<table align="right" hspace="10" cellpadding=0 cellspacing=0 broder=0>
|
||||
<tr><td align="right" bgcolor="#cacae4">
|
||||
<table border="2" width="100%" cellspacing=0 cellpadding=5><tr><td align="left">
|
||||
Quick Links:
|
||||
<ul>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="http://cvs.hwaci.com:2080/sqlite/timeline">Change Log</a></li>
|
||||
<li><a href="http://cvs.hwaci.com:2080/sqlite/tktnew">Report a bug</a></li>
|
||||
</ul>
|
||||
</td></tr></table>
|
||||
</td></tr>
|
||||
</table>}
|
||||
</table>
|
||||
}
|
||||
|
||||
puts {<h2>Features</h2>
|
||||
|
||||
@ -63,10 +70,11 @@ puts {<h2>Current Status</h2>
|
||||
|
||||
<p>A <a href="changes.html">Change Summary</a> is available on this
|
||||
website. You can also access a detailed
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/timeline">change history</a>
|
||||
and a list of
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/rptview?rn=2">open bugs</a>
|
||||
from the
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/timeline">change history</a>,
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/rptview?rn=2">view open bugs</a>,
|
||||
or
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/tktnew">report new bugs</a>
|
||||
at the
|
||||
<a href="http://cvs.hwaci.com:2080/sqlite/">CVS server</a>.</p>
|
||||
|
||||
<p>Complete source code and precompiled binaries for the latest release are
|
||||
|
Loading…
x
Reference in New Issue
Block a user