Commit e5dfdc56 authored by Marko Mäkelä's avatar Marko Mäkelä

Cleanup: use constexpr for SRV_UNDO_TABLESPACE_SIZE_IN_PAGES

parent bf303419
...@@ -321,8 +321,9 @@ extern my_bool srv_undo_log_truncate; ...@@ -321,8 +321,9 @@ extern my_bool srv_undo_log_truncate;
/* Enables or disables this prefix optimization. Disabled by default. */ /* Enables or disables this prefix optimization. Disabled by default. */
extern my_bool srv_prefix_index_cluster_optimization; extern my_bool srv_prefix_index_cluster_optimization;
/** Default size of UNDO tablespace while it is created new. */ /** Default size of UNDO tablespace (10MiB for innodb_page_size=16k) */
extern const ulint SRV_UNDO_TABLESPACE_SIZE_IN_PAGES; constexpr ulint SRV_UNDO_TABLESPACE_SIZE_IN_PAGES= (10U << 20) /
UNIV_PAGE_SIZE_DEF;
extern char* srv_log_group_home_dir; extern char* srv_log_group_home_dir;
......
...@@ -125,10 +125,6 @@ my_bool srv_undo_log_truncate; ...@@ -125,10 +125,6 @@ my_bool srv_undo_log_truncate;
/** Maximum size of undo tablespace. */ /** Maximum size of undo tablespace. */
unsigned long long srv_max_undo_log_size; unsigned long long srv_max_undo_log_size;
/** Default undo tablespace size in UNIV_PAGEs count (10MB). */
const ulint SRV_UNDO_TABLESPACE_SIZE_IN_PAGES =
((1024 * 1024) * 10) / UNIV_PAGE_SIZE_DEF;
/** Set if InnoDB must operate in read-only mode. We don't do any /** Set if InnoDB must operate in read-only mode. We don't do any
recovery and open all tables in RO mode instead of RW mode. We don't recovery and open all tables in RO mode instead of RW mode. We don't
sync the max trx id to disk either. */ sync the max trx id to disk either. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment