1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Merge branch '11.1' into 11.2

This commit is contained in:
Yuchen Pei
2023-10-27 18:11:56 +11:00
504 changed files with 15082 additions and 28987 deletions

View File

@ -646,14 +646,14 @@ DROP TABLE t1, t2;
create table t1 (a int, b decimal(13, 3));
insert into t1 values (1, 0.123);
--disable_ps2_protocol
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
select a, (select max(b) from t1) into outfile "../../tmp/subselect.out.file.1" from t1;
--enable_ps2_protocol
delete from t1;
load data infile "subselect.out.file.1" into table t1;
load data infile "../../tmp/subselect.out.file.1" into table t1;
select * from t1;
drop table t1;
let $datadir=`select @@datadir`;
--remove_file $datadir/test/subselect.out.file.1
--remove_file $MYSQLTEST_VARDIR/tmp/subselect.out.file.1
#
# Bug #37894: Assertion in init_read_record_seq in handler.h line 1444