mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
7
mysql-test/main/group_by_null.test
Normal file
7
mysql-test/main/group_by_null.test
Normal file
@ -0,0 +1,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;
|
Reference in New Issue
Block a user