drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 1 | # 2007 November 23 |
| 2 | # |
| 3 | # The author disclaims copyright to this source code. In place of |
| 4 | # a legal notice, here is a blessing: |
| 5 | # |
| 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. |
| 9 | # |
| 10 | #*********************************************************************** |
| 11 | # |
| 12 | # The tests in this file ensure that a temporary table is used |
| 13 | # when required by an "INSERT INTO ... SELECT ..." statement. |
| 14 | # |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame^] | 15 | # $Id: insert5.test,v 1.3 2007/12/13 07:58:51 danielk1977 Exp $ |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 16 | |
| 17 | set testdir [file dirname $argv0] |
| 18 | source $testdir/tester.tcl |
| 19 | |
danielk1977 | 284f4ac | 2007-12-10 05:03:46 +0000 | [diff] [blame] | 20 | ifcapable !subquery { |
| 21 | finish_test |
| 22 | return |
| 23 | } |
| 24 | |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 25 | # Return true if the compilation of the sql passed as an argument |
| 26 | # includes the opcode OpenEphemeral. An "INSERT INTO ... SELECT" |
| 27 | # statement includes such an opcode if a temp-table is used |
| 28 | # to store intermediate results. |
| 29 | # |
| 30 | proc uses_temp_table {sql} { |
| 31 | return [expr {[lsearch [execsql "EXPLAIN $sql"] OpenEphemeral]>=0}] |
| 32 | } |
| 33 | |
| 34 | # Construct the sample database. |
| 35 | # |
| 36 | do_test insert5-1.0 { |
| 37 | file delete -force test2.db test2.db-journal |
| 38 | execsql { |
| 39 | CREATE TABLE MAIN(Id INTEGER, Id1 INTEGER); |
| 40 | CREATE TABLE B(Id INTEGER, Id1 INTEGER); |
| 41 | CREATE VIEW v1 AS SELECT * FROM B; |
| 42 | CREATE VIEW v2 AS SELECT * FROM MAIN; |
| 43 | INSERT INTO MAIN(Id,Id1) VALUES(2,3); |
| 44 | INSERT INTO B(Id,Id1) VALUES(2,3); |
| 45 | } |
| 46 | } {} |
| 47 | |
| 48 | # Run the query. |
| 49 | # |
| 50 | do_test insert5-1.1 { |
| 51 | execsql { |
| 52 | INSERT INTO B |
| 53 | SELECT * FROM B UNION ALL |
| 54 | SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id); |
| 55 | SELECT * FROM B; |
| 56 | } |
| 57 | } {2 3 2 3 2 3} |
| 58 | |
| 59 | do_test insert5-2.1 { |
| 60 | uses_temp_table { INSERT INTO b SELECT * FROM main } |
| 61 | } {0} |
| 62 | do_test insert5-2.2 { |
| 63 | uses_temp_table { INSERT INTO b SELECT * FROM b } |
| 64 | } {1} |
| 65 | do_test insert5-2.3 { |
| 66 | uses_temp_table { INSERT INTO b SELECT (SELECT id FROM b), id1 FROM main } |
| 67 | } {1} |
| 68 | do_test insert5-2.4 { |
| 69 | uses_temp_table { INSERT INTO b SELECT id1, (SELECT id FROM b) FROM main } |
| 70 | } {1} |
| 71 | do_test insert5-2.5 { |
| 72 | uses_temp_table { |
| 73 | INSERT INTO b |
| 74 | SELECT * FROM main WHERE id = (SELECT id1 FROM b WHERE main.id = b.id) } |
| 75 | } {1} |
| 76 | do_test insert5-2.6 { |
| 77 | uses_temp_table { INSERT INTO b SELECT * FROM v1 } |
| 78 | } {1} |
| 79 | do_test insert5-2.7 { |
| 80 | uses_temp_table { INSERT INTO b SELECT * FROM v2 } |
| 81 | } {0} |
| 82 | do_test insert5-2.8 { |
| 83 | uses_temp_table { |
| 84 | INSERT INTO b |
| 85 | SELECT * FROM main WHERE id > 10 AND max(id1, (SELECT id FROM b)) > 10; |
| 86 | } |
| 87 | } {1} |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame^] | 88 | |
| 89 | # UPDATE: Using a column from the outer query (main.id) in the GROUP BY |
| 90 | # or ORDER BY of a sub-query is no longer supported. |
| 91 | # |
| 92 | # do_test insert5-2.9 { |
| 93 | # uses_temp_table { |
| 94 | # INSERT INTO b |
| 95 | # SELECT * FROM main |
| 96 | # WHERE id > 10 AND (SELECT count(*) FROM v2 GROUP BY main.id) |
| 97 | # } |
| 98 | # } {} |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 99 | do_test insert5-2.9 { |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame^] | 100 | catchsql { |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 101 | INSERT INTO b |
| 102 | SELECT * FROM main |
| 103 | WHERE id > 10 AND (SELECT count(*) FROM v2 GROUP BY main.id) |
| 104 | } |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame^] | 105 | } {1 {no such column: main.id}} |
drh | 48d1178 | 2007-11-23 15:02:19 +0000 | [diff] [blame] | 106 | |
| 107 | finish_test |