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>
29 int main(int argc
, const char** argv
){
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]);
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
);