mi_test1.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:17k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Testing of the basic functions of a MyISAM table */
  17. #include "myisam.h"
  18. #include <getopt.h>
  19. #include <m_ctype.h>
  20. #define MAX_REC_LENGTH 1024
  21. static int rec_pointer_size=0,verbose=0,flags[50];
  22. static int key_field=FIELD_SKIPP_PRESPACE,extra_field=FIELD_SKIPP_ENDSPACE;
  23. static int key_type=HA_KEYTYPE_NUM;
  24. static int create_flag=0;
  25. static uint insert_count= 1000,update_count=1000,remove_count=1000;
  26. static uint pack_keys=0,pack_seg=0,null_fields=0,key_length=6,skip_update=0;
  27. static uint unique_key=HA_NOSAME,key_cacheing=0,opt_unique=0;
  28. static uint silent;
  29. static MI_COLUMNDEF recinfo[4];
  30. static MI_KEYDEF keyinfo[10];
  31. static MI_KEYSEG keyseg[10];
  32. static MI_KEYSEG uniqueseg[10];
  33. static int run_test(const char *filename);
  34. static void get_options(int argc, char *argv[]);
  35. static void create_key(char *key,uint rownr);
  36. static void create_record(char *record,uint rownr);
  37. static void update_record(char *record);
  38. int main(int argc,char *argv[])
  39. {
  40.   MY_INIT(argv[0]);
  41.   my_init();
  42.   if (key_cacheing)
  43.     init_key_cache(IO_SIZE*16,(uint) IO_SIZE*4*10);
  44.   get_options(argc,argv);
  45.   exit(run_test("test1"));
  46. }
  47. int run_test(const char *filename)
  48. {
  49.   MI_INFO *file;
  50.   int i,j,error,deleted,rec_length,uniques=0;
  51.   ha_rows found,row_count;
  52.   my_off_t pos;
  53.   char record[MAX_REC_LENGTH],key[MAX_REC_LENGTH],read_record[MAX_REC_LENGTH];
  54.   MI_UNIQUEDEF uniquedef;
  55.   MI_CREATE_INFO create_info;
  56.   bzero((char*) recinfo,sizeof(recinfo));
  57.   /* First define 2 columns */
  58.   recinfo[0].type=FIELD_NORMAL; recinfo[0].length=1; /* For NULL bits */
  59.   recinfo[1].type=key_field;
  60.   recinfo[1].length= (key_field == FIELD_BLOB ? 4+mi_portable_sizeof_char_ptr :
  61.       key_length);
  62.   if (key_field == FIELD_VARCHAR)
  63.     recinfo[1].length+=2;
  64.   recinfo[2].type=extra_field;
  65.   recinfo[2].length= (extra_field == FIELD_BLOB ? 4 + mi_portable_sizeof_char_ptr : 24);
  66.   if (extra_field == FIELD_VARCHAR)
  67.     recinfo[2].length+=2;
  68.   if (opt_unique)
  69.   {
  70.     recinfo[3].type=FIELD_CHECK;
  71.     recinfo[3].length=MI_UNIQUE_HASH_LENGTH;
  72.   }
  73.   rec_length=recinfo[0].length+recinfo[1].length+recinfo[2].length+
  74.     recinfo[3].length;
  75.   /* Define a key over the first column */
  76.   keyinfo[0].seg=keyseg;
  77.   keyinfo[0].keysegs=1;
  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=MY_CHARSET_CURRENT;
  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=MY_CHARSET_CURRENT;
  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; /* skipp 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.       casedn(blob_key,length);
  424.     pos+=recinfo[1].length;
  425.   }
  426.   else if (recinfo[1].type == FIELD_VARCHAR)
  427.   {
  428.     uint length=uint2korr(pos);
  429.     casedn(pos+2,length);
  430.     pos+=recinfo[1].length;
  431.   }
  432.   else
  433.   {
  434.     if (keyinfo[0].seg[0].type != HA_KEYTYPE_NUM)
  435.       casedn(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 option long_options[] =
  465. {
  466.   {"checksum", no_argument, 0, 'c'},
  467. #ifndef DBUG_OFF
  468.   {"debug", required_argument, 0, '#'},
  469. #endif
  470.   {"delete_rows", required_argument, 0, 'd'},
  471.   {"help", no_argument, 0, '?'},
  472.   {"insert_rows", required_argument, 0, 'i'},
  473.   {"key_alpha", no_argument, 0, 'a'},
  474.   {"key_binary_pack", no_argument, 0, 'B'},
  475.   {"key_blob", required_argument, 0, 'b'},
  476.   {"key_cache", no_argument, 0, 'K'},
  477.   {"key_length", required_argument, 0, 'k'},
  478.   {"key_multiple", no_argument, 0, 'm'},
  479.   {"key_prefix_pack", no_argument, 0, 'P'},
  480.   {"key_space_pack", no_argument, 0, 'p'},
  481.   {"key_varchar", no_argument, 0, 'w'},
  482.   {"null_fields", no_argument, 0, 'N'},
  483.   {"row_fixed_size", no_argument, 0, 'S'},
  484.   {"row_pointer_size", required_argument, 0, 'R'},
  485.   {"silent", no_argument, 0, 's'},
  486.   {"skip_update", no_argument, 0, 'U'},
  487.   {"unique", no_argument, 0, 'C'},
  488.   {"update_rows", required_argument, 0, 'u'},
  489.   {"verbose", no_argument, 0, 'v'},
  490.   {"version", no_argument, 0, 'V'},
  491.   {0, 0, 0, 0}
  492. };
  493. /* Read options */
  494. static void get_options(int argc,char *argv[])
  495. {
  496.   int c,option_index=0;
  497.   while ((c=getopt_long(argc,argv,"abBcCd:i:k:KmPR:SspNu:UvVw#:",
  498. long_options, &option_index)) != EOF)
  499.   {
  500.     switch(c) {
  501.     case 'a':
  502.       key_type= HA_KEYTYPE_TEXT;
  503.       break;
  504.     case 'c':
  505.       create_flag|= HA_CREATE_CHECKSUM;
  506.       break;
  507.     case 'C':
  508.       opt_unique=1;
  509.       break;
  510.     case 'R': /* Length of record pointer */
  511.       rec_pointer_size=atoi(optarg);
  512.       if (rec_pointer_size > 3)
  513. rec_pointer_size=0;
  514.       break;
  515.     case 'P':
  516.       pack_keys= HA_PACK_KEY; /* Use prefix compression */
  517.       break;
  518.     case 'B':
  519.       pack_keys= HA_BINARY_PACK_KEY; /* Use binary compression */
  520.       break;
  521.     case 'S':
  522.       if (key_field == FIELD_VARCHAR)
  523.       {
  524. create_flag=0; /* Static sized varchar */
  525.       }
  526.       else if (key_field != FIELD_BLOB)
  527.       {
  528. key_field=FIELD_NORMAL; /* static-size record */
  529. extra_field=FIELD_NORMAL;
  530.       }
  531.       break;
  532.     case 'p':
  533.       pack_keys=HA_PACK_KEY; /* Use prefix + space packing */
  534.       pack_seg=HA_SPACE_PACK;
  535.       key_type=HA_KEYTYPE_TEXT;
  536.       break;
  537.     case 'N':
  538.       null_fields=1; /* First key part may be null */
  539.       break;
  540.     case 'v': /* verbose */
  541.       verbose=1;
  542.       break;
  543.     case 'd':
  544.       remove_count=atoi(optarg);
  545.       break;
  546.     case 'i':
  547.       insert_count=atoi(optarg);
  548.       break;
  549.     case 'u':
  550.       update_count=atoi(optarg);
  551.       break;
  552.     case 'U':
  553.       skip_update=1;
  554.       break;
  555.     case 'm':
  556.       unique_key=0;
  557.       break;
  558.     case 'b':
  559.       key_field=FIELD_BLOB; /* blob key */
  560.       extra_field= FIELD_BLOB;
  561.       pack_seg|= HA_BLOB_PART;
  562.       key_type= HA_KEYTYPE_VARTEXT;
  563.       break;
  564.     case 'k':
  565.       key_length=atoi(optarg);
  566.       if (key_length < 4 || key_length > MI_MAX_KEY_LENGTH)
  567.       {
  568. fprintf(stderr,"Wrong key lengthn");
  569. exit(1);
  570.       }
  571.       break;
  572.     case 's':
  573.       silent=1;
  574.       break;
  575.     case 'w':
  576.       key_field=FIELD_VARCHAR; /* varchar keys */
  577.       extra_field= FIELD_VARCHAR;
  578.       key_type= HA_KEYTYPE_VARTEXT;
  579.       pack_seg|= HA_VAR_LENGTH;
  580.       create_flag|= HA_PACK_RECORD;
  581.       break;
  582.     case 'K': /* Use key cacheing */
  583.       key_cacheing=1;
  584.       break;
  585.     case 'V':
  586.       printf("test1 Ver 1.0 n");
  587.       exit(0);
  588.     case '#':
  589.       DEBUGGER_ON;
  590.       DBUG_PUSH (optarg);
  591.       break;
  592.     }
  593.   }
  594.   return;
  595. } /* get options */