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
593278f9
Commit
593278f9
authored
Jan 10, 2024
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-32050 fixup: Remove srv_purge_rseg_truncate_frequency
parent
4cbf75dd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+3
-1
storage/innobase/include/srv0srv.h
storage/innobase/include/srv0srv.h
+0
-3
storage/innobase/srv/srv0srv.cc
storage/innobase/srv/srv0srv.cc
+0
-3
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
593278f9
...
...
@@ -19349,8 +19349,10 @@ static MYSQL_SYSVAR_ULONGLONG(max_undo_log_size, srv_max_undo_log_size,
10
<<
20
,
10
<<
20
,
1ULL
<<
(
32
+
UNIV_PAGE_SIZE_SHIFT_MAX
),
0
);
static
ulong
innodb_purge_rseg_truncate_frequency
;
static
MYSQL_SYSVAR_ULONG
(
purge_rseg_truncate_frequency
,
srv
_purge_rseg_truncate_frequency
,
innodb
_purge_rseg_truncate_frequency
,
PLUGIN_VAR_OPCMDARG
|
PLUGIN_VAR_DEPRECATED
,
"Deprecated parameter with no effect"
,
NULL
,
NULL
,
128
,
1
,
128
,
0
);
...
...
storage/innobase/include/srv0srv.h
View file @
593278f9
...
...
@@ -263,9 +263,6 @@ extern unsigned long long srv_max_undo_log_size;
extern
uint
srv_n_fil_crypt_threads
;
extern
uint
srv_n_fil_crypt_threads_started
;
/** Rate at which UNDO records should be purged. */
extern
ulong
srv_purge_rseg_truncate_frequency
;
/** Enable or Disable Truncate of UNDO tablespace. */
extern
my_bool
srv_undo_log_truncate
;
...
...
storage/innobase/srv/srv0srv.cc
View file @
593278f9
...
...
@@ -107,9 +107,6 @@ segment). It is quite possible that some of the tablespaces doesn't host
any of the rollback-segment based on configuration used. */
ulint
srv_undo_tablespaces_active
;
/** Rate at which UNDO records should be purged. */
ulong
srv_purge_rseg_truncate_frequency
;
/** Enable or Disable Truncate of UNDO tablespace.
Note: If enabled then UNDO tablespace will be selected for truncate.
While Server waits for undo-tablespace to truncate if user disables
...
...
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