summaryrefslogtreecommitdiff
path: root/mysql-test/t/group_by_null.test
blob: 93e965671ddcf5116df483de6014b05fe1673cf8 (plain)
1
2
3
4
5
6
7
#
# MDEV-5461 Assertion `length <= column->length' fails in write_block_record with functions in select list, GROUP BY, ORDER BY
#
create table t1 (a int);
insert into t1 values (1),(2);
select max('foo') from t1 group by value(a), extractvalue('bar','qux') order by "v";
drop table t1;