create_index.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <NdbOut.hpp>
  15. #include <NdbApi.hpp>
  16. #include <NDBT.hpp>
  17. #include <getarg.h>
  18. int 
  19. main(int argc, const char** argv){
  20.   ndb_init();
  21.   const char* _dbname = "TEST_DB";
  22.   int _help = 0;
  23.   int _ordered = 0, _pk = 1;
  24.   struct getargs args[] = {
  25.     { "database", 'd', arg_string, &_dbname, "dbname", 
  26.       "Name of database table is in"},
  27.     { "ordered", 'o', arg_flag, &_ordered, "Create ordered index", "" },
  28.     { "pk", 'p', arg_flag, &_pk, "Create index on primary key", "" },
  29.     { "usage", '?', arg_flag, &_help, "Print help", "" }
  30.   };
  31.   int num_args = sizeof(args) / sizeof(args[0]);
  32.   int optind = 0;
  33.   char desc[] = 
  34.     "<tabname>+n"
  35.     "This program will create one unique hash index named ind_<tabname> "
  36.     " for each table. The index will contain all columns in the table";
  37.   
  38.   if(getarg(args, num_args, argc, argv, &optind) || _help ||
  39.      argv[optind] == NULL){
  40.     arg_printusage(args, num_args, argv[0], desc);
  41.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  42.   }
  43.   
  44.   Ndb MyNdb(_dbname);
  45.   if(MyNdb.init() != 0){
  46.     ERR(MyNdb.getNdbError());
  47.     return NDBT_ProgramExit(NDBT_FAILED);
  48.   }
  49.   
  50.   while(MyNdb.waitUntilReady() != 0)
  51.     ndbout << "Waiting for ndb to become ready..." << endl;
  52.   
  53.   NdbDictionary::Dictionary * dict = MyNdb.getDictionary();
  54.   
  55.   for(int i = optind; i<argc; i++){
  56.     const NdbDictionary::Table * tab = dict->getTable(argv[i]);
  57.     if(tab == 0){
  58.       g_err << "Unknown table: " << argv[i] << endl;
  59.       continue;
  60.     }
  61.     
  62.     if(tab->getNoOfColumns() > 16){
  63.       g_err << "Table " <<  argv[i] << " has more than 16 columns" << endl;
  64.     }
  65.     
  66.     NdbDictionary::Index ind;
  67.     if(_ordered){
  68.       ind.setType(NdbDictionary::Index::OrderedIndex);
  69.       ind.setLogging(false);
  70.     } else {
  71.       ind.setType(NdbDictionary::Index::UniqueHashIndex);
  72.     }
  73.     char buf[512];
  74.     sprintf(buf, "IND_%s_%s_%c", 
  75.     argv[i], (_pk ? "PK" : "FULL"), (_ordered ? 'O' : 'U'));
  76.     ind.setName(buf);
  77.     ind.setTable(argv[i]);
  78.     for(int c = 0; c<tab->getNoOfColumns(); c++){
  79.       if(!_pk || tab->getColumn(c)->getPrimaryKey())
  80. ind.addIndexColumn(tab->getColumn(c)->getName());
  81.     }
  82.     ndbout << "creating index " << buf << " on table " << argv[i] << "...";
  83.     const int res = dict->createIndex(ind);
  84.     if(res != 0)
  85.       ndbout << endl << dict->getNdbError() << endl;
  86.     else
  87.       ndbout << "OK" << endl;
  88.   }  
  89.   
  90.   return NDBT_ProgramExit(NDBT_OK);
  91. }