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
89723ce1
Commit
89723ce1
authored
Aug 19, 2021
by
Thirunarayanan Balathandayuthapani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After-merge fixup
f84e28c1
parent
f84e28c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
8 deletions
+22
-8
mysql-test/suite/encryption/t/innodb_import.test
mysql-test/suite/encryption/t/innodb_import.test
+2
-1
mysql-test/suite/innodb/t/full_crc32_import.test
mysql-test/suite/innodb/t/full_crc32_import.test
+1
-0
storage/innobase/row/row0import.cc
storage/innobase/row/row0import.cc
+19
-7
No files found.
mysql-test/suite/encryption/t/innodb_import.test
View file @
89723ce1
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_example_key_management_plugin
.
inc
--
source
include
/
have_example_key_management_plugin
.
inc
--
source
include
/
innodb_checksum_algorithm
.
inc
--
echo
#
--
echo
# MDEV-26131 SEGV in ha_innobase::discard_or_import_tablespace
--
echo
#
...
...
mysql-test/suite/innodb/t/full_crc32_import.test
View file @
89723ce1
...
...
@@ -134,6 +134,7 @@ EOF
ALTER
TABLE
t1
IMPORT
TABLESPACE
;
--
enable_warnings
ALTER
TABLE
t1
DROP
INDEX
idx1
;
--
replace_regex
/
opening
'.*\/test\//opening '
.
\
/
test
\
//
ALTER
TABLE
t1
IMPORT
TABLESPACE
;
--
disable_warnings
SHOW
CREATE
TABLE
t1
;
...
...
storage/innobase/row/row0import.cc
View file @
89723ce1
...
...
@@ -665,7 +665,7 @@ struct FetchIndexRootPages : public AbstractCallback {
@param block Block to use for IO
@retval DB_SUCCESS or error code */
dberr_t
run
(
const
fil_iterator_t
&
iter
,
buf_block_t
*
block
)
UNIV_NOTHROW
;
buf_block_t
*
block
)
UNIV_NOTHROW
override
;
/** Called for each block as it is read from the file.
@param block block to convert, it is not from the buffer pool.
...
...
@@ -839,7 +839,8 @@ class PageConverter : public AbstractCallback {
}
}
dberr_t
run
(
const
fil_iterator_t
&
iter
,
buf_block_t
*
block
)
UNIV_NOTHROW
dberr_t
run
(
const
fil_iterator_t
&
iter
,
buf_block_t
*
block
)
UNIV_NOTHROW
override
{
return
fil_iterate
(
iter
,
block
,
*
this
);
}
...
...
@@ -3448,6 +3449,8 @@ dberr_t FetchIndexRootPages::run(const fil_iterator_t& iter,
#endif
srv_page_size
;
byte
*
page_compress_buf
=
static_cast
<
byte
*>
(
malloc
(
buf_size
));
const
bool
full_crc32
=
fil_space_t
::
full_crc32
(
m_space_flags
);
bool
skip_checksum_check
=
false
;
ut_ad
(
!
srv_read_only_mode
);
if
(
!
page_compress_buf
)
...
...
@@ -3486,15 +3489,18 @@ dberr_t FetchIndexRootPages::run(const fil_iterator_t& iter,
goto
func_exit
;
}
page_compressed
=
fil_page_is_compressed_encrypted
(
readptr
)
||
fil_page_is_compressed
(
readptr
);
page_compressed
=
(
full_crc32
&&
fil_space_t
::
is_compressed
(
m_space_flags
)
&&
buf_page_is_compressed
(
readptr
,
m_space_flags
))
||
(
fil_page_is_compressed_encrypted
(
readptr
)
||
fil_page_is_compressed
(
readptr
));
if
(
page_compressed
&&
block
->
page
.
zip
.
data
)
goto
page_corrupted
;
if
(
encrypted
)
{
if
(
!
fil_space_verify_crypt_checksum
(
readptr
,
zip_size
))
if
(
!
buf_page_verify_crypt_checksum
(
readptr
,
m_space_flags
))
goto
page_corrupted
;
if
(
!
fil_space_decrypt
(
get_space_id
(),
iter
.
crypt_data
,
readptr
,
...
...
@@ -3503,15 +3509,21 @@ dberr_t FetchIndexRootPages::run(const fil_iterator_t& iter,
goto
func_exit
;
}
/* For full_crc32 format, skip checksum check
after decryption. */
skip_checksum_check
=
full_crc32
&&
encrypted
;
if
(
page_compressed
)
{
ulint
compress_length
=
fil_page_decompress
(
page_compress_buf
,
readptr
,
ulint
compress_length
=
fil_page_decompress
(
page_compress_buf
,
readptr
,
m_space_flags
);
ut_ad
(
compress_length
!=
srv_page_size
);
if
(
compress_length
==
0
)
goto
page_corrupted
;
}
else
if
(
buf_page_is_corrupted
(
false
,
readptr
,
m_space_flags
))
else
if
(
!
skip_checksum_check
&&
buf_page_is_corrupted
(
false
,
readptr
,
m_space_flags
))
goto
page_corrupted
;
err
=
this
->
operator
()(
block
);
...
...
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