| OLD | NEW |
| 1 # 2009 March 18 | 1 # 2009 March 18 |
| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 INSERT INTO t2 VALUES('e', 'f'); | 47 INSERT INTO t2 VALUES('e', 'f'); |
| 48 INSERT INTO t2 VALUES('g', 'h'); | 48 INSERT INTO t2 VALUES('g', 'h'); |
| 49 INSERT INTO t1 SELECT * FROM t2; | 49 INSERT INTO t1 SELECT * FROM t2; |
| 50 SELECT * FROM t1; | 50 SELECT * FROM t1; |
| 51 } | 51 } |
| 52 } {e f e+ f+ g h g+ h+} | 52 } {e f e+ f+ g h g+ h+} |
| 53 | 53 |
| 54 integrity_check tkt3731-1.4 | 54 integrity_check tkt3731-1.4 |
| 55 | 55 |
| 56 finish_test | 56 finish_test |
| OLD | NEW |