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
470aed3a
Commit
470aed3a
authored
Jan 25, 2005
by
patg@patrick-galbraiths-computer.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.0
into patrick-galbraiths-computer.local:/Users/patg/mysql-5.0
parents
e0cd2008
81ce1c8d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
innobase/include/rem0rec.h
innobase/include/rem0rec.h
+2
-2
innobase/include/rem0rec.ic
innobase/include/rem0rec.ic
+1
-1
No files found.
innobase/include/rem0rec.h
View file @
470aed3a
...
...
@@ -139,7 +139,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
ulint
rec_get_info_and_status_bits
(
/*==============*/
/*==============
===========
*/
/* out: info bits */
rec_t
*
rec
,
/* in: physical record */
ibool
comp
);
/* in: TRUE=compact page format */
...
...
@@ -149,7 +149,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
void
rec_set_info_and_status_bits
(
/*==============*/
/*==============
===========
*/
rec_t
*
rec
,
/* in: physical record */
ibool
comp
,
/* in: TRUE=compact page format */
ulint
bits
);
/* in: info bits */
...
...
innobase/include/rem0rec.ic
View file @
470aed3a
...
...
@@ -564,7 +564,7 @@ rec_set_info_and_status_bits(
} else {
ut_ad(!(bits & ~(REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)));
}
rec_set_info_bits(rec,
bits & ~REC_NEW_STATUS_MASK, comp
);
rec_set_info_bits(rec,
comp, bits & ~REC_NEW_STATUS_MASK
);
}
/**********************************************************
...
...
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