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
21d95d33
Commit
21d95d33
authored
Sep 13, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/jonas/src/mysql-4.1
parents
f0e23df6
050a196b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
8 deletions
+23
-8
ndb/test/run-test/main.cpp
ndb/test/run-test/main.cpp
+1
-1
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+22
-7
No files found.
ndb/test/run-test/main.cpp
View file @
21d95d33
...
...
@@ -458,7 +458,7 @@ setup_config(atrt_config& config){
proc
.
m_type
=
atrt_process
::
NDB_MGM
;
proc
.
m_proc
.
m_name
.
assfmt
(
"%d-%s"
,
index
,
"ndb_mgmd"
);
proc
.
m_proc
.
m_path
.
assign
(
dir
).
append
(
"/libexec/ndb_mgmd"
);
proc
.
m_proc
.
m_args
=
"-n -c initconfig.txt"
;
proc
.
m_proc
.
m_args
=
"-
-nodaemo
n -c initconfig.txt"
;
proc
.
m_proc
.
m_cwd
.
appfmt
(
"%d.ndb_mgmd"
,
index
);
connect_string
.
appfmt
(
"host=%s:%d;"
,
proc
.
m_hostname
.
c_str
(),
proc
.
m_ndb_mgm_port
);
...
...
sql/ha_ndbcluster.cc
View file @
21d95d33
...
...
@@ -3492,7 +3492,7 @@ int ndb_discover_tables()
dict
=
g_ndb
->
getDictionary
();
if
(
dict
->
listObjects
(
list
,
NdbDictionary
::
Object
::
UserTable
)
!=
0
)
ERR_RETURN
(
g_ndb
->
getNdbError
());
ERR_RETURN
(
dict
->
getNdbError
());
for
(
i
=
0
;
i
<
list
.
count
;
i
++
)
{
...
...
@@ -3514,6 +3514,7 @@ int ndb_discover_tables()
bool
ndbcluster_init
()
{
int
res
;
DBUG_ENTER
(
"ndbcluster_init"
);
// Set connectstring if specified
if
(
ndbcluster_connectstring
!=
0
)
...
...
@@ -3524,11 +3525,7 @@ bool ndbcluster_init()
DBUG_PRINT
(
"error"
,(
"Ndb_cluster_connection(%s)"
,
ndbcluster_connectstring
));
DBUG_RETURN
(
TRUE
);
}
if
(
g_ndb_cluster_connection
->
start_connect_thread
())
{
DBUG_PRINT
(
"error"
,
(
"g_ndb_cluster_connection->start_connect_thread()"
));
DBUG_RETURN
(
TRUE
);
}
// Create a Ndb object to open the connection to NDB
g_ndb
=
new
Ndb
(
g_ndb_cluster_connection
,
"sys"
);
if
(
g_ndb
->
init
()
!=
0
)
...
...
@@ -3536,6 +3533,23 @@ bool ndbcluster_init()
ERR_PRINT
(
g_ndb
->
getNdbError
());
DBUG_RETURN
(
TRUE
);
}
if
((
res
=
g_ndb_cluster_connection
->
connect
(
1
))
==
0
)
{
g_ndb
->
waitUntilReady
(
10
);
}
else
if
(
res
==
1
&&
g_ndb_cluster_connection
->
start_connect_thread
())
{
DBUG_PRINT
(
"error"
,
(
"g_ndb_cluster_connection->start_connect_thread()"
));
DBUG_RETURN
(
TRUE
);
}
else
{
DBUG_ASSERT
(
res
==
-
1
);
DBUG_PRINT
(
"error"
,
(
"permanent error"
));
DBUG_RETURN
(
TRUE
);
}
(
void
)
hash_init
(
&
ndbcluster_open_tables
,
system_charset_info
,
32
,
0
,
0
,
(
hash_get_key
)
ndbcluster_get_key
,
0
,
0
);
pthread_mutex_init
(
&
ndbcluster_mutex
,
MY_MUTEX_INIT_FAST
);
...
...
@@ -3558,7 +3572,8 @@ bool ndbcluster_end()
{
DBUG_ENTER
(
"ndbcluster_end"
);
delete
g_ndb
;
if
(
g_ndb
)
delete
g_ndb
;
g_ndb
=
NULL
;
if
(
g_ndb_cluster_connection
)
delete
g_ndb_cluster_connection
;
...
...
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