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
c58e5024
Commit
c58e5024
authored
Sep 28, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused function
rec_offs_nth_extern_old() was introduced in commit
a4948daf
and never used.
parent
ac8c7a1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
26 deletions
+0
-26
storage/innobase/include/rem0rec.h
storage/innobase/include/rem0rec.h
+0
-11
storage/innobase/include/rem0rec.ic
storage/innobase/include/rem0rec.ic
+0
-15
No files found.
storage/innobase/include/rem0rec.h
View file @
c58e5024
...
...
@@ -642,17 +642,6 @@ rec_offs_any_null_extern(
const
ulint
*
offsets
)
/*!< in: rec_get_offsets(rec) */
MY_ATTRIBUTE
((
warn_unused_result
));
/******************************************************//**
Returns nonzero if the extern bit is set in nth field of rec.
@return nonzero if externally stored */
UNIV_INLINE
ulint
rec_offs_nth_extern_old
(
/*================*/
const
rec_t
*
rec
,
/*!< in: record */
ulint
n
/*!< in: index of the field */
)
MY_ATTRIBUTE
((
warn_unused_result
));
/** Mark the nth field as externally stored.
@param[in] offsets array returned by rec_get_offsets()
@param[in] n nth field */
...
...
storage/innobase/include/rem0rec.ic
View file @
c58e5024
...
...
@@ -955,21 +955,6 @@ rec_offs_any_null_extern(
return(NULL);
}
/******************************************************//**
Returns nonzero if the extern bit is set in nth field of rec.
@return nonzero if externally stored */
UNIV_INLINE
ulint
rec_offs_nth_extern_old(
/*================*/
const rec_t* rec, /*!< in: record */
ulint n /*!< in: index of the field */)
{
if(rec_get_1byte_offs_flag(rec))
return 0;
return (rec_2_get_field_end_info(rec,n) & REC_2BYTE_EXTERN_MASK);
}
/******************************************************//**
Gets the physical size of a field.
@return length of field */
...
...
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