mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
Merge mysql.com:/home/jonas/src/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0-ndb ndb/src/mgmapi/mgmapi.cpp: Auto merged
This commit is contained in:
commit
877ad54c97
2 changed files with 8 additions and 2 deletions
|
@ -973,7 +973,13 @@ start_ndbcluster()
|
|||
else
|
||||
NDBCLUSTER_EXTRA_OPTS="--small"
|
||||
fi
|
||||
./ndb/ndbcluster $NDBCLUSTER_OPTS $NDBCLUSTER_EXTRA_OPTS --initial || exit 1
|
||||
NDB_STARTED=1
|
||||
./ndb/ndbcluster $NDBCLUSTER_OPTS $NDBCLUSTER_EXTRA_OPTS --initial || NDB_STARTED=0
|
||||
if [ x$NDB_STARTED != x1 ] ; then
|
||||
if [ x$FORCE != x1 ] ; then
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
NDB_CONNECTSTRING="host=localhost:$NDBCLUSTER_PORT"
|
||||
else
|
||||
NDB_CONNECTSTRING="$USE_RUNNING_NDBCLUSTER"
|
||||
|
|
|
@ -315,7 +315,7 @@ ndb_mgm_call(NdbMgmHandle handle, const ParserRow<ParserDummy> *command_reply,
|
|||
ndbout << "Error in mgm protocol parser. "
|
||||
<< "cmd: '" << cmd
|
||||
<< "' status=" << (Uint32)ctx.m_status
|
||||
<< ", curr=" << (Uint32)ctx.m_currentToken
|
||||
<< ", curr=" << ctx.m_currentToken
|
||||
<< endl;
|
||||
DBUG_PRINT("info",("parser.parse returned NULL"));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue