mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
59ee75bd57
ndb/include/debugger/GrepError.hpp: prexif ndb/include/kernel/LogLevel.hpp: fix correct type prototype ndb/include/kernel/signaldata/FsCloseReq.hpp: remove usage of true ndb/include/mgmapi/mgmapi.h: use Uint64 instead of long long ndb/include/mgmcommon/IPCConfig.hpp: correct type ndb/include/portlib/NdbTCP.h: fix #elif ndb/include/transporter/TransporterRegistry.hpp: correct type ndb/include/util/Parser.hpp: correct type made stuff public as vc++ couldn't handle template friends ndb/include/util/SimpleProperties.hpp: correct type ndb/src/common/debugger/EventLogger.cpp: Prefix GrepError::Code as GrepError::GE_Code ndb/src/common/debugger/GrepError.cpp: Prefix GrepError::Code as GrepError::GE_Code ndb/src/common/debugger/signaldata/FsCloseReq.cpp: removed usage of true ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp: removed usage of true ndb/src/common/logger/LogHandlerList.hpp: use ndb_global ndb/src/common/mgmcommon/ConfigRetriever.cpp: removed ConfigRetriever::get_config(file) from windows ndb/src/common/transporter/TransporterRegistry.cpp: interface is a reserved word in vc++ ndb/src/kernel/blocks/grep/Grep.hpp: Prefix GrepError::Code as GrepError::GE_Code ndb/src/kernel/vm/Configuration.cpp: Use BaseString::snprintf ndb/src/kernel/vm/Configuration.hpp: correct type ndb/src/kernel/vm/SimplePropertiesSection.cpp: correct type ndb/src/mgmapi/mgmapi_configuration.cpp: use Uin6t4 ndb/src/mgmapi/mgmapi_configuration.hpp: use Uin6t4 ndb/src/mgmsrv/ConfigInfo.cpp: Prefix ndb/src/mgmsrv/ConfigInfo.hpp: prefix ndb/src/ndbapi/Ndb.cpp: removed usued include ndb/src/ndbapi/NdbImpl.hpp: prefix ndb/src/ndbapi/ObjectMap.hpp: Better typecast
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
/* Copyright (C) 2003 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#ifndef GREP_ERROR_H
|
|
#define GREP_ERROR_H
|
|
|
|
#include <ndb_types.h>
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class GrepError {
|
|
public:
|
|
enum GE_Code {
|
|
GE_NO_ERROR = 0,
|
|
SUBSCRIPTION_ID_NOMEM = 1,
|
|
SUBSCRIPTION_ID_NOT_FOUND = 2,
|
|
SUBSCRIPTION_ID_NOT_UNIQUE = 3,
|
|
SUBSCRIPTION_ID_SUMA_FAILED_CREATE = 4,
|
|
SUBSCRIPTION_ID_ALREADY_EXIST = 5,
|
|
COULD_NOT_ALLOCATE_MEM_FOR_SIGNAL = 6,
|
|
NULL_VALUE = 7,
|
|
SEQUENCE_ERROR = 8,
|
|
NOSPACE_IN_POOL= 9,
|
|
SUBSCRIPTION_NOT_FOUND = 10,
|
|
|
|
NF_FakeErrorREF = 11,
|
|
|
|
// Error that the user can get when issuing commands
|
|
SUBSCRIPTION_NOT_STARTED = 100,
|
|
START_OF_COMPONENT_IN_WRONG_STATE,
|
|
START_ALREADY_IN_PROGRESS,
|
|
ILLEGAL_STOP_EPOCH_ID,
|
|
WRONG_NO_OF_SECTIONS,
|
|
ILLEGAL_ACTION_WHEN_STOPPING,
|
|
ILLEGAL_USE_OF_COMMAND,
|
|
CHANNEL_NOT_STOPPABLE,
|
|
|
|
// subscriber releated 20 - 30
|
|
SUBSCRIBER_NOT_FOUND = 20,
|
|
|
|
//SUMA specific 400 - 600
|
|
SELECTED_TABLE_NOT_FOUND = 400,
|
|
SELECTED_TABLE_ALREADY_ADDED = 401,
|
|
|
|
//REP ERRORS starts at 1000
|
|
REP_NO_CONNECTED_NODES = 1001,
|
|
REP_DELETE_NEGATIVE_EPOCH = 1002,
|
|
REP_DELETE_NONEXISTING_EPOCH = 1003,
|
|
REP_APPLY_LOGRECORD_FAILED = 1012,
|
|
REP_APPLY_METARECORD_FAILED = 1013,
|
|
REP_APPLY_NONCOMPLETE_GCIBUFFER = 1004,
|
|
REP_APPLY_NULL_GCIBUFFER = 1005,
|
|
REP_APPLIER_START_TRANSACTION = 1006,
|
|
REP_APPLIER_NO_TABLE = 1007,
|
|
REP_APPLIER_NO_OPERATION = 1007,
|
|
REP_APPLIER_EXECUTE_TRANSACTION = 1008,
|
|
REP_APPLIER_CREATE_TABLE = 1009,
|
|
REP_APPLIER_PREPARE_TABLE = 1010,
|
|
REP_DISCONNECT = 1011,
|
|
REQUESTOR_ILLEGAL_STATE_FOR_SLOWSTOP = 1200,
|
|
REQUESTOR_ILLEGAL_STATE_FOR_FASTSTOP = 1201,
|
|
REP_NOT_PROPER_TABLE = 1202,
|
|
REP_TABLE_ALREADY_SELECTED = 1203,
|
|
REP_TABLE_NOT_FOUND = 1204,
|
|
|
|
NOT_YET_IMPLEMENTED,
|
|
NO_OF_ERROR_CODES
|
|
};
|
|
|
|
struct ErrorDescription {
|
|
GE_Code errCode;
|
|
const char * name;
|
|
};
|
|
static const ErrorDescription errorDescriptions[];
|
|
static const Uint32 noOfErrorDescs;
|
|
static const char * getErrorDesc(GrepError::GE_Code err);
|
|
|
|
};
|
|
|
|
#endif
|