1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge 11.2 into 11.4

This commit is contained in:
Marko Mäkelä
2024-10-03 14:32:14 +03:00
560 changed files with 5796 additions and 1398 deletions

View File

@@ -119,7 +119,9 @@ let $1=100;
begin;
while ($1)
{
--disable_cursor_protocol
eval select round($t2_aver_size + RAND() * $t2_max_rand) into @act_size;
--enable_cursor_protocol
set @data = repeat('a', @act_size);
insert into t2 set data = @data;
dec $1;
@@ -162,7 +164,9 @@ let $1= 300;
begin;
while ($1)
{
--disable_cursor_protocol
eval select round($t3_aver_size + RAND() * $t3_max_rand) into @act_size;
--enable_cursor_protocol
insert into t3 set data= repeat('a', @act_size);
dec $1;
}