mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
a4ded0a9b5
TVC can be used in IN subquery and in PARTITION BY struct now. Special variable to control working of optimization added.
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;
|