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
f0da0628
Commit
f0da0628
authored
Dec 14, 2015
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compile error on Windows
parent
3e206a51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/xtradb/include/os0file.h
storage/xtradb/include/os0file.h
+1
-1
storage/xtradb/row/row0merge.cc
storage/xtradb/row/row0merge.cc
+1
-1
No files found.
storage/xtradb/include/os0file.h
View file @
f0da0628
...
...
@@ -558,7 +558,7 @@ UNIV_INTERN
void
os_file_set_nocache
(
/*================*/
int
fd
,
/*!< in: file descriptor to alter */
os_file_t
fd
,
/*!< in: file descriptor to alter */
const
char
*
file_name
,
/*!< in: file name, used in the
diagnostic message */
const
char
*
operation_name
);
/*!< in: "open" or "create"; used in the
...
...
storage/xtradb/row/row0merge.cc
View file @
f0da0628
...
...
@@ -3126,7 +3126,7 @@ row_merge_file_create(
if
(
merge_file
->
fd
>=
0
)
{
if
(
srv_disable_sort_file_cache
)
{
os_file_set_nocache
(
merge_file
->
fd
,
os_file_set_nocache
(
OS_FILE_FROM_FD
(
merge_file
->
fd
)
,
"row0merge.cc"
,
"sort"
);
}
}
...
...
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