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
13113c9e
Commit
13113c9e
authored
Feb 15, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wrong type causing build failure on windows.
parent
db4b6aa3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/xtradb/include/srv0srv.h
storage/xtradb/include/srv0srv.h
+1
-1
storage/xtradb/srv/srv0srv.c
storage/xtradb/srv/srv0srv.c
+1
-1
No files found.
storage/xtradb/include/srv0srv.h
View file @
13113c9e
...
...
@@ -243,7 +243,7 @@ extern long long srv_ibuf_max_size;
extern
ulong
srv_ibuf_active_contract
;
extern
ulong
srv_ibuf_accel_rate
;
extern
ulint
srv_checkpoint_age_target
;
extern
ul
int
srv_flush_neighbor_pages
;
extern
ul
ong
srv_flush_neighbor_pages
;
extern
ulint
srv_deprecated_enable_unsafe_group_commit
;
extern
ulong
srv_read_ahead
;
extern
ulong
srv_adaptive_flushing_method
;
...
...
storage/xtradb/srv/srv0srv.c
View file @
13113c9e
...
...
@@ -446,7 +446,7 @@ UNIV_INTERN ulong srv_ibuf_accel_rate = 100;
#define PCT_IBUF_IO(pct) ((ulint) (srv_io_capacity * srv_ibuf_accel_rate * ((double) pct / 10000.0)))
UNIV_INTERN
ulint
srv_checkpoint_age_target
=
0
;
UNIV_INTERN
ul
int
srv_flush_neighbor_pages
=
1
;
/* 0:disable 1:area 2:contiguous */
UNIV_INTERN
ul
ong
srv_flush_neighbor_pages
=
1
;
/* 0:disable 1:area 2:contiguous */
UNIV_INTERN
ulint
srv_deprecated_enable_unsafe_group_commit
=
0
;
UNIV_INTERN
ulong
srv_read_ahead
=
3
;
/* 1: random 2: linear 3: Both */
...
...
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