1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

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
This commit is contained in:
drh
2003-06-24 10:39:46 +00:00
parent 18706c08cb
commit d60ccc6a75
4 changed files with 31 additions and 13 deletions

View File

@ -13,7 +13,7 @@
# This file implements tests for miscellanous features that were
# left out of other test files.
#
# $Id: misc2.test,v 1.1 2003/06/22 01:41:50 drh Exp $
# $Id: misc2.test,v 1.2 2003/06/24 10:39:46 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -30,3 +30,21 @@ do_test misc2-1.1 {
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}