mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Oops - a random fts2 test I had abandoned slipped into the fts3 batch. (CVS 4252)
FossilOrigin-Name: 709f2aa18a4802a7ca6638c00b2b99440b4a3191
This commit is contained in:
@ -1,44 +0,0 @@
|
||||
# 2007 August 9
|
||||
#
|
||||
# The author disclaims copyright to this source code.
|
||||
#
|
||||
#*************************************************************************
|
||||
# This file implements regression tests for SQLite library. The
|
||||
# DELETE handling required the current data to not contain nulls.
|
||||
# This verifies that we don't add that assumption back in.
|
||||
#
|
||||
# $Id: fts3ap.test,v 1.1 2007/08/20 17:38:42 shess Exp $
|
||||
#
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
|
||||
# If SQLITE_ENABLE_FTS3 is defined, omit this file.
|
||||
ifcapable !fts3 {
|
||||
finish_test
|
||||
return
|
||||
}
|
||||
|
||||
db eval {
|
||||
CREATE VIRTUAL TABLE t1 USING fts3(col_a, col_b);
|
||||
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(1, 'testing', 'testing');
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(2, 'only a', null);
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(3, null, 'only b');
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(4, null, null);
|
||||
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(5, 'testing', 'testing');
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(6, 'only a', null);
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(7, null, 'only b');
|
||||
INSERT INTO t1(rowid, col_a, col_b) VALUES(8, null, null);
|
||||
}
|
||||
|
||||
do_test fts3an-1.1 {
|
||||
execsql "-- REPLACE INTO t1 (rowid, col_a, col_b) VALUES (1, 'text', 'text')"
|
||||
} {}
|
||||
|
||||
do_test fts3an-1.2 {
|
||||
execsql "-- INSERT OR REPLACE INTO t1 (rowid, col_a, col_b) VALUES (1, 'text', 'text')"
|
||||
} {}
|
||||
|
||||
finish_test
|
Reference in New Issue
Block a user