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
75cc4ef2
Commit
75cc4ef2
authored
Sep 20, 2005
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - post merge fixes
parent
2119a88a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
11 deletions
+3
-11
ndb/include/ndbapi/NdbTransaction.hpp
ndb/include/ndbapi/NdbTransaction.hpp
+1
-1
ndb/src/ndbapi/Ndblist.cpp
ndb/src/ndbapi/Ndblist.cpp
+0
-7
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-3
No files found.
ndb/include/ndbapi/NdbTransaction.hpp
View file @
75cc4ef2
...
@@ -806,7 +806,7 @@ private:
...
@@ -806,7 +806,7 @@ private:
void
define_scan_op
(
NdbIndexScanOperation
*
);
void
define_scan_op
(
NdbIndexScanOperation
*
);
friend
class
HugoOperations
;
friend
class
HugoOperations
;
friend
struct
Ndb_free_list_t
<
Ndb
Conne
ction
>
;
friend
struct
Ndb_free_list_t
<
Ndb
Transa
ction
>
;
};
};
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
...
...
ndb/src/ndbapi/Ndblist.cpp
View file @
75cc4ef2
...
@@ -132,13 +132,6 @@ NdbTransaction*
...
@@ -132,13 +132,6 @@ NdbTransaction*
Ndb
::
getNdbCon
()
Ndb
::
getNdbCon
()
{
{
NdbTransaction
*
tNdbCon
=
theImpl
->
theConIdleList
.
seize
(
this
);
NdbTransaction
*
tNdbCon
=
theImpl
->
theConIdleList
.
seize
(
this
);
if
(
unlikely
(
theImpl
->
theConIdleList
.
m_alloc_cnt
>
theMaxNoOfTransactions
))
{
theImpl
->
theConIdleList
.
release
(
tNdbCon
);
ndbout
<<
"theNoOfAllocatedTransactions = "
<<
theNoOfAllocatedTransactions
<<
" theMaxNoOfTransactions = "
<<
theMaxNoOfTransactions
<<
endl
;
return
NULL
;
}
//if
tNdbCon
->
theMagicNumber
=
0x37412619
;
tNdbCon
->
theMagicNumber
=
0x37412619
;
return
tNdbCon
;
return
tNdbCon
;
}
}
...
...
sql/ha_ndbcluster.cc
View file @
75cc4ef2
...
@@ -7416,10 +7416,9 @@ ndbcluster_show_status(THD* thd)
...
@@ -7416,10 +7416,9 @@ ndbcluster_show_status(THD* thd)
if
(
protocol
->
send_fields
(
&
field_list
,
1
))
if
(
protocol
->
send_fields
(
&
field_list
,
1
))
DBUG_RETURN
(
TRUE
);
DBUG_RETURN
(
TRUE
);
if
(
thd
->
transaction
.
thd_ndb
&&
if
(
get_thd_ndb
(
thd
)
&&
get_thd_ndb
(
thd
)
->
ndb
)
((
Thd_ndb
*
)
thd
->
transaction
.
thd_ndb
)
->
ndb
)
{
{
Ndb
*
ndb
=
(
(
Thd_ndb
*
)
thd
->
transaction
.
thd_ndb
)
->
ndb
;
Ndb
*
ndb
=
(
get_thd_ndb
(
thd
)
)
->
ndb
;
Ndb
::
Free_list_usage
tmp
;
tmp
.
m_name
=
0
;
Ndb
::
Free_list_usage
tmp
;
tmp
.
m_name
=
0
;
while
(
ndb
->
get_free_list_usage
(
&
tmp
))
while
(
ndb
->
get_free_list_usage
(
&
tmp
))
{
{
...
...
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