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
a5bc0929
Commit
a5bc0929
authored
Mar 01, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge marko@bk-internal.mysql.com:/home/bk/mysql-4.1
into hundin.mysql.fi:/home/marko/mysql-4.1
parents
ff3631ec
ae481f75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
innobase/include/srv0srv.h
innobase/include/srv0srv.h
+2
-4
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+3
-4
No files found.
innobase/include/srv0srv.h
View file @
a5bc0929
...
...
@@ -52,7 +52,7 @@ extern ulint* srv_data_file_is_raw_partition;
extern
ibool
srv_auto_extend_last_data_file
;
extern
ulint
srv_last_file_size_max
;
extern
ul
int
srv_auto_extend_increment
;
extern
ul
ong
srv_auto_extend_increment
;
extern
ibool
srv_created_new_raw
;
...
...
@@ -111,11 +111,9 @@ extern ibool srv_use_doublewrite_buf;
extern
ibool
srv_set_thread_priorities
;
extern
int
srv_query_thread_priority
;
extern
ul
int
srv_max_purge_lag
;
extern
ul
ong
srv_max_purge_lag
;
extern
ibool
srv_use_awe
;
extern
ibool
srv_use_adaptive_hash_indexes
;
extern
ulint
srv_max_purge_lag
;
/*-------------------------------------------*/
extern
ulint
srv_n_rows_inserted
;
...
...
innobase/srv/srv0srv.c
View file @
a5bc0929
...
...
@@ -96,7 +96,7 @@ ulint srv_last_file_size_max = 0; /* if != 0, this tells
the max size auto-extending
may increase the last data
file size */
ul
int
srv_auto_extend_increment
=
8
;
/* If the last data file is
ul
ong
srv_auto_extend_increment
=
8
;
/* If the last data file is
auto-extended, we add this
many pages to it at a time */
ulint
*
srv_data_file_is_raw_partition
=
NULL
;
...
...
@@ -266,9 +266,6 @@ disable adaptive hash indexes */
ibool
srv_use_awe
=
FALSE
;
ibool
srv_use_adaptive_hash_indexes
=
TRUE
;
/* Maximum allowable purge history length. <=0 means 'infinite'. */
ulint
srv_max_purge_lag
=
0
;
/*-------------------------------------------*/
ulint
srv_n_spin_wait_rounds
=
20
;
ulint
srv_spin_wait_delay
=
5
;
...
...
@@ -881,6 +878,8 @@ srv_general_init(void)
/*======================= InnoDB Server FIFO queue =======================*/
/* Maximum allowable purge history length. <=0 means 'infinite'. */
ulong
srv_max_purge_lag
=
0
;
/*************************************************************************
Puts an OS thread to wait if there are too many concurrent threads
...
...
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