mariadb/mysql-test/main/group_by_null.test
2018-03-29 13:59:44 +03:00

7 lines
287 B
Text

#
# 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;