1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Add extra tests to this branch.

FossilOrigin-Name: b0e3b88a792623f7761586d8bfac058ddf939f49944ff0c4376627ff920895db
This commit is contained in:
dan
2017-08-10 19:10:23 +00:00
parent 4dd176eaab
commit 09fc79bd6f
4 changed files with 49 additions and 9 deletions

View File

@ -125,4 +125,20 @@ do_catchsql_test 4.1 {
);
} {0 {}}
do_catchsql_test 4.2 {
DROP TABLE IF EXISTS t5;
CREATE VIRTUAL TABLE temp.t5 USING csv_wr(
data=
'1,2,3,4
5,6,7,8
9,10,11,12
13,14,15,16',
columns=4,
schema=
'CREATE TABLE t3(a,b,c,d) WITHOUT ROWID',
testflags=1
);
} {0 {vtable constructor failed: t5}}
finish_test