~michaeleguo/ubuntu/trusty/percona-xtradb-cluster-5.5/arm64fix

« back to all changes in this revision

Viewing changes to storage/ndb/test/ndbapi/bank/bankMakeGL.cpp

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-10 14:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20140210144423-f2134l2gxuvq2m6l
Tags: upstream-5.5.34-25.9+dfsg
ImportĀ upstreamĀ versionĀ 5.5.34-25.9+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2003 MySQL AB
 
2
 
 
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.
 
6
 
 
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.
 
11
 
 
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 */
 
15
 
 
16
 
 
17
#include <ndb_global.h>
 
18
#include <NdbOut.hpp>
 
19
 
 
20
#include <NdbApi.hpp>
 
21
#include <NdbMain.h>
 
22
#include <NDBT.hpp> 
 
23
#include <NdbSleep.h>
 
24
#include <getarg.h>
 
25
#include "Bank.hpp"
 
26
 
 
27
 
 
28
int main(int argc, const char** argv){
 
29
  ndb_init();
 
30
  int _help = 0;
 
31
  char * _database = "BANK";
 
32
  
 
33
  struct getargs args[] = {
 
34
    { "usage", '?', arg_flag, &_help, "Print help", "" },
 
35
    { "database", 'd', arg_string, &_database, "Database name", ""} 
 
36
  };
 
37
  int num_args = sizeof(args) / sizeof(args[0]);
 
38
  int optind = 0;
 
39
  char desc[] = 
 
40
    "This program will make GL records in the bank\n";
 
41
  
 
42
  if(getarg(args, num_args, argc, argv, &optind) ||  _help) {
 
43
    arg_printusage(args, num_args, argv[0], desc);
 
44
    return NDBT_ProgramExit(NDBT_WRONGARGS);
 
45
  }
 
46
 
 
47
  Ndb_cluster_connection con;
 
48
  if(con.connect(12, 5, 1) != 0)
 
49
  {
 
50
    return NDBT_ProgramExit(NDBT_FAILED);
 
51
  }
 
52
 
 
53
  Bank bank(con,_database);
 
54
 
 
55
  if (bank.performMakeGLs() != 0)
 
56
    return NDBT_ProgramExit(NDBT_FAILED);
 
57
  
 
58
  return NDBT_ProgramExit(NDBT_OK);
 
59
 
 
60
}
 
61
 
 
62
 
 
63