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
f130da7b
Commit
f130da7b
authored
Apr 05, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clarify/simplify new innodb sysvars: help texts
parent
87cf8651
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
12 deletions
+16
-12
mysql-test/suite/sys_vars/r/sysvars_innodb.result
mysql-test/suite/sys_vars/r/sysvars_innodb.result
+4
-4
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+6
-4
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+6
-4
No files found.
mysql-test/suite/sys_vars/r/sysvars_innodb.result
View file @
f130da7b
...
...
@@ -740,7 +740,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 1
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED
VARIABLE_COMMENT
Rotate any page having a key older than this
VARIABLE_COMMENT
Key rotation - re-encrypt in background all pages that were encrypted with a key that many (or more) versions behind
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 0
...
...
@@ -768,7 +768,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED
VARIABLE_COMMENT N
o
of threads performing background key rotation and scrubbing
VARIABLE_COMMENT N
umber
of threads performing background key rotation and scrubbing
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 0
...
...
@@ -796,7 +796,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE OFF
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE BOOLEAN
VARIABLE_COMMENT En
crypt all tables in the storage engine
VARIABLE_COMMENT En
able InnoDB on-disk data encryption
NUMERIC_MIN_VALUE NULL
NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
...
...
@@ -1860,7 +1860,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE OFF
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE BOOLEAN
VARIABLE_COMMENT Enable
redo log
scrubbing
VARIABLE_COMMENT Enable
background redo log (ib_logfile0, ib_logfile1...)
scrubbing
NUMERIC_MIN_VALUE NULL
NUMERIC_MAX_VALUE NULL
NUMERIC_BLOCK_SIZE NULL
...
...
storage/innobase/handler/ha_innodb.cc
View file @
f130da7b
...
...
@@ -19125,12 +19125,12 @@ static MYSQL_SYSVAR_ULONG(fatal_semaphore_wait_threshold, srv_fatal_semaphore_wa
0
);
static
MYSQL_SYSVAR_BOOL
(
encrypt_tables
,
srv_encrypt_tables
,
0
,
"En
crypt all tables in the storage engine
"
,
"En
able InnoDB on-disk data encryption
"
,
0
,
0
,
0
);
static
MYSQL_SYSVAR_UINT
(
encryption_threads
,
srv_n_fil_crypt_threads
,
PLUGIN_VAR_RQCMDARG
,
"N
o
of threads performing background key rotation and "
"N
umber
of threads performing background key rotation and "
"scrubbing"
,
NULL
,
innodb_encryption_threads_update
,
...
...
@@ -19139,7 +19139,9 @@ static MYSQL_SYSVAR_UINT(encryption_threads, srv_n_fil_crypt_threads,
static
MYSQL_SYSVAR_UINT
(
encryption_rotate_key_age
,
srv_fil_crypt_rotate_key_age
,
PLUGIN_VAR_RQCMDARG
,
"Rotate any page having a key older than this"
,
"Key rotation - re-encrypt in background "
"all pages that were encrypted with a key that "
"many (or more) versions behind"
,
NULL
,
innodb_encryption_rotate_key_age_update
,
srv_fil_crypt_rotate_key_age
,
0
,
UINT_MAX32
,
0
);
...
...
@@ -19160,7 +19162,7 @@ static MYSQL_SYSVAR_UINT(default_page_encryption_key, srv_default_page_encryptio
static
MYSQL_SYSVAR_BOOL
(
scrub_log
,
srv_scrub_log
,
PLUGIN_VAR_OPCMDARG
|
PLUGIN_VAR_READONLY
,
"Enable
redo log
scrubbing"
,
"Enable
background redo log (ib_logfile0, ib_logfile1...)
scrubbing"
,
0
,
0
,
0
);
static
MYSQL_SYSVAR_ULONGLONG
(
scrub_log_speed
,
innodb_scrub_log_speed
,
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
f130da7b
...
...
@@ -20308,12 +20308,12 @@ static MYSQL_SYSVAR_ULONG(fatal_semaphore_wait_threshold, srv_fatal_semaphore_wa
0
);
static
MYSQL_SYSVAR_BOOL
(
encrypt_tables
,
srv_encrypt_tables
,
0
,
"En
crypt all tables in the storage engine
"
,
"En
able InnoDB on-disk data encryption
"
,
0
,
0
,
0
);
static
MYSQL_SYSVAR_UINT
(
encryption_threads
,
srv_n_fil_crypt_threads
,
PLUGIN_VAR_RQCMDARG
,
"N
o
of threads performing background key rotation and "
"N
umber
of threads performing background key rotation and "
"scrubbing"
,
NULL
,
innodb_encryption_threads_update
,
...
...
@@ -20322,7 +20322,9 @@ static MYSQL_SYSVAR_UINT(encryption_threads, srv_n_fil_crypt_threads,
static
MYSQL_SYSVAR_UINT
(
encryption_rotate_key_age
,
srv_fil_crypt_rotate_key_age
,
PLUGIN_VAR_RQCMDARG
,
"Rotate any page having a key older than this"
,
"Key rotation - re-encrypt in background "
"all pages that were encrypted with a key that "
"many (or more) versions behind"
,
NULL
,
innodb_encryption_rotate_key_age_update
,
srv_fil_crypt_rotate_key_age
,
0
,
UINT_MAX32
,
0
);
...
...
@@ -20343,7 +20345,7 @@ static MYSQL_SYSVAR_UINT(default_page_encryption_key, srv_default_page_encryptio
static
MYSQL_SYSVAR_BOOL
(
scrub_log
,
srv_scrub_log
,
PLUGIN_VAR_OPCMDARG
|
PLUGIN_VAR_READONLY
,
"Enable
redo log
scrubbing"
,
"Enable
background redo log (ib_logfile0, ib_logfile1...)
scrubbing"
,
0
,
0
,
0
);
static
MYSQL_SYSVAR_ULONGLONG
(
scrub_log_speed
,
innodb_scrub_log_speed
,
...
...
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