diff options
author | Michael Widenius <monty@askmonty.org> | 2011-06-24 13:05:57 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-06-24 13:05:57 +0300 |
commit | 3d4e3472886a7d3fd939c0cc0b49637fc8c48498 (patch) | |
tree | b6976541ad7db25437133d52bfbcb87cb162096c /mysql-test/r | |
parent | 94b3e6a80912177f3d2b97e189df06f16f381b29 (diff) | |
parent | 66b3e82953acbaf0997fb279ded63059b9247eaf (diff) | |
download | mariadb-git-3d4e3472886a7d3fd939c0cc0b49637fc8c48498.tar.gz |
Automatic merge
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/join.result | 19 | ||||
-rw-r--r-- | mysql-test/r/plugin_innodb.result | 11 |
2 files changed, 30 insertions, 0 deletions
diff --git a/mysql-test/r/join.result b/mysql-test/r/join.result index 96504df4b1e..dae3d16c781 100644 --- a/mysql-test/r/join.result +++ b/mysql-test/r/join.result @@ -1,4 +1,5 @@ drop table if exists t1,t2,t3; +drop view if exists v1,v2; CREATE TABLE t1 (S1 INT); CREATE TABLE t2 (S1 INT); INSERT INTO t1 VALUES (1); @@ -1220,4 +1221,22 @@ f1 2 DEALLOCATE PREPARE stmt; DROP TABLE t1; +# +# Bug LP:798597: Incorrect "Duplicate entry" error with views and +# GROUP BY +# +CREATE TABLE t1 ( f1 int NOT NULL , f2 int NOT NULL ) ; +INSERT INTO t1 VALUES (214,0),(6,6); +CREATE TABLE t2 ( f2 int) ; +INSERT INTO t2 VALUES (88),(88); +CREATE ALGORITHM=MERGE VIEW v1 AS SELECT t1.f1, t2.f2 FROM (t2 LEFT JOIN t1 ON (t2.f2 <> t1.f1)) WHERE (t1.f2 <= 0) ; +CREATE ALGORITHM=MERGE VIEW v2 AS SELECT t1.f1, t2.f2 FROM (t2 LEFT JOIN t1 ON (t2.f2 <> t1.f1)) WHERE (t1.f2 <= 0 or t1.f2 is null) ; +SELECT f1 , MIN(f2) FROM v1 GROUP BY f1; +f1 MIN(f2) +214 88 +SELECT f1 , MIN(f2) FROM v2 GROUP BY f1; +f1 MIN(f2) +214 88 +drop table t1,t2; +drop view v1,v2; End of 5.1 tests diff --git a/mysql-test/r/plugin_innodb.result b/mysql-test/r/plugin_innodb.result new file mode 100644 index 00000000000..48510ad8745 --- /dev/null +++ b/mysql-test/r/plugin_innodb.result @@ -0,0 +1,11 @@ +install plugin example soname 'ha_example.so'; +create table t1(a int) engine=example; +drop table t1; +alter table mysql.plugin engine=innodb; +restart +create table t1(a int) engine=example; +select * from t1; +a +drop table t1; +alter table mysql.plugin engine=myisam; +uninstall plugin example; |