summaryrefslogtreecommitdiff
path: root/mysql-test/main/derived_view.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2021-06-22 12:23:13 -0700
committerIgor Babaev <igor@askmonty.org>2021-06-22 12:23:13 -0700
commit7f24e37fbecd5af08ec473a7a1449f305977c6d7 (patch)
tree43d1e1161f8b0f31fd2a8af198d6de11fc64cf9f /mysql-test/main/derived_view.result
parentce868cd89e352f7ce04d8db260f96893df2bf26c (diff)
downloadmariadb-git-7f24e37fbecd5af08ec473a7a1449f305977c6d7.tar.gz
MDEV-25679 Wrong result selecting from simple view with LIMIT and ORDER BY
Cherry-picking only test case.
Diffstat (limited to 'mysql-test/main/derived_view.result')
-rw-r--r--mysql-test/main/derived_view.result21
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/main/derived_view.result b/mysql-test/main/derived_view.result
index 00940d88805..f761a9f92de 100644
--- a/mysql-test/main/derived_view.result
+++ b/mysql-test/main/derived_view.result
@@ -3480,3 +3480,24 @@ Warnings:
Note 1003 select `test`.`t1`.`pk` AS `pk`,`test`.`t1`.`a` AS `a`,3 AS `d`,`test`.`t2`.`b` AS `b`,`test`.`t3`.`c` AS `c` from `test`.`t1` join `test`.`t2` join `test`.`t3` where `test`.`t1`.`a` = 3 and `test`.`t1`.`pk` <= 2
drop view v1;
drop table t1,t2,t3;
+#
+# MDEV-25679: view / derived table defined as ordered select with LIMIT
+#
+create table t1 (a int);
+insert into t1 values (3), (7), (1);
+create view v1 as (select a from t1 limit 2) order by a desc;
+(select a from t1 limit 2) order by a desc;
+a
+7
+3
+select * from v1;
+a
+7
+3
+select * from ((select a from t1 limit 2) order by a desc) dt;
+a
+3
+7
+drop view v1;
+drop table t1;
+# End of 10.2 tests