OLD | NEW |
1 # 2014 January 11 | 1 # 2014 January 11 |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 # | 822 # |
823 do_execsql_test 12.1 { | 823 do_execsql_test 12.1 { |
824 WITH RECURSIVE | 824 WITH RECURSIVE |
825 t1(x) AS (VALUES(2) UNION ALL SELECT x+2 FROM t1 WHERE x<20), | 825 t1(x) AS (VALUES(2) UNION ALL SELECT x+2 FROM t1 WHERE x<20), |
826 t2(y) AS (VALUES(3) UNION ALL SELECT y+3 FROM t2 WHERE y<20) | 826 t2(y) AS (VALUES(3) UNION ALL SELECT y+3 FROM t2 WHERE y<20) |
827 SELECT x FROM t1 EXCEPT SELECT y FROM t2 ORDER BY 1; | 827 SELECT x FROM t1 EXCEPT SELECT y FROM t2 ORDER BY 1; |
828 } {2 4 8 10 14 16 20} | 828 } {2 4 8 10 14 16 20} |
829 | 829 |
830 | 830 |
831 finish_test | 831 finish_test |
OLD | NEW |