1
0
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:
danielk1977
2006-06-23 14:43:30 +00:00
parent 212b218c88
commit f2a3e686dd
3 changed files with 10 additions and 10 deletions

View File

@ -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