mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
7 lines
287 B
Text
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;
|