Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Duplicate
-
5.5.35
-
None
-
None
-
None
-
Windows 7 64-bit
Description
With ONLY_FULL_GROUP_BY in sql mode, the following query will cause the server to crash. Nothing is written to error log.
table definitions:
create table test1 (a int unsigned not null);
create table test2 (b int unsigned not null);
server crash:
select * from test1 inner join (
select * from test2 group by b) as test2alias
on (test1.a = test2alias.b);
Attachments
Issue Links
- duplicates
-
MDEV-5617 mysqld crashes when running a query with ONLY_FULL_GROUP_BY
- Closed