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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b67892cf
Commit
b67892cf
authored
Mar 03, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn all new features off by default.
parent
e667c0f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+4
-4
storage/innobase/srv/srv0srv.cc
storage/innobase/srv/srv0srv.cc
+2
-2
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+4
-4
storage/xtradb/srv/srv0srv.cc
storage/xtradb/srv/srv0srv.cc
+2
-2
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
b67892cf
...
...
@@ -16591,8 +16591,8 @@ static MYSQL_SYSVAR_BOOL(compress_index_pages, srv_page_compress_index_pages,
static
MYSQL_SYSVAR_BOOL
(
use_trim
,
srv_use_trim
,
PLUGIN_VAR_OPCMDARG
,
"Use trim."
,
NULL
,
NULL
,
TRU
E
);
"Use trim.
Default FALSE.
"
,
NULL
,
NULL
,
FALS
E
);
#ifdef HAVE_LZ4
static
MYSQL_SYSVAR_BOOL
(
use_lz4
,
srv_use_lz4
,
...
...
@@ -16612,8 +16612,8 @@ static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
static
MYSQL_SYSVAR_BOOL
(
use_mtflush
,
srv_use_mtflush
,
PLUGIN_VAR_OPCMDARG
,
"Use multi-threaded flush. Default
TRU
E."
,
NULL
,
NULL
,
TRU
E
);
"Use multi-threaded flush. Default
FALS
E."
,
NULL
,
NULL
,
FALS
E
);
static
struct
st_mysql_sys_var
*
innobase_system_variables
[]
=
{
MYSQL_SYSVAR
(
additional_mem_pool_size
),
...
...
storage/innobase/srv/srv0srv.cc
View file @
b67892cf
...
...
@@ -152,7 +152,7 @@ UNIV_INTERN my_bool srv_page_compress_index_pages = FALSE;
UNIV_INTERN
long
srv_trim_pct
=
100
;
/* If this flag is TRUE, then we will use fallocate(PUCH_HOLE)
to the pages */
UNIV_INTERN
my_bool
srv_use_trim
=
TRU
E
;
UNIV_INTERN
my_bool
srv_use_trim
=
FALS
E
;
/* If this flag is TRUE, then we will use posix fallocate for file extentsion */
UNIV_INTERN
my_bool
srv_use_posix_fallocate
=
FALSE
;
/* If this flag is TRUE, then we disable doublewrite buffer */
...
...
@@ -162,7 +162,7 @@ UNIV_INTERN my_bool srv_use_lz4 = FALSE;
/* Number of threads used for multi-threaded flush */
UNIV_INTERN
long
srv_mtflush_threads
=
MTFLUSH_DEFAULT_WORKER
;
/* If this flag is TRUE, then we will use multi threaded flush. */
UNIV_INTERN
my_bool
srv_use_mtflush
=
TRU
E
;
UNIV_INTERN
my_bool
srv_use_mtflush
=
FALS
E
;
#ifdef __WIN__
/* Windows native condition variables. We use runtime loading / function
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
b67892cf
...
...
@@ -17952,8 +17952,8 @@ static MYSQL_SYSVAR_BOOL(compress_index_pages, srv_page_compress_index_pages,
static
MYSQL_SYSVAR_BOOL
(
use_trim
,
srv_use_trim
,
PLUGIN_VAR_OPCMDARG
,
"Use trim."
,
NULL
,
NULL
,
TRU
E
);
"Use trim.
Default FALSE.
"
,
NULL
,
NULL
,
FALS
E
);
#ifdef HAVE_LZ4
static
MYSQL_SYSVAR_BOOL
(
use_lz4
,
srv_use_lz4
,
...
...
@@ -17973,8 +17973,8 @@ static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
static
MYSQL_SYSVAR_BOOL
(
use_mtflush
,
srv_use_mtflush
,
PLUGIN_VAR_OPCMDARG
,
"Use multi-threaded flush. Default
TRU
E."
,
NULL
,
NULL
,
TRU
E
);
"Use multi-threaded flush. Default
FALS
E."
,
NULL
,
NULL
,
FALS
E
);
static
struct
st_mysql_sys_var
*
innobase_system_variables
[]
=
{
MYSQL_SYSVAR
(
log_block_size
),
...
...
storage/xtradb/srv/srv0srv.cc
View file @
b67892cf
...
...
@@ -170,7 +170,7 @@ level is set for the table*/
UNIV_INTERN
long
srv_compress_zlib_level
=
6
;
/* If this flag is TRUE, then we will use fallocate(PUCH_HOLE)
to the pages */
UNIV_INTERN
my_bool
srv_use_trim
=
TRU
E
;
UNIV_INTERN
my_bool
srv_use_trim
=
FALS
E
;
/* If this flag is TRUE, then we will use posix fallocate for file extentsion */
UNIV_INTERN
my_bool
srv_use_posix_fallocate
=
FALSE
;
/* If this flag is TRUE, then we disable doublewrite buffer */
...
...
@@ -180,7 +180,7 @@ UNIV_INTERN my_bool srv_use_lz4 = FALSE;
/* Number of threads used for multi-threaded flush */
UNIV_INTERN
long
srv_mtflush_threads
=
MTFLUSH_DEFAULT_WORKER
;
/* If this flag is TRUE, then we will use multi threaded flush. */
UNIV_INTERN
my_bool
srv_use_mtflush
=
TRU
E
;
UNIV_INTERN
my_bool
srv_use_mtflush
=
FALS
E
;
#ifdef __WIN__
/* Windows native condition variables. We use runtime loading / function
...
...
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