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
d26fb96a
Commit
d26fb96a
authored
Sep 07, 2017
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.1 into 10.2
parents
3c45aa58
112d721a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
mysql-test/include/search_pattern_in_file.inc
mysql-test/include/search_pattern_in_file.inc
+2
-1
storage/innobase/log/log0recv.cc
storage/innobase/log/log0recv.cc
+1
-0
storage/xtradb/include/buf0buf.h
storage/xtradb/include/buf0buf.h
+1
-1
storage/xtradb/log/log0recv.cc
storage/xtradb/log/log0recv.cc
+1
-0
No files found.
mysql-test/include/search_pattern_in_file.inc
View file @
d26fb96a
...
...
@@ -76,5 +76,6 @@ perl;
my
$res
=@
matches
?
"FOUND "
.
scalar
(
@
matches
)
:
"NOT FOUND"
;
$ENV
{
SEARCH_FILE
}
=~
s
{
^.*?
([
^/
\\
]
+
)
$
}{
$
1
};
print
"
$res
/
$search_pattern
/ in
$ENV
{
SEARCH_FILE
}
\n
"
;
exit
$ENV
{
SEARCH_ABORT
}
&&
$res
=~
/^
$ENV
{
SEARCH_ABORT
}
/
;
die
"
$ENV
{
SEARCH_ABORT
}
\n
"
if
$ENV
{
SEARCH_ABORT
}
&&
$res
=~
/^
$ENV
{
SEARCH_ABORT
}
/
;
EOF
storage/innobase/log/log0recv.cc
View file @
d26fb96a
...
...
@@ -3461,6 +3461,7 @@ recv_reset_logs(
log_sys
->
next_checkpoint_no
=
0
;
log_sys
->
last_checkpoint_lsn
=
0
;
memset
(
log_sys
->
buf
,
0
,
log_sys
->
buf_size
);
log_block_init
(
log_sys
->
buf
,
log_sys
->
lsn
);
log_block_set_first_rec_group
(
log_sys
->
buf
,
LOG_BLOCK_HDR_SIZE
);
...
...
storage/xtradb/include/buf0buf.h
View file @
d26fb96a
...
...
@@ -765,7 +765,7 @@ buf_print(void);
UNIV_INTERN
void
buf_page_print
(
const
byte
*
read_buf
,
ulint
zip_size
)
UNIV_COLD
MY_ATTRIBUTE
((
nonnull
))
;
UNIV_COLD
;
/********************************************************************//**
Decompress a block.
...
...
storage/xtradb/log/log0recv.cc
View file @
d26fb96a
...
...
@@ -3564,6 +3564,7 @@ recv_reset_logs(
log_sys
->
tracked_lsn
=
log_sys
->
lsn
;
memset
(
log_sys
->
buf
,
0
,
log_sys
->
buf_size
);
log_block_init
(
log_sys
->
buf
,
log_sys
->
lsn
);
log_block_set_first_rec_group
(
log_sys
->
buf
,
LOG_BLOCK_HDR_SIZE
);
...
...
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