Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6790bf04
Commit
6790bf04
authored
Jan 07, 2017
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.1 into 10.2
parents
bbd4844a
384f4d1e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/suite/sys_vars/r/sysvars_innodb.result
mysql-test/suite/sys_vars/r/sysvars_innodb.result
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
storage/innobase/include/srv0srv.h
storage/innobase/include/srv0srv.h
+1
-1
storage/innobase/srv/srv0start.cc
storage/innobase/srv/srv0start.cc
+1
-1
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+1
-1
storage/xtradb/include/srv0srv.h
storage/xtradb/include/srv0srv.h
+1
-1
storage/xtradb/srv/srv0start.cc
storage/xtradb/srv/srv0start.cc
+1
-1
No files found.
mysql-test/suite/sys_vars/r/sysvars_innodb.result
View file @
6790bf04
...
...
@@ -642,7 +642,7 @@ GLOBAL_VALUE 0
GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE
BIG
INT UNSIGNED
VARIABLE_TYPE INT UNSIGNED
VARIABLE_COMMENT InnoDB system tablespace size to be set in recovery.
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
...
...
storage/innobase/handler/ha_innodb.cc
View file @
6790bf04
...
...
@@ -22945,7 +22945,7 @@ static MYSQL_SYSVAR_BOOL(trx_purge_view_update_only_debug,
" but the each purges were not done yet."
,
NULL
,
NULL
,
FALSE
);
static
MYSQL_SYSVAR_U
LONG
(
data_file_size_debug
,
static
MYSQL_SYSVAR_U
INT
(
data_file_size_debug
,
srv_sys_space_size_debug
,
PLUGIN_VAR_RQCMDARG
|
PLUGIN_VAR_READONLY
,
"InnoDB system tablespace size to be set in recovery."
,
...
...
storage/innobase/include/srv0srv.h
View file @
6790bf04
...
...
@@ -538,7 +538,7 @@ extern my_bool srv_purge_view_update_only_debug;
/** Value of MySQL global used to disable master thread. */
extern
my_bool
srv_master_thread_disabled_debug
;
extern
u
long
srv_sys_space_size_debug
;
extern
u
int
srv_sys_space_size_debug
;
#endif
/* UNIV_DEBUG */
#define SRV_SEMAPHORE_WAIT_EXTENSION 7200
...
...
storage/innobase/srv/srv0start.cc
View file @
6790bf04
...
...
@@ -139,7 +139,7 @@ ibool srv_was_started = FALSE;
static
ibool
srv_start_has_been_called
=
FALSE
;
#ifdef UNIV_DEBUG
/** InnoDB system tablespace to set during recovery */
UNIV_INTERN
u
long
srv_sys_space_size_debug
;
UNIV_INTERN
u
int
srv_sys_space_size_debug
;
#endif
/* UNIV_DEBUG */
/** Bit flags for tracking background thread creation. They are used to
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
6790bf04
...
...
@@ -21172,7 +21172,7 @@ static MYSQL_SYSVAR_BOOL(trx_purge_view_update_only_debug,
"but the each purges were not done yet."
,
NULL
,
NULL
,
FALSE
);
static
MYSQL_SYSVAR_U
LONG
(
data_file_size_debug
,
static
MYSQL_SYSVAR_U
INT
(
data_file_size_debug
,
srv_sys_space_size_debug
,
PLUGIN_VAR_RQCMDARG
|
PLUGIN_VAR_READONLY
,
"InnoDB system tablespace size to be set in recovery."
,
...
...
storage/xtradb/include/srv0srv.h
View file @
6790bf04
...
...
@@ -623,7 +623,7 @@ extern my_bool srv_ibuf_disable_background_merge;
#ifdef UNIV_DEBUG
extern
my_bool
srv_purge_view_update_only_debug
;
extern
u
long
srv_sys_space_size_debug
;
extern
u
int
srv_sys_space_size_debug
;
#endif
/* UNIV_DEBUG */
#define SRV_SEMAPHORE_WAIT_EXTENSION 7200
...
...
storage/xtradb/srv/srv0start.cc
View file @
6790bf04
...
...
@@ -132,7 +132,7 @@ UNIV_INTERN ibool srv_was_started = FALSE;
static
ibool
srv_start_has_been_called
=
FALSE
;
#ifdef UNIV_DEBUG
/** InnoDB system tablespace to set during recovery */
UNIV_INTERN
u
long
srv_sys_space_size_debug
;
UNIV_INTERN
u
int
srv_sys_space_size_debug
;
#endif
/* UNIV_DEBUG */
/** At a shutdown this value climbs from SRV_SHUTDOWN_NONE to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment