Skip to content

Commit ef77847

Browse files
vinchenknielsen
authored andcommitted
fix common test suite
1 parent 4378990 commit ef77847

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

include/mysql.h.pp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
my_bool thread_specific_malloc;
3636
unsigned char compress;
3737
my_bool unused3;
38+
unsigned long real_network_read_len;
3839
void *thd;
3940
unsigned int last_errno;
4041
unsigned char error;

mysql-test/r/mysqld--help.result

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,9 @@ The following options may be given as the first argument:
774774
--range-alloc-block-size=#
775775
Allocation block size for storing ranges during
776776
optimization
777+
--read-binlog-speed-limit=#
778+
Maximum speed(KB/s) to read binlog from master (0 = no
779+
limit)
777780
--read-buffer-size=#
778781
Each thread that does a sequential scan allocates a
779782
buffer of this size for each table it scans. If you do
@@ -1399,6 +1402,7 @@ query-cache-type OFF
13991402
query-cache-wlock-invalidate FALSE
14001403
query-prealloc-size 24576
14011404
range-alloc-block-size 4096
1405+
read-binlog-speed-limit 0
14021406
read-buffer-size 131072
14031407
read-only FALSE
14041408
read-rnd-buffer-size 262144

mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3439,6 +3439,20 @@ NUMERIC_BLOCK_SIZE 1024
34393439
ENUM_VALUE_LIST NULL
34403440
READ_ONLY NO
34413441
COMMAND_LINE_ARGUMENT REQUIRED
3442+
VARIABLE_NAME READ_BINLOG_SPEED_LIMIT
3443+
SESSION_VALUE NULL
3444+
GLOBAL_VALUE 0
3445+
GLOBAL_VALUE_ORIGIN COMPILE-TIME
3446+
DEFAULT_VALUE 0
3447+
VARIABLE_SCOPE GLOBAL
3448+
VARIABLE_TYPE BIGINT UNSIGNED
3449+
VARIABLE_COMMENT Maximum speed(KB/s) to read binlog from master (0 = no limit)
3450+
NUMERIC_MIN_VALUE 0
3451+
NUMERIC_MAX_VALUE 18446744073709551615
3452+
NUMERIC_BLOCK_SIZE 1
3453+
ENUM_VALUE_LIST NULL
3454+
READ_ONLY NO
3455+
COMMAND_LINE_ARGUMENT REQUIRED
34423456
VARIABLE_NAME READ_BUFFER_SIZE
34433457
SESSION_VALUE 131072
34443458
GLOBAL_VALUE 131072

0 commit comments

Comments
 (0)