mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Bug#42430 Final commit to 5.0-bugteam
This commit is contained in:
parent
3819daf064
commit
9301da563f
3 changed files with 5 additions and 5 deletions
|
@ -61,7 +61,7 @@ static char sccsid[] = "@(#)term.c 8.2 (Berkeley) 4/30/95";
|
|||
#ifdef HAVE_NCURSES_H
|
||||
#include <ncurses.h>
|
||||
#endif
|
||||
/* Solaris's term.h does horrid things. */
|
||||
/* Don't use Solaris's term.h. */
|
||||
#if (defined(HAVE_TERM_H) && !defined(__SunOS))
|
||||
#include <term.h>
|
||||
#endif
|
||||
|
|
|
@ -556,7 +556,7 @@ BackupRestore::logEntry(const LogEntry & tup)
|
|||
NdbTransaction * trans = m_ndb->startTransaction();
|
||||
if (trans == NULL)
|
||||
{
|
||||
// Deep shit, TODO: handle the error
|
||||
// TODO: handle the error
|
||||
err << "Cannot start transaction" << endl;
|
||||
exitHandler();
|
||||
} // if
|
||||
|
@ -693,7 +693,7 @@ BackupRestore::tuple(const TupleS & tup)
|
|||
NdbTransaction * trans = m_ndb->startTransaction();
|
||||
if (trans == NULL)
|
||||
{
|
||||
// Deep shit, TODO: handle the error
|
||||
// TODO: handle the error
|
||||
ndbout << "Cannot start transaction" << endl;
|
||||
exitHandler();
|
||||
} // if
|
||||
|
|
|
@ -373,7 +373,7 @@ BackupRestore::tuple(const TupleS & tup)
|
|||
NdbTransaction * trans = m_ndb->startTransaction();
|
||||
if (trans == NULL)
|
||||
{
|
||||
// Deep shit, TODO: handle the error
|
||||
// TODO: handle the error
|
||||
ndbout << "Cannot start transaction" << endl;
|
||||
exit(-1);
|
||||
} // if
|
||||
|
@ -462,7 +462,7 @@ BackupRestore::logEntry(const LogEntry & tup)
|
|||
NdbTransaction * trans = m_ndb->startTransaction();
|
||||
if (trans == NULL)
|
||||
{
|
||||
// Deep shit, TODO: handle the error
|
||||
// TODO: handle the error
|
||||
ndbout << "Cannot start transaction" << endl;
|
||||
exit(-1);
|
||||
} // if
|
||||
|
|
Loading…
Reference in a new issue