mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / test / ndbapi / bank / bankValidateAllGLs.cpp
blob9277d31879f22f8407f44f249d82958cb8529df5
1 /* Copyright (c) 2003-2005 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
17 #include <ndb_global.h>
19 #include <NdbOut.hpp>
21 #include <NdbApi.hpp>
22 #include <NdbMain.h>
23 #include <NDBT.hpp>
24 #include <NdbSleep.h>
25 #include <getarg.h>
26 #include "Bank.hpp"
29 int main(int argc, const char** argv){
30 ndb_init();
31 int _help = 0;
32 char * _database="BANK";
34 struct getargs args[] = {
35 { "usage", '?', arg_flag, &_help, "Print help", "" },
36 { "database", 'd', arg_string, &_database, "Database name", ""}
38 int num_args = sizeof(args) / sizeof(args[0]);
39 int optind = 0;
40 char desc[] =
41 "This program will validate all GLs in the bank\n";
43 if(getarg(args, num_args, argc, argv, &optind) || _help) {
44 arg_printusage(args, num_args, argv[0], desc);
45 return NDBT_ProgramExit(NDBT_WRONGARGS);
48 Ndb_cluster_connection con;
49 if(con.connect(12, 5, 1) != 0)
51 return NDBT_ProgramExit(NDBT_FAILED);
54 Bank bank(con,_database);
56 if (bank.performValidateAllGLs() != 0)
57 return NDBT_ProgramExit(NDBT_FAILED);
59 return NDBT_ProgramExit(NDBT_OK);