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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Testing of the basic functions of a MyISAM table */
  14. #include "myisam.h"
  15. #include <my_getopt.h>
  16. #include <m_string.h>
  17. #define MAX_REC_LENGTH 1024
  18. static void usage();
  19. static int rec_pointer_size=0, flags[50];
  20. static int key_field=FIELD_SKIP_PRESPACE,extra_field=FIELD_SKIP_ENDSPACE;
  21. static int key_type=HA_KEYTYPE_NUM;
  22. static int create_flag=0;
  23. static uint insert_count, update_count, remove_count;
  24. static uint pack_keys=0, pack_seg=0, key_length;
  25. static uint unique_key=HA_NOSAME;
  26. static my_bool key_cacheing, null_fields, silent, skip_update, opt_unique,
  27.                verbose;
  28. static MI_COLUMNDEF recinfo[4];
  29. static MI_KEYDEF keyinfo[10];
  30. static HA_KEYSEG keyseg[10];
  31. static HA_KEYSEG uniqueseg[10];
  32. static int run_test(const char *filename);
  33. static void get_options(int argc, char *argv[]);
  34. static void create_key(char *key,uint rownr);
  35. static void create_record(char *record,uint rownr);
  36. static void update_record(char *record);
  37. int main(int argc,char *argv[])
  38. {
  39.   MY_INIT(argv[0]);
  40.   my_init();
  41.   if (key_cacheing)
  42.     init_key_cache(dflt_key_cache,KEY_CACHE_BLOCK_SIZE,IO_SIZE*16,0,0);
  43.   get_options(argc,argv);
  44.   exit(run_test("test1"));
  45. }
  46. static int run_test(const char *filename)
  47. {
  48.   MI_INFO *file;
  49.   int i,j,error,deleted,rec_length,uniques=0;
  50.   ha_rows found,row_count;
  51.   my_off_t pos;
  52.   char record[MAX_REC_LENGTH],key[MAX_REC_LENGTH],read_record[MAX_REC_LENGTH];
  53.   MI_UNIQUEDEF uniquedef;
  54.   MI_CREATE_INFO create_info;
  55.   bzero((char*) recinfo,sizeof(recinfo));
  56.   /* First define 2 columns */
  57.   recinfo[0].type=FIELD_NORMAL; recinfo[0].length=1; /* For NULL bits */
  58.   recinfo[1].type=key_field;
  59.   recinfo[1].length= (key_field == FIELD_BLOB ? 4+mi_portable_sizeof_char_ptr :
  60.       key_length);
  61.   if (key_field == FIELD_VARCHAR)
  62.     recinfo[1].length+=2;
  63.   recinfo[2].type=extra_field;
  64.   recinfo[2].length= (extra_field == FIELD_BLOB ? 4 + mi_portable_sizeof_char_ptr : 24);
  65.   if (extra_field == FIELD_VARCHAR)
  66.     recinfo[2].length+=2;
  67.   if (opt_unique)
  68.   {
  69.     recinfo[3].type=FIELD_CHECK;
  70.     recinfo[3].length=MI_UNIQUE_HASH_LENGTH;
  71.   }
  72.   rec_length=recinfo[0].length+recinfo[1].length+recinfo[2].length+
  73.     recinfo[3].length;
  74.   /* Define a key over the first column */
  75.   keyinfo[0].seg=keyseg;
  76.   keyinfo[0].keysegs=1;
  77.   keyinfo[0].key_alg=HA_KEY_ALG_BTREE;
  78.   keyinfo[0].seg[0].type= key_type;
  79.   keyinfo[0].seg[0].flag= pack_seg;
  80.   keyinfo[0].seg[0].start=1;
  81.   keyinfo[0].seg[0].length=key_length;
  82.   keyinfo[0].seg[0].null_bit= null_fields ? 2 : 0;
  83.   keyinfo[0].seg[0].null_pos=0;
  84.   keyinfo[0].seg[0].language= default_charset_info->number;
  85.   if (pack_seg & HA_BLOB_PART)
  86.   {
  87.     keyinfo[0].seg[0].bit_start=4; /* Length of blob length */
  88.   }
  89.   keyinfo[0].flag = (uint8) (pack_keys | unique_key);
  90.   bzero((byte*) flags,sizeof(flags));
  91.   if (opt_unique)
  92.   {
  93.     uint start;
  94.     uniques=1;
  95.     bzero((char*) &uniquedef,sizeof(uniquedef));
  96.     bzero((char*) uniqueseg,sizeof(uniqueseg));
  97.     uniquedef.seg=uniqueseg;
  98.     uniquedef.keysegs=2;
  99.     /* Make a unique over all columns (except first NULL fields) */
  100.     for (i=0, start=1 ; i < 2 ; i++)
  101.     {
  102.       uniqueseg[i].start=start;
  103.       start+=recinfo[i+1].length;
  104.       uniqueseg[i].length=recinfo[i+1].length;
  105.       uniqueseg[i].language= default_charset_info->number;
  106.     }
  107.     uniqueseg[0].type= key_type;
  108.     uniqueseg[0].null_bit= null_fields ? 2 : 0;
  109.     uniqueseg[1].type= HA_KEYTYPE_TEXT;
  110.     if (extra_field == FIELD_BLOB)
  111.     {
  112.       uniqueseg[1].length=0; /* The whole blob */
  113.       uniqueseg[1].bit_start=4; /* long blob */
  114.       uniqueseg[1].flag|= HA_BLOB_PART;
  115.     }
  116.     else if (extra_field == FIELD_VARCHAR)
  117.       uniqueseg[1].flag|= HA_VAR_LENGTH;
  118.   }
  119.   else
  120.     uniques=0;
  121.   if (!silent)
  122.     printf("- Creating isam-filen");
  123.   bzero((char*) &create_info,sizeof(create_info));
  124.   create_info.max_rows=(ulong) (rec_pointer_size ?
  125. (1L << (rec_pointer_size*8))/40 :
  126. 0);
  127.   if (mi_create(filename,1,keyinfo,3+opt_unique,recinfo,
  128. uniques, &uniquedef, &create_info,
  129. create_flag))
  130.     goto err;
  131.   if (!(file=mi_open(filename,2,HA_OPEN_ABORT_IF_LOCKED)))
  132.     goto err;
  133.   if (!silent)
  134.     printf("- Writing key:sn");
  135.   my_errno=0;
  136.   row_count=deleted=0;
  137.   for (i=49 ; i>=1 ; i-=2 )
  138.   {
  139.     if (insert_count-- == 0) { VOID(mi_close(file)) ; exit(0) ; }
  140.     j=i%25 +1;
  141.     create_record(record,j);
  142.     error=mi_write(file,record);
  143.     if (!error)
  144.       row_count++;
  145.     flags[j]=1;
  146.     if (verbose || error)
  147.       printf("J= %2d  mi_write: %d  errno: %dn", j,error,my_errno);
  148.   }
  149.   /* Insert 2 rows with null values */
  150.   if (null_fields)
  151.   {
  152.     create_record(record,0);
  153.     error=mi_write(file,record);
  154.     if (!error)
  155.       row_count++;
  156.     if (verbose || error)
  157.       printf("J= NULL  mi_write: %d  errno: %dn", error,my_errno);
  158.     error=mi_write(file,record);
  159.     if (!error)
  160.       row_count++;
  161.     if (verbose || error)
  162.       printf("J= NULL  mi_write: %d  errno: %dn", error,my_errno);
  163.     flags[0]=2;
  164.   }
  165.   if (!skip_update)
  166.   {
  167.     if (opt_unique)
  168.     {
  169.       if (!silent)
  170. printf("- Checking unique constraintn");
  171.       create_record(record,j);
  172.       if (!mi_write(file,record) || my_errno != HA_ERR_FOUND_DUPP_UNIQUE)
  173.       {
  174. printf("unique check failedn");
  175.       }
  176.     }
  177.     if (!silent)
  178.       printf("- Updating rowsn");
  179.     /* Update first last row to force extend of file */
  180.     if (mi_rsame(file,read_record,-1))
  181.     {
  182.       printf("Can't find last row with mi_rsamen");
  183.     }
  184.     else
  185.     {
  186.       memcpy(record,read_record,rec_length);
  187.       update_record(record);
  188.       if (mi_update(file,read_record,record))
  189.       {
  190. printf("Can't update last row: %.*sn",
  191.        keyinfo[0].seg[0].length,read_record+1);
  192.       }
  193.     }
  194.     /* Read through all rows and update them */
  195.     pos=(my_off_t) 0;
  196.     found=0;
  197.     while ((error=mi_rrnd(file,read_record,pos)) == 0)
  198.     {
  199.       if (update_count-- == 0) { VOID(mi_close(file)) ; exit(0) ; }
  200.       memcpy(record,read_record,rec_length);
  201.       update_record(record);
  202.       if (mi_update(file,read_record,record))
  203.       {
  204. printf("Can't update row: %.*s, error: %dn",
  205.        keyinfo[0].seg[0].length,record+1,my_errno);
  206.       }
  207.       found++;
  208.       pos=HA_OFFSET_ERROR;
  209.     }
  210.     if (found != row_count)
  211.       printf("Found %ld of %ld rowsn", found,row_count);
  212.   }
  213.   if (!silent)
  214.     printf("- Reopening filen");
  215.   if (mi_close(file)) goto err;
  216.   if (!(file=mi_open(filename,2,HA_OPEN_ABORT_IF_LOCKED))) goto err;
  217.   if (!skip_update)
  218.   {
  219.     if (!silent)
  220.       printf("- Removing keysn");
  221.     for (i=0 ; i <= 10 ; i++)
  222.     {
  223.       /* testing */
  224.       if (remove_count-- == 0) { VOID(mi_close(file)) ; exit(0) ; }
  225.       j=i*2;
  226.       if (!flags[j])
  227. continue;
  228.       create_key(key,j);
  229.       my_errno=0;
  230.       if ((error = mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT)))
  231.       {
  232. if (verbose || (flags[j] >= 1 ||
  233. (error && my_errno != HA_ERR_KEY_NOT_FOUND)))
  234.   printf("key: '%.*s'  mi_rkey:  %3d  errno: %3dn",
  235.  (int) key_length,key+test(null_fields),error,my_errno);
  236.       }
  237.       else
  238.       {
  239. error=mi_delete(file,read_record);
  240. if (verbose || error)
  241.   printf("key: '%.*s'  mi_delete: %3d  errno: %3dn",
  242.  (int) key_length, key+test(null_fields), error, my_errno);
  243. if (! error)
  244. {
  245.   deleted++;
  246.   flags[j]--;
  247. }
  248.       }
  249.     }
  250.   }
  251.   if (!silent)
  252.     printf("- Reading rows with keyn");
  253.   for (i=0 ; i <= 25 ; i++)
  254.   {
  255.     create_key(key,i);
  256.     my_errno=0;
  257.     error=mi_rkey(file,read_record,0,key,0,HA_READ_KEY_EXACT);
  258.     if (verbose ||
  259. (error == 0 && flags[i] == 0 && unique_key) ||
  260. (error && (flags[i] != 0 || my_errno != HA_ERR_KEY_NOT_FOUND)))
  261.     {
  262.       printf("key: '%.*s'  mi_rkey: %3d  errno: %3d  record: %sn",
  263.      (int) key_length,key+test(null_fields),error,my_errno,record+1);
  264.     }
  265.   }
  266.   if (!silent)
  267.     printf("- Reading rows with positionn");
  268.   for (i=1,found=0 ; i <= 30 ; i++)
  269.   {
  270.     my_errno=0;
  271.     if ((error=mi_rrnd(file,read_record,i == 1 ? 0L : HA_OFFSET_ERROR)) == -1)
  272.     {
  273.       if (found != row_count-deleted)
  274. printf("Found only %ld of %ld rowsn",found,row_count-deleted);
  275.       break;
  276.     }
  277.     if (!error)
  278.       found++;
  279.     if (verbose || (error != 0 && error != HA_ERR_RECORD_DELETED &&
  280.     error != HA_ERR_END_OF_FILE))
  281.     {
  282.       printf("pos: %2d  mi_rrnd: %3d  errno: %3d  record: %sn",
  283.      i-1,error,my_errno,read_record+1);
  284.     }
  285.   }
  286.   if (mi_close(file)) goto err;
  287.   my_end(MY_CHECK_ERROR);
  288.   return (0);
  289. err:
  290.   printf("got error: %3d when using myisam-databasen",my_errno);
  291.   return 1; /* skip warning */
  292. }
  293. static void create_key_part(char *key,uint rownr)
  294. {
  295.   if (!unique_key)
  296.     rownr&=7; /* Some identical keys */
  297.   if (keyinfo[0].seg[0].type == HA_KEYTYPE_NUM)
  298.   {
  299.     sprintf(key,"%*d",keyinfo[0].seg[0].length,rownr);
  300.   }
  301.   else if (keyinfo[0].seg[0].type == HA_KEYTYPE_VARTEXT)
  302.   { /* Alpha record */
  303.     /* Create a key that may be easily packed */
  304.     bfill(key,keyinfo[0].seg[0].length,rownr < 10 ? 'A' : 'B');
  305.     sprintf(key+keyinfo[0].seg[0].length-2,"%-2d",rownr);
  306.     if ((rownr & 7) == 0)
  307.     {
  308.       /* Change the key to force a unpack of the next key */
  309.       bfill(key+3,keyinfo[0].seg[0].length-4,rownr < 10 ? 'a' : 'b');
  310.     }
  311.   }
  312.   else
  313.   { /* Alpha record */
  314.     if (keyinfo[0].seg[0].flag & HA_SPACE_PACK)
  315.       sprintf(key,"%-*d",keyinfo[0].seg[0].length,rownr);
  316.     else
  317.     {
  318.       /* Create a key that may be easily packed */
  319.       bfill(key,keyinfo[0].seg[0].length,rownr < 10 ? 'A' : 'B');
  320.       sprintf(key+keyinfo[0].seg[0].length-2,"%-2d",rownr);
  321.       if ((rownr & 7) == 0)
  322.       {
  323. /* Change the key to force a unpack of the next key */
  324. key[1]= (rownr < 10 ? 'a' : 'b');
  325.       }
  326.     }
  327.   }
  328. }
  329. static void create_key(char *key,uint rownr)
  330. {
  331.   if (keyinfo[0].seg[0].null_bit)
  332.   {
  333.     if (rownr == 0)
  334.     {
  335.       key[0]=1; /* null key */
  336.       key[1]=0; /* Fore easy print of key */
  337.       return;
  338.     }
  339.     *key++=0;
  340.   }
  341.   if (keyinfo[0].seg[0].flag & (HA_BLOB_PART | HA_VAR_LENGTH))
  342.   {
  343.     uint tmp;
  344.     create_key_part(key+2,rownr);
  345.     tmp=strlen(key+2);
  346.     int2store(key,tmp);
  347.   }
  348.   else
  349.     create_key_part(key,rownr);
  350. }
  351. static char blob_key[MAX_REC_LENGTH];
  352. static char blob_record[MAX_REC_LENGTH+20*20];
  353. static void create_record(char *record,uint rownr)
  354. {
  355.   char *pos;
  356.   bzero((char*) record,MAX_REC_LENGTH);
  357.   record[0]=1; /* delete marker */
  358.   if (rownr == 0 && keyinfo[0].seg[0].null_bit)
  359.     record[0]|=keyinfo[0].seg[0].null_bit; /* Null key */
  360.   pos=record+1;
  361.   if (recinfo[1].type == FIELD_BLOB)
  362.   {
  363.     uint tmp;
  364.     char *ptr;
  365.     create_key_part(blob_key,rownr);
  366.     tmp=strlen(blob_key);
  367.     int4store(pos,tmp);
  368.     ptr=blob_key;
  369.     memcpy_fixed(pos+4,&ptr,sizeof(char*));
  370.     pos+=recinfo[1].length;
  371.   }
  372.   else if (recinfo[1].type == FIELD_VARCHAR)
  373.   {
  374.     uint tmp;
  375.     create_key_part(pos+2,rownr);
  376.     tmp=strlen(pos+2);
  377.     int2store(pos,tmp);
  378.     pos+=recinfo[1].length;
  379.   }
  380.   else
  381.   {
  382.     create_key_part(pos,rownr);
  383.     pos+=recinfo[1].length;
  384.   }
  385.   if (recinfo[2].type == FIELD_BLOB)
  386.   {
  387.     uint tmp;
  388.     char *ptr;;
  389.     sprintf(blob_record,"... row: %d", rownr);
  390.     strappend(blob_record,max(MAX_REC_LENGTH-rownr,10),' ');
  391.     tmp=strlen(blob_record);
  392.     int4store(pos,tmp);
  393.     ptr=blob_record;
  394.     memcpy_fixed(pos+4,&ptr,sizeof(char*));
  395.   }
  396.   else if (recinfo[2].type == FIELD_VARCHAR)
  397.   {
  398.     uint tmp;
  399.     sprintf(pos+2,"... row: %d", rownr);
  400.     tmp=strlen(pos+2);
  401.     int2store(pos,tmp);
  402.   }
  403.   else
  404.   {
  405.     sprintf(pos,"... row: %d", rownr);
  406.     strappend(pos,recinfo[2].length,' ');
  407.   }
  408. }
  409. /* change row to test re-packing of rows and reallocation of keys */
  410. static void update_record(char *record)
  411. {
  412.   char *pos=record+1;
  413.   if (recinfo[1].type == FIELD_BLOB)
  414.   {
  415.     char *column,*ptr;
  416.     int length;
  417.     length=uint4korr(pos); /* Long blob */
  418.     memcpy_fixed(&column,pos+4,sizeof(char*));
  419.     memcpy(blob_key,column,length); /* Move old key */
  420.     ptr=blob_key;
  421.     memcpy_fixed(pos+4,&ptr,sizeof(char*)); /* Store pointer to new key */
  422.     if (keyinfo[0].seg[0].type != HA_KEYTYPE_NUM)
  423.       my_casedn(default_charset_info,blob_key,length);
  424.     pos+=recinfo[1].length;
  425.   }
  426.   else if (recinfo[1].type == FIELD_VARCHAR)
  427.   {
  428.     uint length=uint2korr(pos);
  429.     my_casedn(default_charset_info,pos+2,length);
  430.     pos+=recinfo[1].length;
  431.   }
  432.   else
  433.   {
  434.     if (keyinfo[0].seg[0].type != HA_KEYTYPE_NUM)
  435.       my_casedn(default_charset_info,pos,keyinfo[0].seg[0].length);
  436.     pos+=recinfo[1].length;
  437.   }
  438.   if (recinfo[2].type == FIELD_BLOB)
  439.   {
  440.     char *column;
  441.     int length;
  442.     length=uint4korr(pos);
  443.     memcpy_fixed(&column,pos+4,sizeof(char*));
  444.     memcpy(blob_record,column,length);
  445.     bfill(blob_record+length,20,'.'); /* Make it larger */
  446.     length+=20;
  447.     int4store(pos,length);
  448.     column=blob_record;
  449.     memcpy_fixed(pos+4,&column,sizeof(char*));
  450.   }
  451.   else if (recinfo[2].type == FIELD_VARCHAR)
  452.   {
  453.     /* Second field is longer than 10 characters */
  454.     uint length=uint2korr(pos);
  455.     bfill(pos+2+length,recinfo[2].length-length-2,'.');
  456.     length=recinfo[2].length-2;
  457.     int2store(pos,length);
  458.   }
  459.   else
  460.   {
  461.     bfill(pos+recinfo[2].length-10,10,'.');
  462.   }
  463. }
  464. static struct my_option my_long_options[] =
  465. {
  466.   {"checksum", 'c', "Undocumented",
  467.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  468. #ifndef DBUG_OFF
  469.   {"debug", '#', "Undocumented",
  470.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  471. #endif
  472.   {"delete_rows", 'd', "Undocumented", (gptr*) &remove_count,
  473.    (gptr*) &remove_count, 0, GET_UINT, REQUIRED_ARG, 1000, 0, 0, 0, 0, 0},
  474.   {"help", '?', "Display help and exit",
  475.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  476.   {"insert_rows", 'i', "Undocumented", (gptr*) &insert_count,
  477.    (gptr*) &insert_count, 0, GET_UINT, REQUIRED_ARG, 1000, 0, 0, 0, 0, 0},
  478.   {"key_alpha", 'a', "Undocumented",
  479.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  480.   {"key_binary_pack", 'B', "Undocumented",
  481.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  482.   {"key_blob", 'b', "Undocumented",
  483.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  484.   {"key_cache", 'K', "Undocumented", (gptr*) &key_cacheing,
  485.    (gptr*) &key_cacheing, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  486.   {"key_length", 'k', "Undocumented", (gptr*) &key_length, (gptr*) &key_length,
  487.    0, GET_UINT, REQUIRED_ARG, 6, 0, 0, 0, 0, 0},
  488.   {"key_multiple", 'm', "Undocumented",
  489.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  490.   {"key_prefix_pack", 'P', "Undocumented",
  491.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  492.   {"key_space_pack", 'p', "Undocumented",
  493.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  494.   {"key_varchar", 'w', "Undocumented",
  495.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  496.   {"null_fields", 'N', "Undocumented",
  497.    (gptr*) &null_fields, (gptr*) &null_fields, 0, GET_BOOL, NO_ARG,
  498.    0, 0, 0, 0, 0, 0},
  499.   {"row_fixed_size", 'S', "Undocumented",
  500.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  501.   {"row_pointer_size", 'R', "Undocumented", (gptr*) &rec_pointer_size,
  502.    (gptr*) &rec_pointer_size, 0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  503.   {"silent", 's', "Undocumented",
  504.    (gptr*) &silent, (gptr*) &silent, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  505.   {"skip_update", 'U', "Undocumented", (gptr*) &skip_update,
  506.    (gptr*) &skip_update, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  507.   {"unique", 'C', "Undocumented", (gptr*) &opt_unique, (gptr*) &opt_unique, 0,
  508.    GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  509.   {"update_rows", 'u', "Undocumented", (gptr*) &update_count,
  510.    (gptr*) &update_count, 0, GET_UINT, REQUIRED_ARG, 1000, 0, 0, 0, 0, 0},
  511.   {"verbose", 'v', "Be more verbose", (gptr*) &verbose, (gptr*) &verbose, 0,
  512.    GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  513.   {"version", 'V', "Print version number and exit",
  514.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  515.   { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  516. };
  517. static my_bool
  518. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  519.        char *argument)
  520. {
  521.   switch(optid) {
  522.   case 'a':
  523.     key_type= HA_KEYTYPE_TEXT;
  524.     break;
  525.   case 'c':
  526.     create_flag|= HA_CREATE_CHECKSUM;
  527.     break;
  528.   case 'R': /* Length of record pointer */
  529.     if (rec_pointer_size > 3)
  530.       rec_pointer_size=0;
  531.     break;
  532.   case 'P':
  533.     pack_keys= HA_PACK_KEY; /* Use prefix compression */
  534.     break;
  535.   case 'B':
  536.     pack_keys= HA_BINARY_PACK_KEY; /* Use binary compression */
  537.     break;
  538.   case 'S':
  539.     if (key_field == FIELD_VARCHAR)
  540.     {
  541.       create_flag=0; /* Static sized varchar */
  542.     }
  543.     else if (key_field != FIELD_BLOB)
  544.     {
  545.       key_field=FIELD_NORMAL; /* static-size record */
  546.       extra_field=FIELD_NORMAL;
  547.     }
  548.     break;
  549.   case 'p':
  550.     pack_keys=HA_PACK_KEY; /* Use prefix + space packing */
  551.     pack_seg=HA_SPACE_PACK;
  552.     key_type=HA_KEYTYPE_TEXT;
  553.     break;
  554.   case 'm':
  555.     unique_key=0;
  556.     break;
  557.   case 'b':
  558.     key_field=FIELD_BLOB; /* blob key */
  559.     extra_field= FIELD_BLOB;
  560.     pack_seg|= HA_BLOB_PART;
  561.     key_type= HA_KEYTYPE_VARTEXT;
  562.     break;
  563.   case 'k':
  564.     if (key_length < 4 || key_length > MI_MAX_KEY_LENGTH)
  565.     {
  566.       fprintf(stderr,"Wrong key lengthn");
  567.       exit(1);
  568.     }
  569.     break;
  570.   case 'w':
  571.     key_field=FIELD_VARCHAR; /* varchar keys */
  572.     extra_field= FIELD_VARCHAR;
  573.     key_type= HA_KEYTYPE_VARTEXT;
  574.     pack_seg|= HA_VAR_LENGTH;
  575.     create_flag|= HA_PACK_RECORD;
  576.     break;
  577.   case 'K': /* Use key cacheing */
  578.     key_cacheing=1;
  579.     break;
  580.   case 'V':
  581.     printf("test1 Ver 1.2 n");
  582.     exit(0);
  583.   case '#':
  584.     DEBUGGER_ON;
  585.     DBUG_PUSH (argument);
  586.     break;
  587.   case '?':
  588.     usage();
  589.     exit(1);
  590.   }
  591.   return 0;
  592. }
  593. /* Read options */
  594. static void get_options(int argc, char *argv[])
  595. {
  596.   int ho_error;
  597.   if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
  598.     exit(ho_error);
  599.   return;
  600. } /* get options */
  601. static void usage()
  602. {
  603.   printf("Usage: %s [options]nn", my_progname);
  604.   my_print_help(my_long_options);
  605.   my_print_variables(my_long_options);
  606. }