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

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