diff options
author | unknown <tomas@poseidon.(none)> | 2004-08-27 11:48:27 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-08-27 11:48:27 +0000 |
commit | 987fc113959189c59e8f6e99d8d5364d9d62bc89 (patch) | |
tree | 553669a934f12f62a64ba7fd2729840a40015ef3 /ndb/test/src | |
parent | 6566af8c3599d6ca6f3110a02d4e8476d386888e (diff) | |
download | mariadb-git-987fc113959189c59e8f6e99d8d5364d9d62bc89.tar.gz |
see respective file
ndb/src/mgmsrv/InitConfigFileParser.hpp:
Rename: ndb/src/common/mgmcommon/InitConfigFileParser.hpp -> ndb/src/mgmsrv/InitConfigFileParser.hpp
ndb/src/mgmsrv/InitConfigFileParser.cpp:
Rename: ndb/src/common/mgmcommon/InitConfigFileParser.cpp -> ndb/src/mgmsrv/InitConfigFileParser.cpp
ndb/src/mgmsrv/ConfigInfo.hpp:
Rename: ndb/src/common/mgmcommon/ConfigInfo.hpp -> ndb/src/mgmsrv/ConfigInfo.hpp
ndb/src/common/mgmcommon/Makefile.am:
moved files to mgmsrv
ndb/src/mgmclient/CommandInterpreter.cpp:
added shutdown command
ndb/src/mgmclient/CommandInterpreter.hpp:
added shutdown command
ndb/src/mgmsrv/Config.cpp:
.
ndb/src/mgmsrv/Config.hpp:
.
ndb/src/mgmsrv/ConfigInfo.cpp:
wait with this
ndb/src/mgmsrv/Makefile.am:
moved files to mgmsrv
ndb/test/include/NdbBackup.hpp:
backup not necessarily in file system path
ndb/test/ndbapi/testDict.cpp:
compile error
ndb/test/src/NdbBackup.cpp:
aligned with new config param
Diffstat (limited to 'ndb/test/src')
-rw-r--r-- | ndb/test/src/NdbBackup.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ndb/test/src/NdbBackup.cpp b/ndb/test/src/NdbBackup.cpp index a40c6ba7d7c..f33c5d8c313 100644 --- a/ndb/test/src/NdbBackup.cpp +++ b/ndb/test/src/NdbBackup.cpp @@ -64,7 +64,7 @@ NdbBackup::start(unsigned int & _backup_id){ const char * -NdbBackup::getFileSystemPathForNode(int _node_id){ +NdbBackup::getBackupDataDirForNode(int _node_id){ /** * Fetch configuration from management server @@ -106,8 +106,8 @@ NdbBackup::getFileSystemPathForNode(int _node_id){ } const char * path; - if (iter.get(CFG_DB_FILESYSTEM_PATH, &path)){ - ndbout << "FileSystemPath not found" << endl; + if (iter.get(CFG_DB_BACKUP_DATADIR, &path)){ + ndbout << "BackupDataDir not found" << endl; return NULL; } @@ -123,9 +123,9 @@ NdbBackup::execRestore(bool _restore_data, const int buf_len = 1000; char buf[buf_len]; - ndbout << "getFileSystemPathForNode "<< _node_id <<endl; + ndbout << "getBackupDataDir "<< _node_id <<endl; - const char* path = getFileSystemPathForNode(_node_id); + const char* path = getBackupDataDirForNode(_node_id); if (path == NULL) return -1; |