cipher_migrate will use MoveFileExW on windows platforms
[sqlcipher.git] / test / countofview.test
blobaebd6ed8e5f7bde05e54ca07353b09bf7f5c988c
1 # 2018-08-04
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
6 #    May you do good and not evil.
7 #    May you find forgiveness for yourself and forgive others.
8 #    May you share freely, never taking more than you give.
10 #***********************************************************************
11
14 set testdir [file dirname $argv0]
15 source $testdir/tester.tcl
16 source $testdir/malloc_common.tcl
17 set testprefix countofview
19 do_execsql_test 1.0 {
20   CREATE TABLE t2(c);
21   CREATE TABLE t3(f);
23   INSERT INTO t2 VALUES(1), (2);
24   INSERT INTO t3 VALUES(3);
27 do_execsql_test 1.1 {
28   select c from t2 union all select f from t3 limit 1 offset 1
29 } {2}
31 do_execsql_test 1.2 {
32   select count(*) from (
33     select c from t2 union all select f from t3 limit 1 offset 1
34   )
35 } {1}
37 do_execsql_test 1.3 {
38   select count(*) from (
39     select c from t2 union all select f from t3
40   )
41 } {3}
43 finish_test