diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-10-03 20:41:43 +0200 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-10-03 20:41:43 +0200 |
commit | a1f9ec01924c53c8933350e0a1ed37a22077b09e (patch) | |
tree | 70372efc4d6da7e1c738923ea6a66ab35c4fc8e3 /ndb/include/mgmapi | |
parent | b1d8aa6787323d9482a8fe53ff9e229f0cc4735e (diff) | |
download | mariadb-git-a1f9ec01924c53c8933350e0a1ed37a22077b09e.tar.gz |
Bug #13197 NDB needs better error message for not enough memory.
- added 2 new error codes for out of data and index memory during SR
+ removed c++ style comments from c file
ndb/include/mgmapi/ndbd_exit_codes.h:
Bug #13197 NDB needs better error message for not enough memory.
- added 2 new error codes for out of data and index memory during SR
ndb/src/kernel/blocks/dbacc/DbaccMain.cpp:
Bug #13197 NDB needs better error message for not enough memory.
- added 2 new error codes for out of data and index memory during SR
ndb/src/kernel/blocks/dbtup/DbtupSystemRestart.cpp:
Bug #13197 NDB needs better error message for not enough memory.
- added 2 new error codes for out of data and index memory during SR
Diffstat (limited to 'ndb/include/mgmapi')
-rw-r--r-- | ndb/include/mgmapi/ndbd_exit_codes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ndb/include/mgmapi/ndbd_exit_codes.h b/ndb/include/mgmapi/ndbd_exit_codes.h index 30bf1c4b3fe..afce6c16504 100644 --- a/ndb/include/mgmapi/ndbd_exit_codes.h +++ b/ndb/include/mgmapi/ndbd_exit_codes.h @@ -102,6 +102,10 @@ typedef ndbd_exit_classification_enum ndbd_exit_classification; /* TC 6200-> */ /* DIH 6300-> */ #define NDBD_EXIT_MAX_CRASHED_REPLICAS 6300 +/* ACC 6600-> */ +#define NDBD_EXIT_SR_OUT_OF_INDEXMEMORY 6600 +/* TUP 6800-> */ +#define NDBD_EXIT_SR_OUT_OF_DATAMEMORY 6800 /* LQH 7200-> */ |