home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / init.cpp < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  70 lines

  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.  
  17.  
  18. /* Init and dummy functions for interface with unireg */
  19.  
  20. #include "mysql_priv.h"
  21. #include <m_ctype.h>
  22.  
  23. void unireg_init(ulong options)
  24. {
  25.   uint i;
  26.   double nr;
  27.   DBUG_ENTER("unireg_init");
  28.  
  29.   MYSYS_PROGRAM_DONT_USE_CURSES();
  30.   abort_loop=0;
  31.  
  32.   my_disable_async_io=1;        /* aioread is only in shared library */
  33.   wild_many='%'; wild_one='_'; wild_prefix='\\'; /* Change to sql syntax */
  34.  
  35.   current_pid=(ulong) getpid();        /* Save for later ref */
  36.   init_time();                /* Init time-functions (read zone) */
  37. #ifdef USE_MY_ATOF
  38.   init_my_atof();            /* use our atof */
  39. #endif
  40.   my_abort_hook=unireg_abort;        /* Abort with close of databases */
  41.   f_fyllchar=' ';            /* Input fill char */
  42.   bfill(last_ref,MAX_REFLENGTH,(uchar) 255);  /* This is indexfile-last-ref */
  43.  
  44.   VOID(strmov(reg_ext,".frm"));
  45.   for (i=0 ; i < 6 ; i++)        // YYMMDDHHMMSS
  46.     dayord.pos[i]=i;
  47.   specialflag=SPECIAL_SAME_DB_NAME;
  48.   blob_newline='^';            /* Convert newline in blobs to this */
  49.   /* Make a tab of powers of 10 */
  50.   for (i=0,nr=1.0; i < array_elements(log_10) ; i++)
  51.   {                    /* It's used by filesort... */
  52.     log_10[i]= nr ; nr*= 10.0;
  53.   }
  54.   specialflag|=options;            /* Set options from argv */
  55.  
  56.   // The following is needed because of like optimization in select.cc
  57.  
  58.   uchar max_char=my_sort_order[(uchar) max_sort_char];
  59.   for (i = 0; i < 256; i++)
  60.   {
  61.     if ((uchar) my_sort_order[i] > max_char)
  62.     {
  63.       max_char=(uchar) my_sort_order[i];
  64.     max_sort_char= (char) i;
  65.     }
  66.   }
  67.   thread_stack_min=thread_stack - STACK_MIN_SIZE;
  68.   DBUG_VOID_RETURN;
  69. }
  70.