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

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. /* Init and dummy functions for interface with unireg */
  14. #include "mysql_priv.h"
  15. #include <m_ctype.h>
  16. void unireg_init(ulong options)
  17. {
  18.   uint i;
  19.   double nr;
  20.   DBUG_ENTER("unireg_init");
  21.   MYSYS_PROGRAM_DONT_USE_CURSES();
  22.   abort_loop=0;
  23.   my_disable_async_io=1; /* aioread is only in shared library */
  24.   wild_many='%'; wild_one='_'; wild_prefix='\'; /* Change to sql syntax */
  25.   current_pid=(ulong) getpid(); /* Save for later ref */
  26.   init_time(); /* Init time-functions (read zone) */
  27. #ifndef EMBEDDED_LIBRARY
  28.   my_abort_hook=unireg_abort; /* Abort with close of databases */
  29. #endif
  30.   VOID(strmov(reg_ext,".frm"));
  31.   specialflag=SPECIAL_SAME_DB_NAME;
  32.   /* Make a tab of powers of 10 */
  33.   for (i=0,nr=1.0; i < array_elements(log_10) ; i++)
  34.   { /* It's used by filesort... */
  35.     log_10[i]= nr ; nr*= 10.0;
  36.   }
  37.   specialflag|=options; /* Set options from argv */
  38.   DBUG_VOID_RETURN;
  39. }