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
fafdac33
Commit
fafdac33
authored
Jan 18, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'merge/merge-xtradb-5.5' into 5.5
parents
2d52d3c1
85a5e58d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
storage/xtradb/include/log0online.h
storage/xtradb/include/log0online.h
+5
-1
storage/xtradb/include/univ.i
storage/xtradb/include/univ.i
+2
-2
storage/xtradb/log/log0online.c
storage/xtradb/log/log0online.c
+3
-3
No files found.
storage/xtradb/include/log0online.h
View file @
fafdac33
...
...
@@ -141,7 +141,11 @@ log_online_bitmap_iterator_next(
/** Struct for single bitmap file information */
struct
log_online_bitmap_file_struct
{
char
name
[
FN_REFLEN
];
/*!< Name with full path */
/** Name with full path
61 is a nice magic constant for the extra space needed for the sprintf
template in the cc file
*/
char
name
[
FN_REFLEN
+
61
];
/*!< Name with full path */
os_file_t
file
;
/*!< Handle to opened file */
ib_uint64_t
size
;
/*!< Size of the file */
ib_uint64_t
offset
;
/*!< Offset of the next read,
...
...
storage/xtradb/include/univ.i
View file @
fafdac33
...
...
@@ -64,10 +64,10 @@ component, i.e. we show M.N.P as M.N */
(
INNODB_VERSION_MAJOR
<<
8
|
INNODB_VERSION_MINOR
)
#
ifndef
PERCONA_INNODB_VERSION
#
define
PERCONA_INNODB_VERSION
38.
9
#
define
PERCONA_INNODB_VERSION
38.
10
#
endif
#
define
INNODB_VERSION_STR
"5.5.5
5
-MariaDB-"
IB_TO_STR
(
PERCONA_INNODB_VERSION
)
#
define
INNODB_VERSION_STR
"5.5.5
8
-MariaDB-"
IB_TO_STR
(
PERCONA_INNODB_VERSION
)
#
define
REFMAN
"http://dev.mysql.com/doc/refman/"
\
IB_TO_STR
(
MYSQL_MAJOR_VERSION
)
"."
\
...
...
storage/xtradb/log/log0online.c
View file @
fafdac33
...
...
@@ -501,9 +501,9 @@ log_online_make_bitmap_name(
/*=========================*/
ib_uint64_t
start_lsn
)
/*!< in: the start LSN name part */
{
ut_snprintf
(
log_bmp_sys
->
out
.
name
,
FN_REFLEN
,
bmp_file_name_template
,
log_bmp_sys
->
bmp_file_home
,
bmp_file_name_stem
,
log_bmp_sys
->
out_seq_num
,
start_lsn
);
ut_snprintf
(
log_bmp_sys
->
out
.
name
,
sizeof
(
log_bmp_sys
->
out
.
name
),
bmp_file_name_template
,
log_bmp_sys
->
bmp_file_home
,
bmp_file_name_stem
,
log_bmp_sys
->
out_seq_num
,
start_lsn
);
}
/*********************************************************************//**
...
...
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