diff options
author | Varun Gupta <varun.gupta@mariadb.com> | 2019-03-12 19:41:46 +0530 |
---|---|---|
committer | Varun Gupta <varun.gupta@mariadb.com> | 2019-03-12 19:48:16 +0530 |
commit | fe8cf7f13142b034aef9b7f88e6260340c6ac37d (patch) | |
tree | c8617966d3a605707b3ba9021f9e6ff6bd2adaf9 /mysql-test/r | |
parent | a4e5888248811e625ad703ee4feb717f37b0e38a (diff) | |
download | mariadb-git-fe8cf7f13142b034aef9b7f88e6260340c6ac37d.tar.gz |
MDEV-18502: Server crash in find_field_in_tables upon 2nd execution of SP which causes ER_WRONG_GROUP_FIELD
Fixed by the commit cb11b3fb.
Adding the test case for this issue.
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/view.result | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 5a6395a5f25..faa04361543 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -6750,5 +6750,19 @@ testcase drop view v1; drop table t1; # +# MDEV-18502: Server crash in find_field_in_tables upon 2nd execution of SP which causes ER_WRONG_GROUP_FIELD +# +CREATE TABLE t1 (id INT, f VARCHAR(1)); +CREATE VIEW v1 AS SELECT * FROM t1; +INSERT INTO t1 VALUES (1,'a'),(2,'b'); +CREATE PROCEDURE sp() SELECT f AS f1, MAX(id) AS f2 FROM v1 GROUP BY f1, f2 ORDER BY f1; +CALL sp; +ERROR 42000: Can't group on 'f2' +CALL sp; +ERROR 42000: Can't group on 'f2' +DROP PROCEDURE sp; +DROP VIEW v1; +DROP TABLE t1; +# # End of 10.2 tests # |