Skip to content

Commit 6790bf0

Browse files
committed
Merge 10.1 into 10.2
2 parents bbd4844 + 384f4d1 commit 6790bf0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ GLOBAL_VALUE 0
642642
GLOBAL_VALUE_ORIGIN COMPILE-TIME
643643
DEFAULT_VALUE 0
644644
VARIABLE_SCOPE GLOBAL
645-
VARIABLE_TYPE BIGINT UNSIGNED
645+
VARIABLE_TYPE INT UNSIGNED
646646
VARIABLE_COMMENT InnoDB system tablespace size to be set in recovery.
647647
NUMERIC_MIN_VALUE 0
648648
NUMERIC_MAX_VALUE 4294967295

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22945,7 +22945,7 @@ static MYSQL_SYSVAR_BOOL(trx_purge_view_update_only_debug,
2294522945
" but the each purges were not done yet.",
2294622946
NULL, NULL, FALSE);
2294722947

22948-
static MYSQL_SYSVAR_ULONG(data_file_size_debug,
22948+
static MYSQL_SYSVAR_UINT(data_file_size_debug,
2294922949
srv_sys_space_size_debug,
2295022950
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
2295122951
"InnoDB system tablespace size to be set in recovery.",

storage/innobase/include/srv0srv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ extern my_bool srv_purge_view_update_only_debug;
538538

539539
/** Value of MySQL global used to disable master thread. */
540540
extern my_bool srv_master_thread_disabled_debug;
541-
extern ulong srv_sys_space_size_debug;
541+
extern uint srv_sys_space_size_debug;
542542
#endif /* UNIV_DEBUG */
543543

544544
#define SRV_SEMAPHORE_WAIT_EXTENSION 7200

storage/innobase/srv/srv0start.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ ibool srv_was_started = FALSE;
139139
static ibool srv_start_has_been_called = FALSE;
140140
#ifdef UNIV_DEBUG
141141
/** InnoDB system tablespace to set during recovery */
142-
UNIV_INTERN ulong srv_sys_space_size_debug;
142+
UNIV_INTERN uint srv_sys_space_size_debug;
143143
#endif /* UNIV_DEBUG */
144144

145145
/** Bit flags for tracking background thread creation. They are used to

storage/xtradb/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21172,7 +21172,7 @@ static MYSQL_SYSVAR_BOOL(trx_purge_view_update_only_debug,
2117221172
"but the each purges were not done yet.",
2117321173
NULL, NULL, FALSE);
2117421174

21175-
static MYSQL_SYSVAR_ULONG(data_file_size_debug,
21175+
static MYSQL_SYSVAR_UINT(data_file_size_debug,
2117621176
srv_sys_space_size_debug,
2117721177
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
2117821178
"InnoDB system tablespace size to be set in recovery.",

storage/xtradb/include/srv0srv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ extern my_bool srv_ibuf_disable_background_merge;
623623

624624
#ifdef UNIV_DEBUG
625625
extern my_bool srv_purge_view_update_only_debug;
626-
extern ulong srv_sys_space_size_debug;
626+
extern uint srv_sys_space_size_debug;
627627
#endif /* UNIV_DEBUG */
628628

629629
#define SRV_SEMAPHORE_WAIT_EXTENSION 7200

storage/xtradb/srv/srv0start.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ UNIV_INTERN ibool srv_was_started = FALSE;
132132
static ibool srv_start_has_been_called = FALSE;
133133
#ifdef UNIV_DEBUG
134134
/** InnoDB system tablespace to set during recovery */
135-
UNIV_INTERN ulong srv_sys_space_size_debug;
135+
UNIV_INTERN uint srv_sys_space_size_debug;
136136
#endif /* UNIV_DEBUG */
137137

138138
/** At a shutdown this value climbs from SRV_SHUTDOWN_NONE to

0 commit comments

Comments
 (0)