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
e4197f2e
Commit
e4197f2e
authored
Dec 31, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
7f6fb4d9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
15 deletions
+13
-15
ndb/include/mgmapi/mgmapi.h
ndb/include/mgmapi/mgmapi.h
+1
-0
ndb/include/ndbapi/NdbDictionary.hpp
ndb/include/ndbapi/NdbDictionary.hpp
+0
-7
ndb/src/ndbapi/Ndb.cpp
ndb/src/ndbapi/Ndb.cpp
+2
-2
ndb/src/ndbapi/NdbImpl.hpp
ndb/src/ndbapi/NdbImpl.hpp
+3
-3
ndb/src/ndbapi/Ndbif.cpp
ndb/src/ndbapi/Ndbif.cpp
+1
-0
ndb/src/ndbapi/ndb_cluster_connection.cpp
ndb/src/ndbapi/ndb_cluster_connection.cpp
+6
-3
No files found.
ndb/include/mgmapi/mgmapi.h
View file @
e4197f2e
...
@@ -491,6 +491,7 @@ extern "C" {
...
@@ -491,6 +491,7 @@ extern "C" {
*/
*/
const
char
*
ndb_mgm_get_node_status_string
(
enum
ndb_mgm_node_status
status
);
const
char
*
ndb_mgm_get_node_status_string
(
enum
ndb_mgm_node_status
status
);
const
char
*
ndb_mgm_get_clusterlog_level_string
(
enum
ndb_mgm_clusterlog_level
);
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
ndb_mgm_event_category
ndb_mgm_match_event_category
(
const
char
*
);
ndb_mgm_event_category
ndb_mgm_match_event_category
(
const
char
*
);
const
char
*
ndb_mgm_get_event_category_string
(
enum
ndb_mgm_event_category
);
const
char
*
ndb_mgm_get_event_category_string
(
enum
ndb_mgm_event_category
);
...
...
ndb/include/ndbapi/NdbDictionary.hpp
View file @
e4197f2e
...
@@ -1107,13 +1107,6 @@ public:
...
@@ -1107,13 +1107,6 @@ public:
*/
*/
int
alterTable
(
const
Table
&
);
int
alterTable
(
const
Table
&
);
/**
* Get table with given name, NULL if undefined
* @param name Name of table to get
* @return table if successful otherwise NULL.
*/
const
Table
*
getTable
(
const
char
*
name
);
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
/**
/**
* Invalidate cached table object
* Invalidate cached table object
...
...
ndb/src/ndbapi/Ndb.cpp
View file @
e4197f2e
...
@@ -78,7 +78,7 @@ NdbTransaction* Ndb::doConnect(Uint32 tConNode)
...
@@ -78,7 +78,7 @@ NdbTransaction* Ndb::doConnect(Uint32 tConNode)
//****************************************************************************
//****************************************************************************
// We have connections now to the desired node. Return
// We have connections now to the desired node. Return
//****************************************************************************
//****************************************************************************
return
getConnectedNdb
Conne
ction
(
tNode
);
return
getConnectedNdb
Transa
ction
(
tNode
);
}
else
if
(
TretCode
!=
0
)
{
}
else
if
(
TretCode
!=
0
)
{
tAnyAlive
=
1
;
tAnyAlive
=
1
;
}
//if
}
//if
...
@@ -103,7 +103,7 @@ NdbTransaction* Ndb::doConnect(Uint32 tConNode)
...
@@ -103,7 +103,7 @@ NdbTransaction* Ndb::doConnect(Uint32 tConNode)
//****************************************************************************
//****************************************************************************
// We have connections now to the desired node. Return
// We have connections now to the desired node. Return
//****************************************************************************
//****************************************************************************
return
getConnectedNdb
Conne
ction
(
tNode
);
return
getConnectedNdb
Transa
ction
(
tNode
);
}
else
if
(
TretCode
!=
0
)
{
}
else
if
(
TretCode
!=
0
)
{
tAnyAlive
=
1
;
tAnyAlive
=
1
;
}
//if
}
//if
...
...
ndb/src/ndbapi/NdbImpl.hpp
View file @
e4197f2e
...
@@ -89,9 +89,9 @@ Ndb::void2rec(void* val){
...
@@ -89,9 +89,9 @@ Ndb::void2rec(void* val){
}
}
inline
inline
Ndb
Conne
ction
*
Ndb
Transa
ction
*
Ndb
::
void2con
(
void
*
val
){
Ndb
::
void2con
(
void
*
val
){
return
(
Ndb
Conne
ction
*
)
val
;
return
(
Ndb
Transa
ction
*
)
val
;
}
}
inline
inline
...
@@ -107,7 +107,7 @@ Ndb::void2rec_iop(void* val){
...
@@ -107,7 +107,7 @@ Ndb::void2rec_iop(void* val){
}
}
inline
inline
Ndb
Conne
ction
*
Ndb
Transa
ction
*
NdbReceiver
::
getTransaction
(){
NdbReceiver
::
getTransaction
(){
return
((
NdbOperation
*
)
m_owner
)
->
theNdbCon
;
return
((
NdbOperation
*
)
m_owner
)
->
theNdbCon
;
}
}
...
...
ndb/src/ndbapi/Ndbif.cpp
View file @
e4197f2e
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#include "NdbApiSignal.hpp"
#include "NdbApiSignal.hpp"
#include "NdbImpl.hpp"
#include "NdbImpl.hpp"
#include <NdbTransaction.hpp>
#include <NdbOperation.hpp>
#include <NdbOperation.hpp>
#include <NdbIndexOperation.hpp>
#include <NdbIndexOperation.hpp>
#include <NdbScanOperation.hpp>
#include <NdbScanOperation.hpp>
...
...
ndb/src/ndbapi/ndb_cluster_connection.cpp
View file @
e4197f2e
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include <ConfigRetriever.hpp>
#include <ConfigRetriever.hpp>
#include <ndb_version.h>
#include <ndb_version.h>
#include <mgmapi_debug.h>
#include <mgmapi_debug.h>
#include <md5_hash.hpp>
static
int
g_run_connect_thread
=
0
;
static
int
g_run_connect_thread
=
0
;
...
@@ -255,8 +256,6 @@ Ndb_cluster_connection_impl::Ndb_cluster_connection_impl(const char *
...
@@ -255,8 +256,6 @@ Ndb_cluster_connection_impl::Ndb_cluster_connection_impl(const char *
{
{
DBUG_ENTER
(
"Ndb_cluster_connection"
);
DBUG_ENTER
(
"Ndb_cluster_connection"
);
DBUG_PRINT
(
"enter"
,(
"Ndb_cluster_connection this=0x%x"
,
this
));
DBUG_PRINT
(
"enter"
,(
"Ndb_cluster_connection this=0x%x"
,
this
));
m_transporter_facade
=
TransporterFacade
::
theFacadeInstance
=
new
TransporterFacade
();
m_connect_thread
=
0
;
m_connect_thread
=
0
;
m_connect_callback
=
0
;
m_connect_callback
=
0
;
...
@@ -281,6 +280,10 @@ Ndb_cluster_connection_impl::Ndb_cluster_connection_impl(const char *
...
@@ -281,6 +280,10 @@ Ndb_cluster_connection_impl::Ndb_cluster_connection_impl(const char *
m_config_retriever
=
0
;
m_config_retriever
=
0
;
}
}
m_transporter_facade
=
TransporterFacade
::
theFacadeInstance
=
new
TransporterFacade
(
m_config_retriever
->
get_mgmHandle
());
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
}
...
@@ -490,7 +493,7 @@ int Ndb_cluster_connection::connect(int no_retries, int retry_delay_in_seconds,
...
@@ -490,7 +493,7 @@ int Ndb_cluster_connection::connect(int no_retries, int retry_delay_in_seconds,
m_impl
.
init_nodes_vector
(
nodeId
,
*
props
);
m_impl
.
init_nodes_vector
(
nodeId
,
*
props
);
for
(
int
i
=
0
;
i
<
m_impl
.
m_transporter_facade
->
get_registry
()
->
m_transporter_interface
.
size
();
i
++
)
for
(
int
i
=
0
;
i
<
m_impl
.
m_transporter_facade
->
get_registry
()
->
m_transporter_interface
.
size
();
i
++
)
ndb_mgm_set_connection_int_parameter
(
m_config_retriever
->
get_mgmHandle
(),
ndb_mgm_set_connection_int_parameter
(
m_
impl
.
m_
config_retriever
->
get_mgmHandle
(),
nodeId
,
nodeId
,
m_impl
.
m_transporter_facade
->
get_registry
()
m_impl
.
m_transporter_facade
->
get_registry
()
->
m_transporter_interface
[
i
]
->
m_transporter_interface
[
i
]
...
...
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