1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Add the example from #3359 to the test suite. (CVS 6027)

FossilOrigin-Name: 84f8417c0794d3e5cec88f59ea71a7d557044409
This commit is contained in:
danielk1977
2008-12-14 14:45:20 +00:00
parent e13fab3ccf
commit 01ecbeeb57
3 changed files with 19 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sthe\sname\sof\sthe\ssource\salgorithm\sin\sthe\scomments\sof\sthe\sscript\sgenerators\nfor\sthe\srecently\schecked-in\stest\scases\sfor\sinteger\sboundary-value\stesting.\s(CVS\s6026)
D 2008-12-14T02:55:16
C Add\sthe\sexample\sfrom\s#3359\sto\sthe\stest\ssuite.\s(CVS\s6027)
D 2008-12-14T14:45:21
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in f7e4c81c347b04f7b0f1c1b081a168645d7b8af7
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -620,7 +620,7 @@ F test/vacuum2.test fd87eec0ed72c6cc0809f7867929e2895affed92
F test/vacuum3.test f39ad1428347c5808cd2da7578c470f186a4d0ce
F test/varint.test ab7b110089a08b9926ed7390e7e97bdefeb74102
F test/veryquick.test e265401afefa994cdf2fe4b6f286b1e87c2f9b9d
F test/view.test 7fba28a47f76541f6aea9542f62f3412e3519bad
F test/view.test 45f518205ecdb6dd23a86dd4a99bb4ae945e625d
F test/vtab1.test e321e3c80434fe8de97fa4ad815882d2c7838d21
F test/vtab2.test 7bcffc050da5c68f4f312e49e443063e2d391c0d
F test/vtab3.test baad99fd27217f5d6db10660522e0b7192446de1
@@ -672,7 +672,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
P 45277238d355caa1fbeea67c6c6d1a8f231eabda
R 4027369295aec877799b668aae8bfd01
U drh
Z fc0cb5cead65de3eb9d6b7422c58548e
P adba0f3c01ba2407466d0120c411c398218bdaeb
R fad0d590913fe8f9e5e994000a8088be
U danielk1977
Z 4887ada2d24d472ddc8849201ce49da5

View File

@@ -1 +1 @@
adba0f3c01ba2407466d0120c411c398218bdaeb
84f8417c0794d3e5cec88f59ea71a7d557044409

View File

@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing VIEW statements.
#
# $Id: view.test,v 1.38 2008/08/21 14:54:29 drh Exp $
# $Id: view.test,v 1.39 2008/12/14 14:45:21 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -566,4 +566,14 @@ do_test view-19.3 {
}
} {rowid 1 a 1 x 5 rowid 2 a 4 x 11}
# Ticket #3539 had this crashing (see commit [5940]).
do_test view-20.1 {
execsql {
DROP TABLE IF EXISTS t1;
DROP VIEW IF EXISTS v1;
CREATE TABLE t1(c1);
CREATE VIEW v1 AS SELECT c1 FROM (SELECT t1.c1 FROM t1);
}
} {}
finish_test