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
105060e3
Commit
105060e3
authored
May 23, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warnings.
parent
76c6cd03
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
8 deletions
+3
-8
storage/innobase/btr/btr0cur.cc
storage/innobase/btr/btr0cur.cc
+0
-1
storage/innobase/fil/fil0pagecompress.cc
storage/innobase/fil/fil0pagecompress.cc
+1
-1
storage/innobase/include/os0file.h
storage/innobase/include/os0file.h
+0
-2
storage/xtradb/fil/fil0pagecompress.cc
storage/xtradb/fil/fil0pagecompress.cc
+2
-2
storage/xtradb/include/os0file.h
storage/xtradb/include/os0file.h
+0
-2
No files found.
storage/innobase/btr/btr0cur.cc
View file @
105060e3
...
...
@@ -1863,7 +1863,6 @@ btr_cur_update_alloc_zip_func(
/* Have a local copy of the variables as these can change
dynamically. */
ulint
compression_level
=
page_zip_level
;
const
page_t
*
page
=
page_cur_get_page
(
cursor
);
ut_ad
(
page_zip
==
page_cur_get_page_zip
(
cursor
));
...
...
storage/innobase/fil/fil0pagecompress.cc
View file @
105060e3
...
...
@@ -195,7 +195,7 @@ fil_compress_page(
ut_ad
(
fil_page_is_compressed
(
out_buf
));
ut_ad
(
mach_read_from_4
(
out_buf
+
FIL_PAGE_SPACE_OR_CHKSUM
)
==
BUF_NO_CHECKSUM_MAGIC
);
ut_ad
(
mach_read_from_2
(
out_buf
+
FIL_PAGE_DATA
)
==
write_size
);
ut_ad
(
mach_read_from_8
(
out_buf
+
FIL_PAGE_FILE_FLUSH_LSN
)
==
innodb_compression_algorithm
);
ut_ad
(
mach_read_from_8
(
out_buf
+
FIL_PAGE_FILE_FLUSH_LSN
)
==
(
ulint
)
innodb_compression_algorithm
);
#endif
/* UNIV_DEBUG */
write_size
+=
header_len
;
...
...
storage/innobase/include/os0file.h
View file @
105060e3
...
...
@@ -733,8 +733,6 @@ pfs_os_file_read_no_error_handling_func(
void
*
buf
,
/*!< in: buffer where to read */
os_offset_t
offset
,
/*!< in: file offset where to read */
ulint
n
,
/*!< in: number of bytes to read */
ulint
atomic_writes
,
/*!< in: atomic writes table option
value */
const
char
*
src_file
,
/*!< in: file name where func invoked */
ulint
src_line
);
/*!< in: line where the func invoked */
...
...
storage/xtradb/fil/fil0pagecompress.cc
View file @
105060e3
...
...
@@ -195,7 +195,7 @@ fil_compress_page(
ut_ad
(
fil_page_is_compressed
(
out_buf
));
ut_ad
(
mach_read_from_4
(
out_buf
+
FIL_PAGE_SPACE_OR_CHKSUM
)
==
BUF_NO_CHECKSUM_MAGIC
);
ut_ad
(
mach_read_from_2
(
out_buf
+
FIL_PAGE_DATA
)
==
write_size
);
ut_ad
(
mach_read_from_8
(
out_buf
+
FIL_PAGE_FILE_FLUSH_LSN
)
==
innodb_compression_algorithm
);
ut_ad
(
mach_read_from_8
(
out_buf
+
FIL_PAGE_FILE_FLUSH_LSN
)
==
(
ulint
)
innodb_compression_algorithm
);
#endif
/* UNIV_DEBUG */
write_size
+=
header_len
;
...
...
@@ -342,7 +342,7 @@ fil_decompress_page(
if
(
err
!=
LZO_E_OK
||
(
olen
==
0
||
olen
>
UNIV_PAGE_SIZE
))
{
fprintf
(
stderr
,
"InnoDB: Corruption: Page is marked as compressed
\n
"
"InnoDB: but decompression read only %d bytes.
\n
"
"InnoDB: but decompression read only %
l
d bytes.
\n
"
"InnoDB: size %lu len %lu
\n
"
,
olen
,
actual_size
,
len
);
fflush
(
stderr
);
...
...
storage/xtradb/include/os0file.h
View file @
105060e3
...
...
@@ -742,8 +742,6 @@ pfs_os_file_read_func(
os_offset_t
offset
,
/*!< in: file offset where to read */
ulint
n
,
/*!< in: number of bytes to read */
trx_t
*
trx
,
ulint
atomic_writes
,
/*!< in: atomic writes table option
value */
const
char
*
src_file
,
/*!< in: file name where func invoked */
ulint
src_line
);
/*!< in: line where the func invoked */
...
...
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