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
66312acc
Commit
66312acc
authored
Feb 29, 2008
by
calvin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Fix the compile errors in btr/btr0cur.c for Windows
build. It is part of Mantis issue#18. Reviewed by Marko.
parent
7ec866a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
btr/btr0cur.c
btr/btr0cur.c
+3
-3
No files found.
btr/btr0cur.c
View file @
66312acc
...
@@ -3593,7 +3593,7 @@ btr_push_update_extern_fields(
...
@@ -3593,7 +3593,7 @@ btr_push_update_extern_fields(
InnoDB writes a longer prefix of externally
InnoDB writes a longer prefix of externally
stored columns, so that column prefixes
stored columns, so that column prefixes
in secondary indexes can be reconstructed. */
in secondary indexes can be reconstructed. */
dfield_set_data
(
field
,
dfield_get_data
(
field
)
dfield_set_data
(
field
,
(
byte
*
)
dfield_get_data
(
field
)
+
dfield_get_len
(
field
)
+
dfield_get_len
(
field
)
-
BTR_EXTERN_FIELD_REF_SIZE
,
-
BTR_EXTERN_FIELD_REF_SIZE
,
BTR_EXTERN_FIELD_REF_SIZE
);
BTR_EXTERN_FIELD_REF_SIZE
);
...
@@ -4411,13 +4411,13 @@ btr_copy_zblob_prefix(
...
@@ -4411,13 +4411,13 @@ btr_copy_zblob_prefix(
ulint
page_no
,
/* in: page number of the first BLOB page */
ulint
page_no
,
/* in: page number of the first BLOB page */
ulint
offset
)
/* in: offset on the first BLOB page */
ulint
offset
)
/* in: offset on the first BLOB page */
{
{
ulint
page_type
=
FIL_PAGE_TYPE_ZBLOB
;
ut_ad
(
ut_is_2pow
(
zip_size
));
ut_ad
(
ut_is_2pow
(
zip_size
));
ut_ad
(
zip_size
>=
PAGE_ZIP_MIN_SIZE
);
ut_ad
(
zip_size
>=
PAGE_ZIP_MIN_SIZE
);
ut_ad
(
zip_size
<=
UNIV_PAGE_SIZE
);
ut_ad
(
zip_size
<=
UNIV_PAGE_SIZE
);
ut_ad
(
space_id
);
ut_ad
(
space_id
);
ulint
page_type
=
FIL_PAGE_TYPE_ZBLOB
;
for
(;;)
{
for
(;;)
{
buf_page_t
*
bpage
;
buf_page_t
*
bpage
;
int
err
;
int
err
;
...
...
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