mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-27 20:41:58 +03:00
Modify the test cases in tkt1444.test that were failing. I am convinced that the test cases were incorrect. (CVS 3288)
FossilOrigin-Name: 0534f6e15b84560124c3f1abd05f2967d10261c4
This commit is contained in:
@ -39,18 +39,18 @@ do_test tkt1444-1.2 {
|
||||
execsql {
|
||||
SELECT * FROM DemoTable UNION ALL SELECT * FROM DemoView;
|
||||
}
|
||||
} {9 8 7.0 1 2 3.0 1 2 3 9 8 7}
|
||||
} {9 8 7.0 1 2 3.0 1 2 3.0 9 8 7.0}
|
||||
do_test tkt1444-1.3 {
|
||||
execsql {
|
||||
DROP VIEW DemoView;
|
||||
CREATE VIEW DemoView AS SELECT * FROM DemoTable;
|
||||
SELECT * FROM DemoTable UNION ALL SELECT * FROM DemoView ORDER BY 1;
|
||||
}
|
||||
} {1 2 3.0 1 2 3 9 8 7.0 9 8 7}
|
||||
} {1 2 3.0 1 2 3.0 9 8 7.0 9 8 7.0}
|
||||
do_test tkt1444-1.4 {
|
||||
execsql {
|
||||
SELECT * FROM DemoTable UNION ALL SELECT * FROM DemoView;
|
||||
}
|
||||
} {9 8 7.0 1 2 3.0 9 8 7 1 2 3}
|
||||
} {9 8 7.0 1 2 3.0 9 8 7.0 1 2 3.0}
|
||||
|
||||
finish_test
|
||||
|
Reference in New Issue
Block a user