What happened?
create table test_group
(
TypeFlag varchar(100)
);
insert into test_group values (30),(7),(10);
GO
select
TypeFlag -- varchar(100)
from test_group
group by typeflag -- coredump(signal 11)
-- group by typeflag -- ok!
union all
select 40 as TypeFlag; -- int
GO
When executing the above SQL statement with the "group by typeflag" clause, the database crashed due to signal 11
Version
BABEL_5_X_DEV (Default)
Extension
None
Which flavor of Linux are you using when you see the bug?
Ubuntu (Default)
Relevant log output
Code of Conduct
What happened?
When executing the above SQL statement with the "group by typeflag" clause, the database crashed due to signal 11
Version
BABEL_5_X_DEV (Default)
Extension
None
Which flavor of Linux are you using when you see the bug?
Ubuntu (Default)
Relevant log output
Code of Conduct