| OLD | NEW |
| 1 # 2008 December 30 | 1 # 2008 December 30 |
| 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 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 INSERT INTO t102 VALUES ('1'); | 979 INSERT INTO t102 VALUES ('1'); |
| 980 SELECT * FROM t102 AS t0 | 980 SELECT * FROM t102 AS t0 |
| 981 LEFT JOIN t102 AS t1 ON t1.id GLOB 'abc%' | 981 LEFT JOIN t102 AS t1 ON t1.id GLOB 'abc%' |
| 982 JOIN t102 AS t2 ON (t2.id = t0.id OR (t2.id<>555 AND t2.id=t1.id)); | 982 JOIN t102 AS t2 ON (t2.id = t0.id OR (t2.id<>555 AND t2.id=t1.id)); |
| 983 } | 983 } |
| 984 } {1 {} 1} | 984 } {1 {} 1} |
| 985 | 985 |
| 986 | 986 |
| 987 | 987 |
| 988 finish_test | 988 finish_test |
| OLD | NEW |