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
1ce92901
Commit
1ce92901
authored
Oct 27, 2005
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/mysql-4.1
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0
parents
c0c23664
bfb8a71f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
ndb/src/ndbapi/NdbImpl.hpp
ndb/src/ndbapi/NdbImpl.hpp
+6
-4
ndb/src/ndbapi/NdbRecAttr.cpp
ndb/src/ndbapi/NdbRecAttr.cpp
+4
-0
No files found.
ndb/src/ndbapi/NdbImpl.hpp
View file @
1ce92901
...
...
@@ -89,11 +89,9 @@ public:
/**
* NOTE free lists must be _after_ theNdbObjectIdMap take
* assure that destructors are run in correct order
* NOTE these has to be in this specific order to make destructor run in
* correct order
*/
Ndb_free_list_t
<
NdbTransaction
>
theConIdleList
;
Ndb_free_list_t
<
NdbOperation
>
theOpIdleList
;
Ndb_free_list_t
<
NdbIndexScanOperation
>
theScanOpIdleList
;
Ndb_free_list_t
<
NdbIndexOperation
>
theIndexOpIdleList
;
Ndb_free_list_t
<
NdbRecAttr
>
theRecAttrIdleList
;
Ndb_free_list_t
<
NdbApiSignal
>
theSignalIdleList
;
Ndb_free_list_t
<
NdbLabel
>
theLabelList
;
...
...
@@ -102,6 +100,10 @@ public:
Ndb_free_list_t
<
NdbCall
>
theCallList
;
Ndb_free_list_t
<
NdbBlob
>
theNdbBlobIdleList
;
Ndb_free_list_t
<
NdbReceiver
>
theScanList
;
Ndb_free_list_t
<
NdbIndexScanOperation
>
theScanOpIdleList
;
Ndb_free_list_t
<
NdbOperation
>
theOpIdleList
;
Ndb_free_list_t
<
NdbIndexOperation
>
theIndexOpIdleList
;
Ndb_free_list_t
<
NdbTransaction
>
theConIdleList
;
};
#ifdef VM_TRACE
...
...
ndb/src/ndbapi/NdbRecAttr.cpp
View file @
1ce92901
...
...
@@ -24,6 +24,7 @@
NdbRecAttr
::
NdbRecAttr
(
Ndb
*
)
{
theStorageX
=
0
;
init
();
}
...
...
@@ -53,6 +54,9 @@ NdbRecAttr::setup(const NdbColumnImpl* anAttrInfo, char* aValue)
theNULLind
=
0
;
m_nullable
=
anAttrInfo
->
m_nullable
;
if
(
theStorageX
)
delete
[]
theStorageX
;
// check alignment to signal data
// a future version could check alignment per data type as well
...
...
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