1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MDEV-20634 Report disallowed subquery errors as such (instead of parse error)

This commit is contained in:
Alexander Barkov
2019-09-20 10:36:20 +04:00
parent b9dea911bf
commit 2f88bd2da2
21 changed files with 133 additions and 136 deletions

View File

@ -4,7 +4,7 @@
# BUG#10308: purge log with subselect
# Bug#28553: mysqld crash in "purge master log before(select time from information_schema)"
#
--error 1064
--error ER_SUBQUERIES_NOT_SUPPORTED
purge master logs before (select adddate(current_timestamp(), interval -4 day));
purge master logs before adddate(current_timestamp(), interval -4 day);