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
04342a48
Commit
04342a48
authored
Oct 12, 2007
by
mtaylor@solace.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added SKIP_INTERNAL wrappers to mark new methods as not part of the public API.
parent
6fd6e7c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
storage/ndb/include/ndbapi/NdbOperation.hpp
storage/ndb/include/ndbapi/NdbOperation.hpp
+1
-2
storage/ndb/include/ndbapi/NdbScanFilter.hpp
storage/ndb/include/ndbapi/NdbScanFilter.hpp
+2
-1
storage/ndb/include/ndbapi/NdbTransaction.hpp
storage/ndb/include/ndbapi/NdbTransaction.hpp
+3
-1
No files found.
storage/ndb/include/ndbapi/NdbOperation.hpp
View file @
04342a48
...
...
@@ -843,10 +843,9 @@ protected:
void
next
(
NdbOperation
*
);
// Set next pointer
NdbOperation
*
next
();
// Get next pointer
NdbTransation
*
getNdbTransaction
();
public:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
NdbTransation
*
getNdbTransaction
();
const
NdbOperation
*
next
()
const
;
const
NdbRecAttr
*
getFirstRecAttr
()
const
;
#endif
...
...
storage/ndb/include/ndbapi/NdbScanFilter.hpp
View file @
04342a48
...
...
@@ -190,8 +190,9 @@ public:
* immediately.
*/
const
class
NdbError
&
getNdbError
()
const
;
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
NdbOperation
*
getNdbOperation
();
#endif
private:
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
friend
class
NdbScanFilterImpl
;
...
...
storage/ndb/include/ndbapi/NdbTransaction.hpp
View file @
04342a48
...
...
@@ -170,12 +170,14 @@ public:
#endif
};
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
/**
* Convenience method to fetch this transactions Ndb* object
* Convenience method to fetch this transaction
'
s Ndb* object
*/
Ndb
*
getNdb
()
{
return
theNdb
;
}
#endif
#ifndef DOXYGEN_SHOULD_SKIP_DEPRECATED
/**
...
...
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