GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::adminVerifyDb. More...
#include <gpudb/protocol/admin_verify_db.h>
Public Member Functions | |
AdminVerifyDbResponse () | |
Constructs an AdminVerifyDbResponse object with default parameters. More... | |
Public Attributes | |
bool | verifiedOk |
True if no errors were found, false otherwise. More... | |
std::vector< std::string > | errorList |
List of errors found while validating the database internal state. More... | |
int64_t | orphanedTablesTotalSize |
If verify_persist is true, verify_orphaned_tables_only is true or delete_orphaned_tables is true, this is the sum in bytes of all orphaned tables found. More... | |
std::map< std::string, std::string > | info |
Additional information. More... | |
A set of results returned by GPUdb::adminVerifyDb.
Definition at line 348 of file admin_verify_db.h.
|
inline |
Constructs an AdminVerifyDbResponse object with default parameters.
Definition at line 353 of file admin_verify_db.h.
std::vector<std::string> gpudb::AdminVerifyDbResponse::errorList |
List of errors found while validating the database internal state.
The default value is an empty vector.
Definition at line 371 of file admin_verify_db.h.
std::map<std::string, std::string> gpudb::AdminVerifyDbResponse::info |
Additional information.
Definition at line 388 of file admin_verify_db.h.
int64_t gpudb::AdminVerifyDbResponse::orphanedTablesTotalSize |
If verify_persist is true, verify_orphaned_tables_only is true or delete_orphaned_tables is true, this is the sum in bytes of all orphaned tables found.
Otherwise, -1.
Definition at line 383 of file admin_verify_db.h.
bool gpudb::AdminVerifyDbResponse::verifiedOk |
True if no errors were found, false otherwise.
The default value is false.
Definition at line 365 of file admin_verify_db.h.