Files
sqlite/test/misc2.test
T
drh d60ccc6a75 In a SELECT, the rowid of a view or subquery which is really a join is
set to NULL if the join is flattened.  Ticket #364. (CVS 1034)

FossilOrigin-Name: bad8b55833f5120003a19883154dac5146cc36a3
2003-06-24 10:39:46 +00:00

51 lines
1.3 KiB
Plaintext

# 2003 June 21
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive others.
# May you share freely, never taking more than you give.
#
#***********************************************************************
# This file implements regression tests for SQLite library.
#
# This file implements tests for miscellanous features that were
# left out of other test files.
#
# $Id: misc2.test,v 1.2 2003/06/24 10:39:46 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
# Test for ticket #360
#
do_test misc2-1.1 {
catchsql {
CREATE TABLE FOO(bar integer);
CREATE TRIGGER foo_insert BEFORE INSERT ON foo BEGIN
SELECT CASE WHEN (NOT new.bar BETWEEN 0 AND 20)
THEN raise(rollback, 'aiieee') END;
END;
INSERT INTO foo(bar) VALUES (1);
}
} {1 aiieee}
# Make sure ROWID works on a view and a subquery. Ticket #364
#
do_test misc2-2.1 {
execsql {
CREATE TABLE t1(a,b,c);
INSERT INTO t1 VALUES(1,2,3);
CREATE TABLE t2(x,y,z);
INSERT INTO t2 VALUES(7,8,9);
SELECT rowid, * FROM (SELECT * FROM t1, t2);
}
} {{} 1 2 3 7 8 9}
do_test misc2-2.2 {
execsql {
CREATE VIEW v1 AS SELECT * FROM t1, t2;
SELECT rowid, * FROM v1;
}
} {{} 1 2 3 7 8 9}