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

MySQL数据库

开发平台:

Visual C++

  1.   bootstrap_file=file;
  2. #ifndef EMBEDDED_LIBRARY // TODO:  Enable this
  3.   if (pthread_create(&thd->real_id,&connection_attrib,handle_bootstrap,
  4.      (void*) thd))
  5.   {
  6.     sql_print_warning("Can't create thread to handle bootstrap");
  7.     DBUG_RETURN(-1);
  8.   }
  9.   /* Wait for thread to die */
  10.   (void) pthread_mutex_lock(&LOCK_thread_count);
  11.   while (thread_count)
  12.   {
  13.     (void) pthread_cond_wait(&COND_thread_count,&LOCK_thread_count);
  14.     DBUG_PRINT("quit",("One thread died (count=%u)",thread_count));
  15.   }
  16.   (void) pthread_mutex_unlock(&LOCK_thread_count);
  17. #else
  18.   thd->mysql= 0;
  19.   handle_bootstrap((void *)thd);
  20. #endif
  21.   error= thd->is_fatal_error;
  22. #ifndef EMBEDDED_LIBRARY
  23.   net_end(&thd->net);
  24. #endif
  25.   thd->cleanup();
  26.   delete thd;
  27.   DBUG_RETURN(error);
  28. }
  29. static bool read_init_file(char *file_name)
  30. {
  31.   FILE *file;
  32.   DBUG_ENTER("read_init_file");
  33.   DBUG_PRINT("enter",("name: %s",file_name));
  34.   if (!(file=my_fopen(file_name,O_RDONLY,MYF(MY_WME))))
  35.     return(1);
  36.   bootstrap(file); /* Ignore errors from this */
  37.   (void) my_fclose(file,MYF(MY_WME));
  38.   return 0;
  39. }
  40. #ifndef EMBEDDED_LIBRARY
  41. static void create_new_thread(THD *thd)
  42. {
  43.   DBUG_ENTER("create_new_thread");
  44.   NET *net=&thd->net; // For easy ref
  45.   net->read_timeout = (uint) connect_timeout;
  46.   if (protocol_version > 9)
  47.     net->return_errno=1;
  48.   /* don't allow too many connections */
  49.   if (thread_count - delayed_insert_threads >= max_connections+1 || abort_loop)
  50.   {
  51.     DBUG_PRINT("error",("Too many connections"));
  52.     close_connection(thd, ER_CON_COUNT_ERROR, 1);
  53.     delete thd;
  54.     DBUG_VOID_RETURN;
  55.   }
  56.   pthread_mutex_lock(&LOCK_thread_count);
  57.   thd->thread_id=thread_id++;
  58.   thd->real_id=pthread_self(); // Keep purify happy
  59.   /* Start a new thread to handle connection */
  60. #ifdef ONE_THREAD
  61.   if (test_flags & TEST_NO_THREADS) // For debugging under Linux
  62.   {
  63.     thread_cache_size=0; // Safety
  64.     thread_count++;
  65.     threads.append(thd);
  66.     thd->real_id=pthread_self();
  67.     (void) pthread_mutex_unlock(&LOCK_thread_count);
  68.     handle_one_connection((void*) thd);
  69.   }
  70.   else
  71. #endif
  72.   {
  73.     if (cached_thread_count > wake_thread)
  74.     {
  75.       start_cached_thread(thd);
  76.     }
  77.     else
  78.     {
  79.       int error;
  80.       thread_count++;
  81.       thread_created++;
  82.       threads.append(thd);
  83.       if (thread_count-delayed_insert_threads > max_used_connections)
  84.         max_used_connections=thread_count-delayed_insert_threads;
  85.       DBUG_PRINT("info",(("creating thread %d"), thd->thread_id));
  86.       thd->connect_time = time(NULL);
  87.       if ((error=pthread_create(&thd->real_id,&connection_attrib,
  88. handle_one_connection,
  89. (void*) thd)))
  90.       {
  91. DBUG_PRINT("error",
  92.    ("Can't create thread to handle request (error %d)",
  93.     error));
  94. thread_count--;
  95. thd->killed=1; // Safety
  96. (void) pthread_mutex_unlock(&LOCK_thread_count);
  97. statistic_increment(aborted_connects,&LOCK_status);
  98. net_printf(thd,ER_CANT_CREATE_THREAD,error);
  99. (void) pthread_mutex_lock(&LOCK_thread_count);
  100. close_connection(thd,0,0);
  101. delete thd;
  102. (void) pthread_mutex_unlock(&LOCK_thread_count);
  103. DBUG_VOID_RETURN;
  104.       }
  105.     }
  106.     (void) pthread_mutex_unlock(&LOCK_thread_count);
  107.   }
  108.   DBUG_PRINT("info",("Thread created"));
  109.   DBUG_VOID_RETURN;
  110. }
  111. #endif /* EMBEDDED_LIBRARY */
  112. #ifdef SIGNALS_DONT_BREAK_READ
  113. inline void kill_broken_server()
  114. {
  115.   /* hack to get around signals ignored in syscalls for problem OS's */
  116.   if (
  117. #if !defined(__NETWARE__)
  118.       unix_sock == INVALID_SOCKET ||
  119. #endif
  120.       (!opt_disable_networking && ip_sock == INVALID_SOCKET))
  121.   {
  122.     select_thread_in_use = 0;
  123. #ifdef __NETWARE__
  124.     kill_server(MYSQL_KILL_SIGNAL); /* never returns */
  125. #else
  126.     kill_server((void*)MYSQL_KILL_SIGNAL); /* never returns */
  127. #endif /* __NETWARE__ */
  128.   }
  129. }
  130. #define MAYBE_BROKEN_SYSCALL kill_broken_server();
  131. #else
  132. #define MAYBE_BROKEN_SYSCALL
  133. #endif
  134. /* Handle new connections and spawn new process to handle them */
  135. #ifndef EMBEDDED_LIBRARY
  136. extern "C" pthread_handler_decl(handle_connections_sockets,
  137. arg __attribute__((unused)))
  138. {
  139.   my_socket sock,new_sock;
  140.   uint error_count=0;
  141.   uint max_used_connection= (uint) (max(ip_sock,unix_sock)+1);
  142.   fd_set readFDs,clientFDs;
  143.   THD *thd;
  144.   struct sockaddr_in cAddr;
  145.   int ip_flags=0,socket_flags=0,flags;
  146.   st_vio *vio_tmp;
  147.   DBUG_ENTER("handle_connections_sockets");
  148.   LINT_INIT(new_sock);
  149.   (void) my_pthread_getprio(pthread_self()); // For debugging
  150.   FD_ZERO(&clientFDs);
  151.   if (ip_sock != INVALID_SOCKET)
  152.   {
  153.     FD_SET(ip_sock,&clientFDs);
  154. #ifdef HAVE_FCNTL
  155.     ip_flags = fcntl(ip_sock, F_GETFL, 0);
  156. #endif
  157.   }
  158. #ifdef HAVE_SYS_UN_H
  159.   FD_SET(unix_sock,&clientFDs);
  160. #ifdef HAVE_FCNTL
  161.   socket_flags=fcntl(unix_sock, F_GETFL, 0);
  162. #endif
  163. #endif
  164.   DBUG_PRINT("general",("Waiting for connections."));
  165.   MAYBE_BROKEN_SYSCALL;
  166.   while (!abort_loop)
  167.   {
  168.     readFDs=clientFDs;
  169. #ifdef HPUX10
  170.     if (select(max_used_connection,(int*) &readFDs,0,0,0) < 0)
  171.       continue;
  172. #else
  173.     if (select((int) max_used_connection,&readFDs,0,0,0) < 0)
  174.     {
  175.       if (socket_errno != SOCKET_EINTR)
  176.       {
  177. if (!select_errors++ && !abort_loop) /* purecov: inspected */
  178.   sql_print_error("mysqld: Got error %d from select",socket_errno); /* purecov: inspected */
  179.       }
  180.       MAYBE_BROKEN_SYSCALL
  181.       continue;
  182.     }
  183. #endif /* HPUX10 */
  184.     if (abort_loop)
  185.     {
  186.       MAYBE_BROKEN_SYSCALL;
  187.       break;
  188.     }
  189.     /* Is this a new connection request ? */
  190. #ifdef HAVE_SYS_UN_H
  191.     if (FD_ISSET(unix_sock,&readFDs))
  192.     {
  193.       sock = unix_sock;
  194.       flags= socket_flags;
  195.     }
  196.     else
  197. #endif
  198.     {
  199.       sock = ip_sock;
  200.       flags= ip_flags;
  201.     }
  202. #if !defined(NO_FCNTL_NONBLOCK)
  203.     if (!(test_flags & TEST_BLOCKING))
  204.     {
  205. #if defined(O_NONBLOCK)
  206.       fcntl(sock, F_SETFL, flags | O_NONBLOCK);
  207. #elif defined(O_NDELAY)
  208.       fcntl(sock, F_SETFL, flags | O_NDELAY);
  209. #endif
  210.     }
  211. #endif /* NO_FCNTL_NONBLOCK */
  212.     for (uint retry=0; retry < MAX_ACCEPT_RETRY; retry++)
  213.     {
  214.       size_socket length=sizeof(struct sockaddr_in);
  215.       new_sock = accept(sock, my_reinterpret_cast(struct sockaddr *) (&cAddr),
  216. &length);
  217. #ifdef __NETWARE__ 
  218.       // TODO: temporary fix, waiting for TCP/IP fix - DEFECT000303149
  219.       if ((new_sock == INVALID_SOCKET) && (socket_errno == EINVAL))
  220.       {
  221.         kill_server(SIGTERM);
  222.       }
  223. #endif
  224.       if (new_sock != INVALID_SOCKET ||
  225.   (socket_errno != SOCKET_EINTR && socket_errno != SOCKET_EAGAIN))
  226. break;
  227.       MAYBE_BROKEN_SYSCALL;
  228. #if !defined(NO_FCNTL_NONBLOCK)
  229.       if (!(test_flags & TEST_BLOCKING))
  230.       {
  231. if (retry == MAX_ACCEPT_RETRY - 1)
  232.   fcntl(sock, F_SETFL, flags); // Try without O_NONBLOCK
  233.       }
  234. #endif
  235.     }
  236. #if !defined(NO_FCNTL_NONBLOCK)
  237.     if (!(test_flags & TEST_BLOCKING))
  238.       fcntl(sock, F_SETFL, flags);
  239. #endif
  240.     if (new_sock == INVALID_SOCKET)
  241.     {
  242.       if ((error_count++ & 255) == 0) // This can happen often
  243. sql_perror("Error in accept");
  244.       MAYBE_BROKEN_SYSCALL;
  245.       if (socket_errno == SOCKET_ENFILE || socket_errno == SOCKET_EMFILE)
  246. sleep(1); // Give other threads some time
  247.       continue;
  248.     }
  249. #ifdef HAVE_LIBWRAP
  250.     {
  251.       if (sock == ip_sock)
  252.       {
  253. struct request_info req;
  254. signal(SIGCHLD, SIG_DFL);
  255. request_init(&req, RQ_DAEMON, libwrapName, RQ_FILE, new_sock, NULL);
  256. fromhost(&req);
  257. if (!hosts_access(&req))
  258. {
  259.   /*
  260.     This may be stupid but refuse() includes an exit(0)
  261.     which we surely don't want...
  262.     clean_exit() - same stupid thing ...
  263.   */
  264.   syslog(deny_severity, "refused connect from %s",
  265.  eval_client(&req));
  266.   /*
  267.     C++ sucks (the gibberish in front just translates the supplied
  268.     sink function pointer in the req structure from a void (*sink)();
  269.     to a void(*sink)(int) if you omit the cast, the C++ compiler
  270.     will cry...
  271.   */
  272.   if (req.sink)
  273.     ((void (*)(int))req.sink)(req.fd);
  274.   (void) shutdown(new_sock,2);
  275.   (void) closesocket(new_sock);
  276.   continue;
  277. }
  278.       }
  279.     }
  280. #endif /* HAVE_LIBWRAP */
  281.     {
  282.       size_socket dummyLen;
  283.       struct sockaddr dummy;
  284.       dummyLen = sizeof(struct sockaddr);
  285.       if (getsockname(new_sock,&dummy, &dummyLen) < 0)
  286.       {
  287. sql_perror("Error on new connection socket");
  288. (void) shutdown(new_sock,2);
  289. (void) closesocket(new_sock);
  290. continue;
  291.       }
  292.     }
  293.     /*
  294.     ** Don't allow too many connections
  295.     */
  296.     if (!(thd= new THD))
  297.     {
  298.       (void) shutdown(new_sock,2);
  299.       VOID(closesocket(new_sock));
  300.       continue;
  301.     }
  302.     if (!(vio_tmp=vio_new(new_sock,
  303.   sock == unix_sock ? VIO_TYPE_SOCKET :
  304.   VIO_TYPE_TCPIP,
  305.   sock == unix_sock)) ||
  306. my_net_init(&thd->net,vio_tmp))
  307.     {
  308.       if (vio_tmp)
  309. vio_delete(vio_tmp);
  310.       else
  311.       {
  312. (void) shutdown(new_sock,2);
  313. (void) closesocket(new_sock);
  314.       }
  315.       delete thd;
  316.       continue;
  317.     }
  318.     if (sock == unix_sock)
  319.       thd->host=(char*) my_localhost;
  320. #ifdef __WIN__
  321.     /* Set default wait_timeout */
  322.     ulong wait_timeout= global_system_variables.net_wait_timeout * 1000;
  323.     (void) setsockopt(new_sock, SOL_SOCKET, SO_RCVTIMEO, (char*)&wait_timeout,
  324.                     sizeof(wait_timeout));
  325. #endif
  326.     create_new_thread(thd);
  327.   }
  328. #ifdef OS2
  329.   // kill server must be invoked from thread 1!
  330.   kill_server(MYSQL_KILL_SIGNAL);
  331. #endif
  332.   decrement_handler_count();
  333.   DBUG_RETURN(0);
  334. }
  335. #ifdef __NT__
  336. extern "C" pthread_handler_decl(handle_connections_namedpipes,arg)
  337. {
  338.   HANDLE hConnectedPipe;
  339.   BOOL fConnected;
  340.   THD *thd;
  341.   my_thread_init();
  342.   DBUG_ENTER("handle_connections_namedpipes");
  343.   (void) my_pthread_getprio(pthread_self()); // For debugging
  344.   DBUG_PRINT("general",("Waiting for named pipe connections."));
  345.   while (!abort_loop)
  346.   {
  347.     /* wait for named pipe connection */
  348.     fConnected = ConnectNamedPipe( hPipe, NULL );
  349.     if (abort_loop)
  350.       break;
  351.     if (!fConnected)
  352.       fConnected = GetLastError() == ERROR_PIPE_CONNECTED;
  353.     if (!fConnected)
  354.     {
  355.       CloseHandle( hPipe );
  356.       if ((hPipe = CreateNamedPipe(pipe_name,
  357.    PIPE_ACCESS_DUPLEX,
  358.    PIPE_TYPE_BYTE |
  359.    PIPE_READMODE_BYTE |
  360.    PIPE_WAIT,
  361.    PIPE_UNLIMITED_INSTANCES,
  362.    (int) global_system_variables.net_buffer_length,
  363.    (int) global_system_variables.net_buffer_length,
  364.    NMPWAIT_USE_DEFAULT_WAIT,
  365.    &saPipeSecurity )) ==
  366.   INVALID_HANDLE_VALUE )
  367.       {
  368. sql_perror("Can't create new named pipe!");
  369. break; // Abort
  370.       }
  371.     }
  372.     hConnectedPipe = hPipe;
  373.     /* create new pipe for new connection */
  374.     if ((hPipe = CreateNamedPipe(pipe_name,
  375.  PIPE_ACCESS_DUPLEX,
  376.  PIPE_TYPE_BYTE |
  377.  PIPE_READMODE_BYTE |
  378.  PIPE_WAIT,
  379.  PIPE_UNLIMITED_INSTANCES,
  380.  (int) global_system_variables.net_buffer_length,
  381.  (int) global_system_variables.net_buffer_length,
  382.  NMPWAIT_USE_DEFAULT_WAIT,
  383.  &saPipeSecurity)) ==
  384. INVALID_HANDLE_VALUE)
  385.     {
  386.       sql_perror("Can't create new named pipe!");
  387.       hPipe=hConnectedPipe;
  388.       continue; // We have to try again
  389.     }
  390.     if (!(thd = new THD))
  391.     {
  392.       DisconnectNamedPipe( hConnectedPipe );
  393.       CloseHandle( hConnectedPipe );
  394.       continue;
  395.     }
  396.     if (!(thd->net.vio = vio_new_win32pipe(hConnectedPipe)) ||
  397. my_net_init(&thd->net, thd->net.vio))
  398.     {
  399.       close_connection(thd, ER_OUT_OF_RESOURCES, 1);
  400.       delete thd;
  401.       continue;
  402.     }
  403.     /* host name is unknown */
  404.     thd->host = my_strdup(my_localhost,MYF(0)); /* Host is unknown */
  405.     create_new_thread(thd);
  406.   }
  407.   decrement_handler_count();
  408.   DBUG_RETURN(0);
  409. }
  410. #endif /* __NT__ */
  411. /*
  412.   Thread of shared memory's service
  413.   SYNOPSIS
  414.     pthread_handler_decl()
  415.     handle_connections_shared_memory Thread handle
  416.     arg                              Arguments of thread
  417. */
  418. #ifdef HAVE_SMEM
  419. pthread_handler_decl(handle_connections_shared_memory,arg)
  420. {
  421.   /* file-mapping object, use for create shared memory */
  422.   HANDLE handle_connect_file_map= 0;
  423.   char  *handle_connect_map= 0;   // pointer on shared memory
  424.   HANDLE event_connect_answer= 0;
  425.   ulong smem_buffer_length= shared_memory_buffer_length + 4;
  426.   ulong connect_number= 1;
  427.   char tmp[63];
  428.   char *suffix_pos;
  429.   char connect_number_char[22], *p;
  430.   const char *errmsg= 0;
  431.   SECURITY_ATTRIBUTES *sa_event= 0, *sa_mapping= 0;
  432.   my_thread_init();
  433.   DBUG_ENTER("handle_connections_shared_memorys");
  434.   DBUG_PRINT("general",("Waiting for allocated shared memory."));
  435.   if (my_security_attr_create(&sa_event, &errmsg,
  436.                               GENERIC_ALL, SYNCHRONIZE | EVENT_MODIFY_STATE))
  437.     goto error;
  438.   if (my_security_attr_create(&sa_mapping, &errmsg,
  439.                              GENERIC_ALL, FILE_MAP_READ | FILE_MAP_WRITE))
  440.     goto error;
  441.   /*
  442.     The name of event and file-mapping events create agree next rule:
  443.       shared_memory_base_name+unique_part
  444.     Where:
  445.       shared_memory_base_name is unique value for each server
  446.       unique_part is unique value for each object (events and file-mapping)
  447.   */
  448.   suffix_pos= strxmov(tmp,shared_memory_base_name,"_",NullS);
  449.   strmov(suffix_pos, "CONNECT_REQUEST");
  450.   if ((smem_event_connect_request= CreateEvent(sa_event,
  451.                                                FALSE, FALSE, tmp)) == 0)
  452.   {
  453.     errmsg= "Could not create request event";
  454.     goto error;
  455.   }
  456.   strmov(suffix_pos, "CONNECT_ANSWER");
  457.   if ((event_connect_answer= CreateEvent(sa_event, FALSE, FALSE, tmp)) == 0)
  458.   {
  459.     errmsg="Could not create answer event";
  460.     goto error;
  461.   }
  462.   strmov(suffix_pos, "CONNECT_DATA");
  463.   if ((handle_connect_file_map=
  464.        CreateFileMapping(INVALID_HANDLE_VALUE, sa_mapping,
  465.                          PAGE_READWRITE, 0, sizeof(connect_number), tmp)) == 0)
  466.   {
  467.     errmsg= "Could not create file mapping";
  468.     goto error;
  469.   }
  470.   if ((handle_connect_map= (char *)MapViewOfFile(handle_connect_file_map,
  471.   FILE_MAP_WRITE,0,0,
  472.   sizeof(DWORD))) == 0)
  473.   {
  474.     errmsg= "Could not create shared memory service";
  475.     goto error;
  476.   }
  477.   while (!abort_loop)
  478.   {
  479.     /* Wait a request from client */
  480.     WaitForSingleObject(smem_event_connect_request,INFINITE);
  481.     /*
  482.        it can be after shutdown command
  483.     */
  484.     if (abort_loop) 
  485.       goto error;
  486.     HANDLE handle_client_file_map= 0;
  487.     char  *handle_client_map= 0;
  488.     HANDLE event_client_wrote= 0;
  489.     HANDLE event_client_read= 0;    // for transfer data server <-> client
  490.     HANDLE event_server_wrote= 0;
  491.     HANDLE event_server_read= 0;
  492.     HANDLE event_conn_closed= 0;
  493.     THD *thd= 0;
  494.     p= int10_to_str(connect_number, connect_number_char, 10);
  495.     /*
  496.       The name of event and file-mapping events create agree next rule:
  497.         shared_memory_base_name+unique_part+number_of_connection
  498.         Where:
  499.   shared_memory_base_name is uniquel value for each server
  500.   unique_part is unique value for each object (events and file-mapping)
  501.   number_of_connection is connection-number between server and client
  502.     */
  503.     suffix_pos= strxmov(tmp,shared_memory_base_name,"_",connect_number_char,
  504.  "_",NullS);
  505.     strmov(suffix_pos, "DATA");
  506.     if ((handle_client_file_map=
  507.          CreateFileMapping(INVALID_HANDLE_VALUE, sa_mapping,
  508.                            PAGE_READWRITE, 0, smem_buffer_length, tmp)) == 0)
  509.     {
  510.       errmsg= "Could not create file mapping";
  511.       goto errorconn;
  512.     }
  513.     if ((handle_client_map= (char*)MapViewOfFile(handle_client_file_map,
  514.   FILE_MAP_WRITE,0,0,
  515.   smem_buffer_length)) == 0)
  516.     {
  517.       errmsg= "Could not create memory map";
  518.       goto errorconn;
  519.     }
  520.     strmov(suffix_pos, "CLIENT_WROTE");
  521.     if ((event_client_wrote= CreateEvent(sa_event, FALSE, FALSE, tmp)) == 0)
  522.     {
  523.       errmsg= "Could not create client write event";
  524.       goto errorconn;
  525.     }
  526.     strmov(suffix_pos, "CLIENT_READ");
  527.     if ((event_client_read= CreateEvent(sa_event, FALSE, FALSE, tmp)) == 0)
  528.     {
  529.       errmsg= "Could not create client read event";
  530.       goto errorconn;
  531.     }
  532.     strmov(suffix_pos, "SERVER_READ");
  533.     if ((event_server_read= CreateEvent(sa_event, FALSE, FALSE, tmp)) == 0)
  534.     {
  535.       errmsg= "Could not create server read event";
  536.       goto errorconn;
  537.     }
  538.     strmov(suffix_pos, "SERVER_WROTE");
  539.     if ((event_server_wrote= CreateEvent(sa_event,
  540.                                          FALSE, FALSE, tmp)) == 0)
  541.     {
  542.       errmsg= "Could not create server write event";
  543.       goto errorconn;
  544.     }
  545.     strmov(suffix_pos, "CONNECTION_CLOSED");
  546.     if ((event_conn_closed= CreateEvent(sa_event,
  547.                                         TRUE, FALSE, tmp)) == 0)
  548.     {
  549.       errmsg= "Could not create closed connection event";
  550.       goto errorconn;
  551.     }
  552.     if (abort_loop)
  553.       goto errorconn;
  554.     if (!(thd= new THD))
  555.       goto errorconn;
  556.     /* Send number of connection to client */
  557.     int4store(handle_connect_map, connect_number);
  558.     if (!SetEvent(event_connect_answer))
  559.     {
  560.       errmsg= "Could not send answer event";
  561.       goto errorconn;
  562.     }
  563.     /* Set event that client should receive data */
  564.     if (!SetEvent(event_client_read))
  565.     {
  566.       errmsg= "Could not set client to read mode";
  567.       goto errorconn;
  568.     }
  569.     if (!(thd->net.vio= vio_new_win32shared_memory(&thd->net,
  570.                                                    handle_client_file_map,
  571.                                                    handle_client_map,
  572.                                                    event_client_wrote,
  573.                                                    event_client_read,
  574.                                                    event_server_wrote,
  575.                                                    event_server_read,
  576.                                                    event_conn_closed)) ||
  577.                         my_net_init(&thd->net, thd->net.vio))
  578.     {
  579.       close_connection(thd, ER_OUT_OF_RESOURCES, 1);
  580.       errmsg= 0;
  581.       goto errorconn;
  582.     }
  583.     thd->host= my_strdup(my_localhost,MYF(0)); /* Host is unknown */
  584.     create_new_thread(thd);
  585.     connect_number++;
  586.     continue;
  587. errorconn:
  588.     /* Could not form connection;  Free used handlers/memort and retry */
  589.     if (errmsg)
  590.     {
  591.       char buff[180];
  592.       strxmov(buff, "Can't create shared memory connection: ", errmsg, ".",
  593.       NullS);
  594.       sql_perror(buff);
  595.     }
  596.     if (handle_client_file_map) 
  597.       CloseHandle(handle_client_file_map);
  598.     if (handle_client_map)
  599.       UnmapViewOfFile(handle_client_map);
  600.     if (event_server_wrote)
  601.       CloseHandle(event_server_wrote);
  602.     if (event_server_read)
  603.       CloseHandle(event_server_read);
  604.     if (event_client_wrote)
  605.       CloseHandle(event_client_wrote);
  606.     if (event_client_read)
  607.       CloseHandle(event_client_read);
  608.     if (event_conn_closed)
  609.       CloseHandle(event_conn_closed);
  610.     delete thd;
  611.   }
  612.   /* End shared memory handling */
  613. error:
  614.   if (errmsg)
  615.   {
  616.     char buff[180];
  617.     strxmov(buff, "Can't create shared memory service: ", errmsg, ".", NullS);
  618.     sql_perror(buff);
  619.   }
  620.   my_security_attr_free(sa_event);
  621.   my_security_attr_free(sa_mapping);
  622.   if (handle_connect_map) UnmapViewOfFile(handle_connect_map);
  623.   if (handle_connect_file_map) CloseHandle(handle_connect_file_map);
  624.   if (event_connect_answer) CloseHandle(event_connect_answer);
  625.   if (smem_event_connect_request) CloseHandle(smem_event_connect_request);
  626.   decrement_handler_count();
  627.   DBUG_RETURN(0);
  628. }
  629. #endif /* HAVE_SMEM */
  630. #endif /* EMBEDDED_LIBRARY */
  631. /****************************************************************************
  632.   Handle start options
  633. ******************************************************************************/
  634. enum options_mysqld
  635. {
  636.   OPT_ISAM_LOG=256,            OPT_SKIP_NEW, 
  637.   OPT_SKIP_GRANT,              OPT_SKIP_LOCK, 
  638.   OPT_ENABLE_LOCK,             OPT_USE_LOCKING,
  639.   OPT_SOCKET,                  OPT_UPDATE_LOG,
  640.   OPT_BIN_LOG,                 OPT_SKIP_RESOLVE,
  641.   OPT_SKIP_NETWORKING,         OPT_BIN_LOG_INDEX,
  642.   OPT_BIND_ADDRESS,            OPT_PID_FILE,
  643.   OPT_SKIP_PRIOR,              OPT_BIG_TABLES,
  644.   OPT_STANDALONE,              OPT_ONE_THREAD,
  645.   OPT_CONSOLE,                 OPT_LOW_PRIORITY_UPDATES,
  646.   OPT_SKIP_HOST_CACHE,         OPT_SHORT_LOG_FORMAT,
  647.   OPT_FLUSH,                   OPT_SAFE,
  648.   OPT_BOOTSTRAP,               OPT_SKIP_SHOW_DB,
  649.   OPT_STORAGE_ENGINE,          OPT_INIT_FILE,
  650.   OPT_DELAY_KEY_WRITE_ALL,     OPT_SLOW_QUERY_LOG,
  651.   OPT_DELAY_KEY_WRITE,        OPT_CHARSETS_DIR,
  652.   OPT_BDB_HOME,                OPT_BDB_LOG,
  653.   OPT_BDB_TMP,                 OPT_BDB_SYNC,
  654.   OPT_BDB_LOCK,                OPT_BDB,
  655.   OPT_BDB_NO_RECOVER,     OPT_BDB_SHARED,
  656.   OPT_MASTER_HOST,             OPT_MASTER_USER,
  657.   OPT_MASTER_PASSWORD,         OPT_MASTER_PORT,
  658.   OPT_MASTER_INFO_FILE,        OPT_MASTER_CONNECT_RETRY,
  659.   OPT_MASTER_RETRY_COUNT,
  660.   OPT_MASTER_SSL,              OPT_MASTER_SSL_KEY,
  661.   OPT_MASTER_SSL_CERT,         OPT_MASTER_SSL_CAPATH,
  662.   OPT_MASTER_SSL_CIPHER,       OPT_MASTER_SSL_CA,
  663.   OPT_SQL_BIN_UPDATE_SAME,     OPT_REPLICATE_DO_DB,
  664.   OPT_REPLICATE_IGNORE_DB,     OPT_LOG_SLAVE_UPDATES,
  665.   OPT_BINLOG_DO_DB,            OPT_BINLOG_IGNORE_DB,
  666.   OPT_WANT_CORE,               OPT_CONCURRENT_INSERT,
  667.   OPT_MEMLOCK,                 OPT_MYISAM_RECOVER,
  668.   OPT_REPLICATE_REWRITE_DB,    OPT_SERVER_ID,
  669.   OPT_SKIP_SLAVE_START,        OPT_SKIP_INNOBASE,
  670.   OPT_SAFEMALLOC_MEM_LIMIT,    OPT_REPLICATE_DO_TABLE,
  671.   OPT_REPLICATE_IGNORE_TABLE,  OPT_REPLICATE_WILD_DO_TABLE,
  672.   OPT_REPLICATE_WILD_IGNORE_TABLE, OPT_REPLICATE_SAME_SERVER_ID,
  673.   OPT_DISCONNECT_SLAVE_EVENT_COUNT,
  674.   OPT_ABORT_SLAVE_EVENT_COUNT,
  675.   OPT_INNODB_DATA_HOME_DIR,
  676.   OPT_INNODB_DATA_FILE_PATH,
  677.   OPT_INNODB_LOG_GROUP_HOME_DIR,
  678.   OPT_INNODB_LOG_ARCH_DIR,
  679.   OPT_INNODB_LOG_ARCHIVE,
  680.   OPT_INNODB_FLUSH_LOG_AT_TRX_COMMIT,
  681.   OPT_INNODB_FLUSH_METHOD,
  682.   OPT_INNODB_FAST_SHUTDOWN,
  683.   OPT_INNODB_FILE_PER_TABLE, OPT_CRASH_BINLOG_INNODB,
  684.   OPT_INNODB_LOCKS_UNSAFE_FOR_BINLOG,
  685.   OPT_SAFE_SHOW_DB, OPT_INNODB_SAFE_BINLOG,
  686.   OPT_INNODB, OPT_ISAM,
  687.   OPT_NDBCLUSTER, OPT_NDB_CONNECTSTRING, OPT_NDB_USE_EXACT_COUNT,
  688.   OPT_NDB_FORCE_SEND, OPT_NDB_AUTOINCREMENT_PREFETCH_SZ,
  689.   OPT_NDB_SHM, OPT_NDB_OPTIMIZED_NODE_SELECTION,
  690.   OPT_SKIP_SAFEMALLOC,
  691.   OPT_TEMP_POOL, OPT_TX_ISOLATION,
  692.   OPT_SKIP_STACK_TRACE, OPT_SKIP_SYMLINKS,
  693.   OPT_MAX_BINLOG_DUMP_EVENTS, OPT_SPORADIC_BINLOG_DUMP_FAIL,
  694.   OPT_SAFE_USER_CREATE, OPT_SQL_MODE,
  695.   OPT_HAVE_NAMED_PIPE,
  696.   OPT_DO_PSTACK, OPT_REPORT_HOST,
  697.   OPT_REPORT_USER, OPT_REPORT_PASSWORD, OPT_REPORT_PORT,
  698.   OPT_SHOW_SLAVE_AUTH_INFO,
  699.   OPT_SLAVE_LOAD_TMPDIR, OPT_NO_MIX_TYPE,
  700.   OPT_RPL_RECOVERY_RANK,OPT_INIT_RPL_ROLE,
  701.   OPT_RELAY_LOG, OPT_RELAY_LOG_INDEX, OPT_RELAY_LOG_INFO_FILE,
  702.   OPT_SLAVE_SKIP_ERRORS, OPT_DES_KEY_FILE, OPT_LOCAL_INFILE,
  703.   OPT_SSL_SSL, OPT_SSL_KEY, OPT_SSL_CERT, OPT_SSL_CA,
  704.   OPT_SSL_CAPATH, OPT_SSL_CIPHER,
  705.   OPT_BACK_LOG, OPT_BINLOG_CACHE_SIZE,
  706.   OPT_CONNECT_TIMEOUT, OPT_DELAYED_INSERT_TIMEOUT,
  707.   OPT_DELAYED_INSERT_LIMIT, OPT_DELAYED_QUEUE_SIZE,
  708.   OPT_FLUSH_TIME, OPT_FT_MIN_WORD_LEN, OPT_FT_BOOLEAN_SYNTAX,
  709.   OPT_FT_MAX_WORD_LEN, OPT_FT_QUERY_EXPANSION_LIMIT, OPT_FT_STOPWORD_FILE,
  710.   OPT_INTERACTIVE_TIMEOUT, OPT_JOIN_BUFF_SIZE,
  711.   OPT_KEY_BUFFER_SIZE, OPT_KEY_CACHE_BLOCK_SIZE,
  712.   OPT_KEY_CACHE_DIVISION_LIMIT, OPT_KEY_CACHE_AGE_THRESHOLD,
  713.   OPT_LONG_QUERY_TIME,
  714.   OPT_LOWER_CASE_TABLE_NAMES, OPT_MAX_ALLOWED_PACKET,
  715.   OPT_MAX_BINLOG_CACHE_SIZE, OPT_MAX_BINLOG_SIZE,
  716.   OPT_MAX_CONNECTIONS, OPT_MAX_CONNECT_ERRORS,
  717.   OPT_MAX_DELAYED_THREADS, OPT_MAX_HEP_TABLE_SIZE,
  718.   OPT_MAX_JOIN_SIZE, OPT_MAX_RELAY_LOG_SIZE, OPT_MAX_SORT_LENGTH, 
  719.   OPT_MAX_SEEKS_FOR_KEY, OPT_MAX_TMP_TABLES, OPT_MAX_USER_CONNECTIONS,
  720.   OPT_MAX_LENGTH_FOR_SORT_DATA,
  721.   OPT_MAX_WRITE_LOCK_COUNT, OPT_BULK_INSERT_BUFFER_SIZE,
  722.   OPT_MAX_ERROR_COUNT, OPT_MYISAM_DATA_POINTER_SIZE,
  723.   OPT_MYISAM_BLOCK_SIZE, OPT_MYISAM_MAX_EXTRA_SORT_FILE_SIZE,
  724.   OPT_MYISAM_MAX_SORT_FILE_SIZE, OPT_MYISAM_SORT_BUFFER_SIZE,
  725.   OPT_MYISAM_STATS_METHOD,
  726.   OPT_NET_BUFFER_LENGTH, OPT_NET_RETRY_COUNT,
  727.   OPT_NET_READ_TIMEOUT, OPT_NET_WRITE_TIMEOUT,
  728.   OPT_OPEN_FILES_LIMIT,
  729.   OPT_PRELOAD_BUFFER_SIZE,
  730.   OPT_QUERY_CACHE_LIMIT, OPT_QUERY_CACHE_MIN_RES_UNIT, OPT_QUERY_CACHE_SIZE,
  731.   OPT_QUERY_CACHE_TYPE, OPT_QUERY_CACHE_WLOCK_INVALIDATE, OPT_RECORD_BUFFER,
  732.   OPT_RECORD_RND_BUFFER, OPT_RELAY_LOG_SPACE_LIMIT, OPT_RELAY_LOG_PURGE,
  733.   OPT_SLAVE_NET_TIMEOUT, OPT_SLAVE_COMPRESSED_PROTOCOL, OPT_SLOW_LAUNCH_TIME,
  734.   OPT_SLAVE_TRANS_RETRIES, OPT_READONLY, OPT_DEBUGGING,
  735.   OPT_SORT_BUFFER, OPT_TABLE_CACHE,
  736.   OPT_THREAD_CONCURRENCY, OPT_THREAD_CACHE_SIZE,
  737.   OPT_TMP_TABLE_SIZE, OPT_THREAD_STACK,
  738.   OPT_WAIT_TIMEOUT, OPT_MYISAM_REPAIR_THREADS,
  739.   OPT_INNODB_MIRRORED_LOG_GROUPS,
  740.   OPT_INNODB_LOG_FILES_IN_GROUP,
  741.   OPT_INNODB_LOG_FILE_SIZE,
  742.   OPT_INNODB_LOG_BUFFER_SIZE,
  743.   OPT_INNODB_BUFFER_POOL_SIZE,
  744.   OPT_INNODB_BUFFER_POOL_AWE_MEM_MB,
  745.   OPT_INNODB_ADDITIONAL_MEM_POOL_SIZE,
  746.   OPT_INNODB_MAX_PURGE_LAG,
  747.   OPT_INNODB_FILE_IO_THREADS,
  748.   OPT_INNODB_LOCK_WAIT_TIMEOUT,
  749.   OPT_INNODB_THREAD_CONCURRENCY,
  750.   OPT_INNODB_FORCE_RECOVERY,
  751.   OPT_INNODB_STATUS_FILE,
  752.   OPT_INNODB_MAX_DIRTY_PAGES_PCT,
  753.   OPT_INNODB_TABLE_LOCKS,
  754.   OPT_INNODB_OPEN_FILES,
  755.   OPT_INNODB_AUTOEXTEND_INCREMENT,
  756.   OPT_BDB_CACHE_SIZE,
  757.   OPT_BDB_LOG_BUFFER_SIZE,
  758.   OPT_BDB_MAX_LOCK,
  759.   OPT_ERROR_LOG_FILE,
  760.   OPT_DEFAULT_WEEK_FORMAT,
  761.   OPT_RANGE_ALLOC_BLOCK_SIZE, OPT_ALLOW_SUSPICIOUS_UDFS,
  762.   OPT_QUERY_ALLOC_BLOCK_SIZE, OPT_QUERY_PREALLOC_SIZE,
  763.   OPT_TRANS_ALLOC_BLOCK_SIZE, OPT_TRANS_PREALLOC_SIZE,
  764.   OPT_SYNC_FRM, OPT_SYNC_BINLOG,
  765.   OPT_SYNC_REPLICATION,
  766.   OPT_SYNC_REPLICATION_SLAVE_ID,
  767.   OPT_SYNC_REPLICATION_TIMEOUT,
  768.   OPT_BDB_NOSYNC,
  769.   OPT_ENABLE_SHARED_MEMORY,
  770.   OPT_SHARED_MEMORY_BASE_NAME,
  771.   OPT_OLD_PASSWORDS,
  772.   OPT_EXPIRE_LOGS_DAYS,
  773.   OPT_GROUP_CONCAT_MAX_LEN,
  774.   OPT_DEFAULT_COLLATION,
  775.   OPT_CHARACTER_SET_CLIENT_HANDSHAKE,
  776.   OPT_INIT_CONNECT,
  777.   OPT_INIT_SLAVE,
  778.   OPT_SECURE_AUTH,
  779.   OPT_DATE_FORMAT,
  780.   OPT_TIME_FORMAT,
  781.   OPT_DATETIME_FORMAT,
  782.   OPT_LOG_QUERIES_NOT_USING_INDEXES,
  783.   OPT_DEFAULT_TIME_ZONE,
  784.   OPT_LOG_SLOW_ADMIN_STATEMENTS
  785. };
  786. #define LONG_TIMEOUT ((ulong) 3600L*24L*365L)
  787. struct my_option my_long_options[] =
  788. {
  789.   {"help", '?', "Display this help and exit.", 
  790.    (gptr*) &opt_help, (gptr*) &opt_help, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
  791.    0, 0},
  792. #ifdef HAVE_REPLICATION
  793.   {"abort-slave-event-count", OPT_ABORT_SLAVE_EVENT_COUNT,
  794.    "Option used by mysql-test for debugging and testing of replication.",
  795.    (gptr*) &abort_slave_event_count,  (gptr*) &abort_slave_event_count,
  796.    0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  797. #endif /* HAVE_REPLICATION */
  798.   {"ansi", 'a', "Use ANSI SQL syntax instead of MySQL syntax. This mode will also set transaction isolation level 'serializable'.", 0, 0, 0,
  799.    GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  800.   {"allow-suspicious-udfs", OPT_ALLOW_SUSPICIOUS_UDFS,
  801.    "Allows use of UDFs consisting of only one symbol xxx() "
  802.    "without corresponding xxx_init() or xxx_deinit(). That also means "
  803.    "that one can load any function from any library, for example exit() "
  804.    "from libc.so",
  805.    (gptr*) &opt_allow_suspicious_udfs, (gptr*) &opt_allow_suspicious_udfs,
  806.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  807.   {"basedir", 'b',
  808.    "Path to installation directory. All paths are usually resolved relative to this.",
  809.    (gptr*) &mysql_home_ptr, (gptr*) &mysql_home_ptr, 0, GET_STR, REQUIRED_ARG,
  810.    0, 0, 0, 0, 0, 0},
  811.   {"bdb", OPT_BDB, "Enable Berkeley DB (if this version of MySQL supports it). 
  812. Disable with --skip-bdb (will save memory).",
  813.    (gptr*) &opt_bdb, (gptr*) &opt_bdb, 0, GET_BOOL, NO_ARG, OPT_BDB_DEFAULT, 0, 0,
  814.    0, 0, 0},
  815. #ifdef HAVE_BERKELEY_DB
  816.   {"bdb-home", OPT_BDB_HOME, "Berkeley home directory.", (gptr*) &berkeley_home,
  817.    (gptr*) &berkeley_home, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  818.   {"bdb-lock-detect", OPT_BDB_LOCK,
  819.    "Berkeley lock detect (DEFAULT, OLDEST, RANDOM or YOUNGEST, # sec).",
  820.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  821.   {"bdb-logdir", OPT_BDB_LOG, "Berkeley DB log file directory.",
  822.    (gptr*) &berkeley_logdir, (gptr*) &berkeley_logdir, 0, GET_STR,
  823.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  824.   {"bdb-no-recover", OPT_BDB_NO_RECOVER,
  825.    "Don't try to recover Berkeley DB tables on start.", 0, 0, 0, GET_NO_ARG,
  826.    NO_ARG, 0, 0, 0, 0, 0, 0},
  827.   {"bdb-no-sync", OPT_BDB_NOSYNC,
  828.    "Disable synchronously flushing logs. This option is deprecated, use --skip-sync-bdb-logs or sync-bdb-logs=0 instead",
  829.    //   (gptr*) &opt_sync_bdb_logs, (gptr*) &opt_sync_bdb_logs, 0, GET_BOOL,
  830.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  831.   {"bdb-shared-data", OPT_BDB_SHARED,
  832.    "Start Berkeley DB in multi-process mode.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
  833.    0, 0, 0, 0, 0},
  834.   {"bdb-tmpdir", OPT_BDB_TMP, "Berkeley DB tempfile name.",
  835.    (gptr*) &berkeley_tmpdir, (gptr*) &berkeley_tmpdir, 0, GET_STR,
  836.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  837. #endif /* HAVE_BERKELEY_DB */
  838.   {"big-tables", OPT_BIG_TABLES,
  839.    "Allow big result sets by saving all temporary sets on file (Solves most 'table full' errors).",
  840.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  841.   {"bind-address", OPT_BIND_ADDRESS, "IP address to bind to.",
  842.    (gptr*) &my_bind_addr_str, (gptr*) &my_bind_addr_str, 0, GET_STR,
  843.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  844.   {"binlog-do-db", OPT_BINLOG_DO_DB,
  845.    "Tells the master it should log updates for the specified database, and exclude all others not explicitly mentioned.",
  846.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  847.   {"binlog-ignore-db", OPT_BINLOG_IGNORE_DB,
  848.    "Tells the master that updates to the given database should not be logged tothe binary log.",
  849.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  850.   {"bootstrap", OPT_BOOTSTRAP, "Used by mysql installation scripts.", 0, 0, 0,
  851.    GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  852.   {"character-set-client-handshake", OPT_CHARACTER_SET_CLIENT_HANDSHAKE,
  853.    "Don't use client side character set value sent during handshake.",
  854.    (gptr*) &opt_character_set_client_handshake,
  855.    (gptr*) &opt_character_set_client_handshake,
  856.     0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
  857.   {"character-set-server", 'C', "Set the default character set.",
  858.    (gptr*) &default_character_set_name, (gptr*) &default_character_set_name,
  859.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  860.   {"character-sets-dir", OPT_CHARSETS_DIR,
  861.    "Directory where character sets are.", (gptr*) &charsets_dir,
  862.    (gptr*) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  863.   {"chroot", 'r', "Chroot mysqld daemon during startup.",
  864.    (gptr*) &mysqld_chroot, (gptr*) &mysqld_chroot, 0, GET_STR, REQUIRED_ARG,
  865.    0, 0, 0, 0, 0, 0},
  866.   {"collation-server", OPT_DEFAULT_COLLATION, "Set the default collation.",
  867.    (gptr*) &default_collation_name, (gptr*) &default_collation_name,
  868.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  869.   {"concurrent-insert", OPT_CONCURRENT_INSERT,
  870.    "Use concurrent insert with MyISAM. Disable with --skip-concurrent-insert.",
  871.    (gptr*) &myisam_concurrent_insert, (gptr*) &myisam_concurrent_insert,
  872.    0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
  873.   {"console", OPT_CONSOLE, "Write error output on screen; Don't remove the console window on windows.",
  874.    (gptr*) &opt_console, (gptr*) &opt_console, 0, GET_BOOL, NO_ARG, 0, 0, 0,
  875.    0, 0, 0},
  876.   {"core-file", OPT_WANT_CORE, "Write core on errors.", 0, 0, 0, GET_NO_ARG,
  877.    NO_ARG, 0, 0, 0, 0, 0, 0},
  878.   {"datadir", 'h', "Path to the database root.", (gptr*) &mysql_data_home,
  879.    (gptr*) &mysql_data_home, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  880. #ifndef DBUG_OFF
  881.   {"debug", '#', "Debug log.", (gptr*) &default_dbug_option,
  882.    (gptr*) &default_dbug_option, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  883. #endif
  884.   {"default-character-set", 'C', "Set the default character set (deprecated option, use --character-set-server instead).",
  885.    (gptr*) &default_character_set_name, (gptr*) &default_character_set_name,
  886.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  887.   {"default-collation", OPT_DEFAULT_COLLATION, "Set the default collation (deprecated option, use --collation-server instead).",
  888.    (gptr*) &default_collation_name, (gptr*) &default_collation_name,
  889.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  890.   {"default-storage-engine", OPT_STORAGE_ENGINE,
  891.    "Set the default storage engine (table type) for tables.", 0, 0,
  892.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  893.   {"default-table-type", OPT_STORAGE_ENGINE,
  894.    "(deprecated) Use --default-storage-engine.", 0, 0,
  895.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  896.   {"default-time-zone", OPT_DEFAULT_TIME_ZONE, "Set the default time zone.",
  897.    (gptr*) &default_tz_name, (gptr*) &default_tz_name,
  898.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  899.   {"delay-key-write", OPT_DELAY_KEY_WRITE, "Type of DELAY_KEY_WRITE.",
  900.    0,0,0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  901.   {"delay-key-write-for-all-tables", OPT_DELAY_KEY_WRITE_ALL,
  902.    "Don't flush key buffers between writes for any MyISAM table (Deprecated option, use --delay-key-write=all instead).",
  903.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  904. #ifdef HAVE_OPENSSL
  905.   {"des-key-file", OPT_DES_KEY_FILE,
  906.    "Load keys for des_encrypt() and des_encrypt from given file.",
  907.    (gptr*) &des_key_file, (gptr*) &des_key_file, 0, GET_STR, REQUIRED_ARG,
  908.    0, 0, 0, 0, 0, 0},
  909. #endif /* HAVE_OPENSSL */
  910. #ifdef HAVE_REPLICATION
  911.   {"disconnect-slave-event-count", OPT_DISCONNECT_SLAVE_EVENT_COUNT,
  912.    "Option used by mysql-test for debugging and testing of replication.",
  913.    (gptr*) &disconnect_slave_event_count,
  914.    (gptr*) &disconnect_slave_event_count, 0, GET_INT, REQUIRED_ARG, 0, 0, 0,
  915.    0, 0, 0},
  916. #endif /* HAVE_REPLICATION */
  917.   {"enable-locking", OPT_ENABLE_LOCK,
  918.    "Deprecated option, use --external-locking instead.",
  919.    (gptr*) &opt_external_locking, (gptr*) &opt_external_locking,
  920.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  921. #ifdef __NT__
  922.   {"enable-named-pipe", OPT_HAVE_NAMED_PIPE, "Enable the named pipe (NT).",
  923.    (gptr*) &opt_enable_named_pipe, (gptr*) &opt_enable_named_pipe, 0, GET_BOOL,
  924.    NO_ARG, 0, 0, 0, 0, 0, 0},
  925. #endif
  926.   {"enable-pstack", OPT_DO_PSTACK, "Print a symbolic stack trace on failure.",
  927.    (gptr*) &opt_do_pstack, (gptr*) &opt_do_pstack, 0, GET_BOOL, NO_ARG, 0, 0,
  928.    0, 0, 0, 0},
  929.   {"exit-info", 'T', "Used for debugging;  Use at your own risk!", 0, 0, 0,
  930.    GET_LONG, OPT_ARG, 0, 0, 0, 0, 0, 0},
  931.   {"external-locking", OPT_USE_LOCKING, "Use system (external) locking.  With this option enabled you can run myisamchk to test (not repair) tables while the MySQL server is running.",
  932.    (gptr*) &opt_external_locking, (gptr*) &opt_external_locking,
  933.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  934.   {"flush", OPT_FLUSH, "Flush tables to disk between SQL commands.", 0, 0, 0,
  935.    GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  936.   /* We must always support the next option to make scripts like mysqltest
  937.      easier to do */
  938.   {"gdb", OPT_DEBUGGING,
  939.    "Set up signals usable for debugging",
  940.    (gptr*) &opt_debugging, (gptr*) &opt_debugging,
  941.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  942.   {"init-connect", OPT_INIT_CONNECT, "Command(s) that are executed for each new connection",
  943.    (gptr*) &opt_init_connect, (gptr*) &opt_init_connect, 0, GET_STR_ALLOC,
  944.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  945.   {"init-file", OPT_INIT_FILE, "Read SQL commands from this file at startup.",
  946.    (gptr*) &opt_init_file, (gptr*) &opt_init_file, 0, GET_STR, REQUIRED_ARG,
  947.    0, 0, 0, 0, 0, 0},
  948.   {"init-rpl-role", OPT_INIT_RPL_ROLE, "Set the replication role.", 0, 0, 0,
  949.    GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  950.   {"init-slave", OPT_INIT_SLAVE, "Command(s) that are executed when a slave connects to this master",
  951.    (gptr*) &opt_init_slave, (gptr*) &opt_init_slave, 0, GET_STR_ALLOC,
  952.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  953.   {"innodb", OPT_INNODB, "Enable InnoDB (if this version of MySQL supports it). 
  954. Disable with --skip-innodb (will save memory).",
  955.    (gptr*) &opt_innodb, (gptr*) &opt_innodb, 0, GET_BOOL, NO_ARG, OPT_INNODB_DEFAULT, 0, 0,
  956.    0, 0, 0},
  957.   {"innodb_data_file_path", OPT_INNODB_DATA_FILE_PATH,
  958.    "Path to individual files and their sizes.",
  959.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  960. #ifdef HAVE_INNOBASE_DB
  961.   {"innodb_data_home_dir", OPT_INNODB_DATA_HOME_DIR,
  962.    "The common part for InnoDB table spaces.", (gptr*) &innobase_data_home_dir,
  963.    (gptr*) &innobase_data_home_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0,
  964.    0},
  965.   {"innodb_fast_shutdown", OPT_INNODB_FAST_SHUTDOWN,
  966.    "Speeds up server shutdown process.", (gptr*) &innobase_fast_shutdown,
  967.    (gptr*) &innobase_fast_shutdown, 0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  968.   {"innodb_file_per_table", OPT_INNODB_FILE_PER_TABLE,
  969.    "Stores each InnoDB table to an .ibd file in the database dir.",
  970.    (gptr*) &innobase_file_per_table,
  971.    (gptr*) &innobase_file_per_table, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  972.   {"innodb_flush_log_at_trx_commit", OPT_INNODB_FLUSH_LOG_AT_TRX_COMMIT,
  973.    "Set to 0 (write and flush once per second), 1 (write and flush at each commit) or 2 (write at commit, flush once per second).",
  974.    (gptr*) &innobase_flush_log_at_trx_commit,
  975.    (gptr*) &innobase_flush_log_at_trx_commit,
  976.    0, GET_UINT, OPT_ARG,  1, 0, 2, 0, 0, 0},
  977.   {"innodb_flush_method", OPT_INNODB_FLUSH_METHOD,
  978.    "With which method to flush data.", (gptr*) &innobase_unix_file_flush_method,
  979.    (gptr*) &innobase_unix_file_flush_method, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
  980.    0, 0, 0},
  981.   {"innodb_locks_unsafe_for_binlog", OPT_INNODB_LOCKS_UNSAFE_FOR_BINLOG,
  982.    "Force InnoDB not to use next-key locking. Instead use only row-level locking",
  983.    (gptr*) &innobase_locks_unsafe_for_binlog,
  984.    (gptr*) &innobase_locks_unsafe_for_binlog, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  985.   {"innodb_log_arch_dir", OPT_INNODB_LOG_ARCH_DIR,
  986.    "Where full logs should be archived.", (gptr*) &innobase_log_arch_dir,
  987.    (gptr*) &innobase_log_arch_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  988.   {"innodb_log_archive", OPT_INNODB_LOG_ARCHIVE,
  989.    "Set to 1 if you want to have logs archived.", 0, 0, 0, GET_LONG, OPT_ARG,
  990.    0, 0, 0, 0, 0, 0},
  991.   {"innodb_log_group_home_dir", OPT_INNODB_LOG_GROUP_HOME_DIR,
  992.    "Path to InnoDB log files.", (gptr*) &innobase_log_group_home_dir,
  993.    (gptr*) &innobase_log_group_home_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0,
  994.    0, 0},
  995.   {"innodb_max_dirty_pages_pct", OPT_INNODB_MAX_DIRTY_PAGES_PCT,
  996.    "Percentage of dirty pages allowed in bufferpool.", (gptr*) &srv_max_buf_pool_modified_pct,
  997.    (gptr*) &srv_max_buf_pool_modified_pct, 0, GET_ULONG, REQUIRED_ARG, 90, 0, 100, 0, 0, 0},
  998.   {"innodb_max_purge_lag", OPT_INNODB_MAX_PURGE_LAG,
  999.    "Desired maximum length of the purge queue (0 = no limit)",
  1000.    (gptr*) &srv_max_purge_lag,
  1001.    (gptr*) &srv_max_purge_lag, 0, GET_LONG, REQUIRED_ARG, 0, 0, ~0L,
  1002.    0, 1L, 0},
  1003.   {"innodb_status_file", OPT_INNODB_STATUS_FILE,
  1004.    "Enable SHOW INNODB STATUS output in the innodb_status.<pid> file",
  1005.    (gptr*) &innobase_create_status_file, (gptr*) &innobase_create_status_file,
  1006.    0, GET_BOOL, OPT_ARG, 0, 0, 0, 0, 0, 0},
  1007.   {"innodb_table_locks", OPT_INNODB_TABLE_LOCKS,
  1008.    "Enable InnoDB locking in LOCK TABLES",
  1009.    (gptr*) &global_system_variables.innodb_table_locks,
  1010.    (gptr*) &global_system_variables.innodb_table_locks,
  1011.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1012. #endif /* End HAVE_INNOBASE_DB */
  1013.   {"isam", OPT_ISAM, "Enable ISAM (if this version of MySQL supports it). 
  1014. Disable with --skip-isam.",
  1015.    (gptr*) &opt_isam, (gptr*) &opt_isam, 0, GET_BOOL, NO_ARG, OPT_ISAM_DEFAULT, 0, 0,
  1016.    0, 0, 0},
  1017.   {"language", 'L',
  1018.    "Client error messages in given language. May be given as a full path.",
  1019.    (gptr*) &language_ptr, (gptr*) &language_ptr, 0, GET_STR, REQUIRED_ARG,
  1020.    0, 0, 0, 0, 0, 0},
  1021.   {"local-infile", OPT_LOCAL_INFILE,
  1022.    "Enable/disable LOAD DATA LOCAL INFILE (takes values 1|0).",
  1023.    (gptr*) &opt_local_infile,
  1024.    (gptr*) &opt_local_infile, 0, GET_BOOL, OPT_ARG,
  1025.    1, 0, 0, 0, 0, 0},
  1026.   {"log", 'l', "Log connections and queries to file.", (gptr*) &opt_logname,
  1027.    (gptr*) &opt_logname, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  1028.   {"log-bin", OPT_BIN_LOG,
  1029.    "Log update queries in binary format.",
  1030.    (gptr*) &opt_bin_logname, (gptr*) &opt_bin_logname, 0, GET_STR_ALLOC,
  1031.    OPT_ARG, 0, 0, 0, 0, 0, 0},
  1032.   {"log-bin-index", OPT_BIN_LOG_INDEX,
  1033.    "File that holds the names for last binary log files.",
  1034.    (gptr*) &opt_binlog_index_name, (gptr*) &opt_binlog_index_name, 0, GET_STR,
  1035.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1036.   {"log-error", OPT_ERROR_LOG_FILE, "Log error file.",
  1037.    (gptr*) &log_error_file_ptr, (gptr*) &log_error_file_ptr, 0, GET_STR,
  1038.    OPT_ARG, 0, 0, 0, 0, 0, 0},
  1039.   {"log-isam", OPT_ISAM_LOG, "Log all MyISAM changes to file.",
  1040.    (gptr*) &myisam_log_filename, (gptr*) &myisam_log_filename, 0, GET_STR,
  1041.    OPT_ARG, 0, 0, 0, 0, 0, 0},
  1042.   {"log-long-format", '0',
  1043.    "Log some extra information to update log. Please note that this option is deprecated; see --log-short-format option.", 
  1044.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1045.   {"log-queries-not-using-indexes", OPT_LOG_QUERIES_NOT_USING_INDEXES,
  1046.    "Log queries that are executed without benefit of any index to the slow log if it is open.",
  1047.    (gptr*) &opt_log_queries_not_using_indexes, (gptr*) &opt_log_queries_not_using_indexes,
  1048.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1049.   {"log-short-format", OPT_SHORT_LOG_FORMAT,
  1050.    "Don't log extra information to update and slow-query logs.",
  1051.    (gptr*) &opt_short_log_format, (gptr*) &opt_short_log_format,
  1052.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1053.   {"log-slave-updates", OPT_LOG_SLAVE_UPDATES,
  1054.    "Tells the slave to log the updates from the slave thread to the binary log. You will need to turn it on if you plan to daisy-chain the slaves.",
  1055.    (gptr*) &opt_log_slave_updates, (gptr*) &opt_log_slave_updates, 0, GET_BOOL,
  1056.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1057.   {"log-slow-admin-statements", OPT_LOG_SLOW_ADMIN_STATEMENTS,
  1058.    "Log slow OPTIMIZE, ANALYZE, ALTER and other administrative statements to the slow log if it is open.",
  1059.    (gptr*) &opt_log_slow_admin_statements,
  1060.    (gptr*) &opt_log_slow_admin_statements,
  1061.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1062.   {"log-slow-queries", OPT_SLOW_QUERY_LOG,
  1063.     "Log slow queries to this log file. Defaults logging to hostname-slow.log file. Must be enabled to activate other slow log options.",
  1064.    (gptr*) &opt_slow_logname, (gptr*) &opt_slow_logname, 0, GET_STR, OPT_ARG,
  1065.    0, 0, 0, 0, 0, 0},
  1066.   {"log-update", OPT_UPDATE_LOG,
  1067.    "Log updates to file.# where # is a unique number if not given.",
  1068.    (gptr*) &opt_update_logname, (gptr*) &opt_update_logname, 0, GET_STR,
  1069.    OPT_ARG, 0, 0, 0, 0, 0, 0},
  1070.   {"log-warnings", 'W', "Log some non-critical warnings to the error log file. Use this option twice or --log-warnings=2 if you also want 'Aborted connections' warnings.",
  1071.    (gptr*) &global_system_variables.log_warnings,
  1072.    (gptr*) &max_system_variables.log_warnings, 0, GET_ULONG, OPT_ARG, 1, 0, ~0L,
  1073.    0, 0, 0},
  1074.   {"low-priority-updates", OPT_LOW_PRIORITY_UPDATES,
  1075.    "INSERT/DELETE/UPDATE has lower priority than selects.",
  1076.    (gptr*) &global_system_variables.low_priority_updates,
  1077.    (gptr*) &max_system_variables.low_priority_updates,
  1078.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1079.   {"master-connect-retry", OPT_MASTER_CONNECT_RETRY,
  1080.    "The number of seconds the slave thread will sleep before retrying to connect to the master in case the master goes down or the connection is lost.",
  1081.    (gptr*) &master_connect_retry, (gptr*) &master_connect_retry, 0, GET_UINT,
  1082.    REQUIRED_ARG, 60, 0, 0, 0, 0, 0},
  1083.   {"master-host", OPT_MASTER_HOST,
  1084.    "Master hostname or IP address for replication. If not set, the slave thread will not be started. Note that the setting of master-host will be ignored if there exists a valid master.info file.",
  1085.    (gptr*) &master_host, (gptr*) &master_host, 0, GET_STR, REQUIRED_ARG, 0, 0,
  1086.    0, 0, 0, 0},
  1087.   {"master-info-file", OPT_MASTER_INFO_FILE,
  1088.    "The location and name of the file that remembers the master and where the I/O replication 
  1089. thread is in the master's binlogs.",
  1090.    (gptr*) &master_info_file, (gptr*) &master_info_file, 0, GET_STR,
  1091.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1092.   {"master-password", OPT_MASTER_PASSWORD,
  1093.    "The password the slave thread will authenticate with when connecting to the master. If not set, an empty password is assumed.The value in master.info will take precedence if it can be read.",
  1094.    (gptr*)&master_password, (gptr*)&master_password, 0,
  1095.    GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1096.   {"master-port", OPT_MASTER_PORT,
  1097.    "The port the master is listening on. If not set, the compiled setting of MYSQL_PORT is assumed. If you have not tinkered with configure options, this should be 3306. The value in master.info will take precedence if it can be read.",
  1098.    (gptr*) &master_port, (gptr*) &master_port, 0, GET_UINT, REQUIRED_ARG,
  1099.    MYSQL_PORT, 0, 0, 0, 0, 0},
  1100.   {"master-retry-count", OPT_MASTER_RETRY_COUNT,
  1101.    "The number of tries the slave will make to connect to the master before giving up.",
  1102.    (gptr*) &master_retry_count, (gptr*) &master_retry_count, 0, GET_ULONG,
  1103.    REQUIRED_ARG, 3600*24, 0, 0, 0, 0, 0},
  1104.   {"master-ssl", OPT_MASTER_SSL,
  1105.    "Enable the slave to connect to the master using SSL.",
  1106.    (gptr*) &master_ssl, (gptr*) &master_ssl, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
  1107.    0, 0},
  1108.   {"master-ssl-ca", OPT_MASTER_SSL_CA,
  1109.    "Master SSL CA file. Only applies if you have enabled master-ssl.",
  1110.    (gptr*) &master_ssl_ca, (gptr*) &master_ssl_ca, 0, GET_STR, OPT_ARG,
  1111.    0, 0, 0, 0, 0, 0},
  1112.   {"master-ssl-capath", OPT_MASTER_SSL_CAPATH,
  1113.    "Master SSL CA path. Only applies if you have enabled master-ssl.",
  1114.    (gptr*) &master_ssl_capath, (gptr*) &master_ssl_capath, 0, GET_STR, OPT_ARG,
  1115.    0, 0, 0, 0, 0, 0},
  1116.   {"master-ssl-cert", OPT_MASTER_SSL_CERT,
  1117.    "Master SSL certificate file name. Only applies if you have enabled 
  1118. master-ssl",
  1119.    (gptr*) &master_ssl_cert, (gptr*) &master_ssl_cert, 0, GET_STR, OPT_ARG,
  1120.    0, 0, 0, 0, 0, 0},
  1121.   {"master-ssl-cipher", OPT_MASTER_SSL_CIPHER,
  1122.    "Master SSL cipher. Only applies if you have enabled master-ssl.",
  1123.    (gptr*) &master_ssl_cipher, (gptr*) &master_ssl_capath, 0, GET_STR, OPT_ARG,
  1124.    0, 0, 0, 0, 0, 0},
  1125.   {"master-ssl-key", OPT_MASTER_SSL_KEY,
  1126.    "Master SSL keyfile name. Only applies if you have enabled master-ssl.",
  1127.    (gptr*) &master_ssl_key, (gptr*) &master_ssl_key, 0, GET_STR, OPT_ARG,
  1128.    0, 0, 0, 0, 0, 0},
  1129.   {"master-user", OPT_MASTER_USER,
  1130.    "The username the slave thread will use for authentication when connecting to the master. The user must have FILE privilege. If the master user is not set, user test is assumed. The value in master.info will take precedence if it can be read.",
  1131.    (gptr*) &master_user, (gptr*) &master_user, 0, GET_STR, REQUIRED_ARG, 0, 0,
  1132.    0, 0, 0, 0},
  1133. #ifdef HAVE_REPLICATION
  1134.   {"max-binlog-dump-events", OPT_MAX_BINLOG_DUMP_EVENTS,
  1135.    "Option used by mysql-test for debugging and testing of replication.",
  1136.    (gptr*) &max_binlog_dump_events, (gptr*) &max_binlog_dump_events, 0,
  1137.    GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1138. #endif /* HAVE_REPLICATION */
  1139.   {"memlock", OPT_MEMLOCK, "Lock mysqld in memory.", (gptr*) &locked_in_memory,
  1140.    (gptr*) &locked_in_memory, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1141.   {"myisam-recover", OPT_MYISAM_RECOVER,
  1142.    "Syntax: myisam-recover[=option[,option...]], where option can be DEFAULT, BACKUP, FORCE or QUICK.",
  1143.    (gptr*) &myisam_recover_options_str, (gptr*) &myisam_recover_options_str, 0,
  1144.    GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  1145.   {"ndbcluster", OPT_NDBCLUSTER, "Enable NDB Cluster (if this version of MySQL supports it). 
  1146. Disable with --skip-ndbcluster (will save memory).",
  1147.    (gptr*) &opt_ndbcluster, (gptr*) &opt_ndbcluster, 0, GET_BOOL, NO_ARG,
  1148.    OPT_NDBCLUSTER_DEFAULT, 0, 0, 0, 0, 0},
  1149. #ifdef HAVE_NDBCLUSTER_DB
  1150.   {"ndb-connectstring", OPT_NDB_CONNECTSTRING,
  1151.    "Connect string for ndbcluster.",
  1152.    (gptr*) &opt_ndbcluster_connectstring,
  1153.    (gptr*) &opt_ndbcluster_connectstring,
  1154.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1155.   {"ndb-autoincrement-prefetch-sz", OPT_NDB_AUTOINCREMENT_PREFETCH_SZ,
  1156.    "Specify number of autoincrement values that are prefetched.",
  1157.    (gptr*) &global_system_variables.ndb_autoincrement_prefetch_sz,
  1158.    (gptr*) &global_system_variables.ndb_autoincrement_prefetch_sz,
  1159.    0, GET_ULONG, REQUIRED_ARG, 32, 1, 256, 0, 0, 0},
  1160.   {"ndb-force-send", OPT_NDB_FORCE_SEND,
  1161.    "Force send of buffers to ndb immediately without waiting for "
  1162.    "other threads.",
  1163.    (gptr*) &global_system_variables.ndb_force_send,
  1164.    (gptr*) &global_system_variables.ndb_force_send,
  1165.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1166.   {"ndb_force_send", OPT_NDB_FORCE_SEND,
  1167.    "same as --ndb-force-send.",
  1168.    (gptr*) &global_system_variables.ndb_force_send,
  1169.    (gptr*) &global_system_variables.ndb_force_send,
  1170.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1171.   {"ndb-use-exact-count", OPT_NDB_USE_EXACT_COUNT,
  1172.    "Use exact records count during query planning and for fast "
  1173.    "select count(*), disable for faster queries.",
  1174.    (gptr*) &global_system_variables.ndb_use_exact_count,
  1175.    (gptr*) &global_system_variables.ndb_use_exact_count,
  1176.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1177.   {"ndb_use_exact_count", OPT_NDB_USE_EXACT_COUNT,
  1178.    "same as --ndb-use-exact-count.",
  1179.    (gptr*) &global_system_variables.ndb_use_exact_count,
  1180.    (gptr*) &global_system_variables.ndb_use_exact_count,
  1181.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1182.   {"ndb-shm", OPT_NDB_SHM,
  1183.    "Use shared memory connections when available.",
  1184.    (gptr*) &opt_ndb_shm,
  1185.    (gptr*) &opt_ndb_shm,
  1186.    0, GET_BOOL, OPT_ARG, OPT_NDB_SHM_DEFAULT, 0, 0, 0, 0, 0},
  1187.   {"ndb-optimized-node-selection", OPT_NDB_OPTIMIZED_NODE_SELECTION,
  1188.    "Select nodes for transactions in a more optimal way.",
  1189.    (gptr*) &opt_ndb_optimized_node_selection,
  1190.    (gptr*) &opt_ndb_optimized_node_selection,
  1191.    0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0},
  1192. #endif
  1193.   {"new", 'n', "Use very new possible 'unsafe' functions.",
  1194.    (gptr*) &global_system_variables.new_mode,
  1195.    (gptr*) &max_system_variables.new_mode,
  1196.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1197. #ifdef NOT_YET
  1198.   {"no-mix-table-types", OPT_NO_MIX_TYPE, "Don't allow commands with uses two different table types.",
  1199.    (gptr*) &opt_no_mix_types, (gptr*) &opt_no_mix_types, 0, GET_BOOL, NO_ARG,
  1200.    0, 0, 0, 0, 0, 0},
  1201. #endif
  1202.   {"old-passwords", OPT_OLD_PASSWORDS, "Use old password encryption method (needed for 4.0 and older clients).",
  1203.    (gptr*) &global_system_variables.old_passwords,
  1204.    (gptr*) &max_system_variables.old_passwords, 0, GET_BOOL, NO_ARG,
  1205.    0, 0, 0, 0, 0, 0},
  1206. #ifdef ONE_THREAD
  1207.   {"one-thread", OPT_ONE_THREAD,
  1208.    "Only use one thread (for debugging under Linux).", 0, 0, 0, GET_NO_ARG,
  1209.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1210. #endif
  1211.   {"pid-file", OPT_PID_FILE, "Pid file used by safe_mysqld.",
  1212.    (gptr*) &pidfile_name_ptr, (gptr*) &pidfile_name_ptr, 0, GET_STR,
  1213.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1214.   {"port", 'P', "Port number to use for connection.", (gptr*) &mysqld_port,
  1215.    (gptr*) &mysqld_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1216.   {"relay-log", OPT_RELAY_LOG,
  1217.    "The location and name to use for relay logs.",
  1218.    (gptr*) &opt_relay_logname, (gptr*) &opt_relay_logname, 0,
  1219.    GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1220.   {"relay-log-index", OPT_RELAY_LOG_INDEX,
  1221.    "The location and name to use for the file that keeps a list of the last 
  1222. relay logs.",
  1223.    (gptr*) &opt_relaylog_index_name, (gptr*) &opt_relaylog_index_name, 0,
  1224.    GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1225.   {"relay-log-info-file", OPT_RELAY_LOG_INFO_FILE,
  1226.    "The location and name of the file that remembers where the SQL replication 
  1227. thread is in the relay logs.",
  1228.    (gptr*) &relay_log_info_file, (gptr*) &relay_log_info_file, 0, GET_STR,
  1229.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1230.   {"replicate-do-db", OPT_REPLICATE_DO_DB,
  1231.    "Tells the slave thread to restrict replication to the specified database. To specify more than one database, use the directive multiple times, once for each database. Note that this will only work if you do not use cross-database queries such as UPDATE some_db.some_table SET foo='bar' while having selected a different or no database. If you need cross database updates to work, make sure you have 3.23.28 or later, and use replicate-wild-do-table=db_name.%.",
  1232.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1233.   {"replicate-do-table", OPT_REPLICATE_DO_TABLE,
  1234.    "Tells the slave thread to restrict replication to the specified table. To specify more than one table, use the directive multiple times, once for each table. This will work for cross-database updates, in contrast to replicate-do-db.",
  1235.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1236.   {"replicate-ignore-db", OPT_REPLICATE_IGNORE_DB,
  1237.    "Tells the slave thread to not replicate to the specified database. To specify more than one database to ignore, use the directive multiple times, once for each database. This option will not work if you use cross database updates. If you need cross database updates to work, make sure you have 3.23.28 or later, and use replicate-wild-ignore-table=db_name.%. ",
  1238.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1239.   {"replicate-ignore-table", OPT_REPLICATE_IGNORE_TABLE,
  1240.    "Tells the slave thread to not replicate to the specified table. To specify more than one table to ignore, use the directive multiple times, once for each table. This will work for cross-datbase updates, in contrast to replicate-ignore-db.",
  1241.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1242.   {"replicate-rewrite-db", OPT_REPLICATE_REWRITE_DB,
  1243.    "Updates to a database with a different name than the original. Example: replicate-rewrite-db=master_db_name->slave_db_name.",
  1244.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1245.   {"replicate-wild-do-table", OPT_REPLICATE_WILD_DO_TABLE,
  1246.    "Tells the slave thread to restrict replication to the tables that match the specified wildcard pattern. To specify more than one table, use the directive multiple times, once for each table. This will work for cross-database updates. Example: replicate-wild-do-table=foo%.bar% will replicate only updates to tables in all databases that start with foo and whose table names start with bar.",
  1247.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1248.   {"replicate-wild-ignore-table", OPT_REPLICATE_WILD_IGNORE_TABLE,
  1249.    "Tells the slave thread to not replicate to the tables that match the given wildcard pattern. To specify more than one table to ignore, use the directive multiple times, once for each table. This will work for cross-database updates. Example: replicate-wild-ignore-table=foo%.bar% will not do updates to tables in databases that start with foo and whose table names start with bar.",
  1250.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1251. #ifdef HAVE_REPLICATION
  1252.   {"replicate-same-server-id", OPT_REPLICATE_SAME_SERVER_ID,
  1253.    "In replication, if set to 1, do not skip events having our server id. 
  1254. Default value is 0 (to break infinite loops in circular replication). 
  1255. Can't be set to 1 if --log-slave-updates is used.",
  1256.    (gptr*) &replicate_same_server_id,
  1257.    (gptr*) &replicate_same_server_id,
  1258.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1259. #endif
  1260.   // In replication, we may need to tell the other servers how to connect
  1261.   {"report-host", OPT_REPORT_HOST,
  1262.    "Hostname or IP of the slave to be reported to to the master during slave registration. Will appear in the output of SHOW SLAVE HOSTS. Leave unset if you do not want the slave to register itself with the master. Note that it is not sufficient for the master to simply read the IP of the slave off the socket once the slave connects. Due to NAT and other routing issues, that IP may not be valid for connecting to the slave from the master or other hosts.",
  1263.    (gptr*) &report_host, (gptr*) &report_host, 0, GET_STR, REQUIRED_ARG, 0, 0,
  1264.    0, 0, 0, 0},
  1265.   {"report-password", OPT_REPORT_PASSWORD, "Undocumented.",
  1266.    (gptr*) &report_password, (gptr*) &report_password, 0, GET_STR,
  1267.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1268.   {"report-port", OPT_REPORT_PORT,
  1269.    "Port for connecting to slave reported to the master during slave registration. Set it only if the slave is listening on a non-default port or if you have a special tunnel from the master or other clients to the slave. If not sure, leave this option unset.",
  1270.    (gptr*) &report_port, (gptr*) &report_port, 0, GET_UINT, REQUIRED_ARG,
  1271.    MYSQL_PORT, 0, 0, 0, 0, 0},
  1272.   {"report-user", OPT_REPORT_USER, "Undocumented.", (gptr*) &report_user,
  1273.    (gptr*) &report_user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1274.   {"rpl-recovery-rank", OPT_RPL_RECOVERY_RANK, "Undocumented.",
  1275.    (gptr*) &rpl_recovery_rank, (gptr*) &rpl_recovery_rank, 0, GET_ULONG,
  1276.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1277.   {"safe-mode", OPT_SAFE, "Skip some optimize stages (for testing).",
  1278.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1279. #ifndef TO_BE_DELETED
  1280.   {"safe-show-database", OPT_SAFE_SHOW_DB,
  1281.    "Deprecated option; use GRANT SHOW DATABASES instead...",
  1282.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1283. #endif
  1284.   {"safe-user-create", OPT_SAFE_USER_CREATE,
  1285.    "Don't allow new user creation by the user who has no write privileges to the mysql.user table.",
  1286.    (gptr*) &opt_safe_user_create, (gptr*) &opt_safe_user_create, 0, GET_BOOL,
  1287.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1288.   {"safemalloc-mem-limit", OPT_SAFEMALLOC_MEM_LIMIT,
  1289.    "Simulate memory shortage when compiled with the --with-debug=full option.",
  1290.    0, 0, 0, GET_ULL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1291.   {"secure-auth", OPT_SECURE_AUTH, "Disallow authentication for accounts that have old (pre-4.1) passwords.",
  1292.    (gptr*) &opt_secure_auth, (gptr*) &opt_secure_auth, 0, GET_BOOL, NO_ARG,
  1293.    my_bool(0), 0, 0, 0, 0, 0},
  1294.   {"server-id", OPT_SERVER_ID,
  1295.    "Uniquely identifies the server instance in the community of replication partners.",
  1296.    (gptr*) &server_id, (gptr*) &server_id, 0, GET_ULONG, REQUIRED_ARG, 0, 0, 0,
  1297.    0, 0, 0},
  1298.   {"set-variable", 'O',
  1299.    "Change the value of a variable. Please note that this option is deprecated;you can set variables directly with --variable-name=value.",
  1300.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1301. #ifdef HAVE_SMEM
  1302.   {"shared-memory", OPT_ENABLE_SHARED_MEMORY,
  1303.    "Enable the shared memory.",(gptr*) &opt_enable_shared_memory, (gptr*) &opt_enable_shared_memory,
  1304.    0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1305. #endif
  1306. #ifdef HAVE_SMEM
  1307.   {"shared-memory-base-name",OPT_SHARED_MEMORY_BASE_NAME,
  1308.    "Base name of shared memory.", (gptr*) &shared_memory_base_name, (gptr*) &shared_memory_base_name,
  1309.    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1310. #endif
  1311.   {"show-slave-auth-info", OPT_SHOW_SLAVE_AUTH_INFO,
  1312.    "Show user and password in SHOW SLAVE HOSTS on this master",
  1313.    (gptr*) &opt_show_slave_auth_info, (gptr*) &opt_show_slave_auth_info, 0,
  1314.    GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1315.   {"skip-grant-tables", OPT_SKIP_GRANT,
  1316.    "Start without grant tables. This gives all users FULL ACCESS to all tables!",
  1317.    (gptr*) &opt_noacl, (gptr*) &opt_noacl, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0,
  1318.    0},
  1319.   {"skip-host-cache", OPT_SKIP_HOST_CACHE, "Don't cache host names.", 0, 0, 0,
  1320.    GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1321.   {"skip-locking", OPT_SKIP_LOCK,
  1322.    "Deprecated option, use --skip-external-locking instead.",
  1323.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1324.   {"skip-name-resolve", OPT_SKIP_RESOLVE,
  1325.    "Don't resolve hostnames. All hostnames are IP's or 'localhost'.",
  1326.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1327.   {"skip-networking", OPT_SKIP_NETWORKING,
  1328.    "Don't allow connection with TCP/IP.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0,
  1329.    0, 0, 0},
  1330.   {"skip-new", OPT_SKIP_NEW, "Don't use new, possible wrong routines.",
  1331.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1332. #ifndef DBUG_OFF
  1333. #ifdef SAFEMALLOC
  1334.   {"skip-safemalloc", OPT_SKIP_SAFEMALLOC,
  1335.    "Don't use the memory allocation checking.", 0, 0, 0, GET_NO_ARG, NO_ARG,
  1336.    0, 0, 0, 0, 0, 0},
  1337. #endif
  1338. #endif
  1339.   {"skip-show-database", OPT_SKIP_SHOW_DB,
  1340.    "Don't allow 'SHOW DATABASE' commands.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0,
  1341.    0, 0, 0, 0},
  1342.   {"skip-slave-start", OPT_SKIP_SLAVE_START,
  1343.    "If set, slave is not autostarted.", (gptr*) &opt_skip_slave_start,
  1344.    (gptr*) &opt_skip_slave_start, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  1345.   {"skip-stack-trace", OPT_SKIP_STACK_TRACE,
  1346.    "Don't print a stack trace on failure.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0,
  1347.    0, 0, 0, 0},
  1348.   {"skip-symlink", OPT_SKIP_SYMLINKS, "Don't allow symlinking of tables. Deprecated option.  Use --skip-symbolic-links instead.",
  1349.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  1350.   {"skip-thread-priority", OPT_SKIP_PRIOR,
  1351.    "Don't give threads different priorities.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
  1352.    0, 0, 0, 0, 0},
  1353. #ifdef HAVE_REPLICATION
  1354.   {"slave-load-tmpdir", OPT_SLAVE_LOAD_TMPDIR,
  1355.    "The location where the slave should put its temporary files when 
  1356. replicating a LOAD DATA INFILE command.",
  1357.    (gptr*) &slave_load_tmpdir, (gptr*) &slave_load_tmpdir, 0, GET_STR_ALLOC,
  1358.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1359.   {"slave-skip-errors", OPT_SLAVE_SKIP_ERRORS,
  1360.    "Tells the slave thread to continue replication when a query returns an error from the provided list.",
  1361.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1362. #endif
  1363.   {"socket", OPT_SOCKET, "Socket file to use for connection.",
  1364.    (gptr*) &mysqld_unix_port, (gptr*) &mysqld_unix_port, 0, GET_STR,
  1365.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1366. #ifdef HAVE_REPLICATION
  1367.   {"sporadic-binlog-dump-fail", OPT_SPORADIC_BINLOG_DUMP_FAIL,
  1368.    "Option used by mysql-test for debugging and testing of replication.",
  1369.    (gptr*) &opt_sporadic_binlog_dump_fail,
  1370.    (gptr*) &opt_sporadic_binlog_dump_fail, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0,
  1371.    0},
  1372. #endif /* HAVE_REPLICATION */
  1373.   {"sql-bin-update-same", OPT_SQL_BIN_UPDATE_SAME,
  1374.    "If set, setting SQL_LOG_BIN to a value will automatically set SQL_LOG_UPDATE to the same value and vice versa.",
  1375.    (gptr*) &opt_sql_bin_update, (gptr*) &opt_sql_bin_update, 0, GET_BOOL,
  1376.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1377.   {"sql-mode", OPT_SQL_MODE,
  1378.    "Syntax: sql-mode=option[,option[,option...]] where option can be one of: REAL_AS_FLOAT, PIPES_AS_CONCAT, ANSI_QUOTES, IGNORE_SPACE, ONLY_FULL_GROUP_BY, NO_UNSIGNED_SUBTRACTION.",
  1379.    (gptr*) &sql_mode_str, (gptr*) &sql_mode_str, 0, GET_STR, REQUIRED_ARG, 0,
  1380.    0, 0, 0, 0, 0},
  1381. #ifdef HAVE_OPENSSL
  1382. #include "sslopt-longopts.h"
  1383. #endif
  1384. #ifdef __WIN__
  1385.   {"standalone", OPT_STANDALONE,
  1386.   "Dummy option to start as a standalone program (NT).", 0, 0, 0, GET_NO_ARG,
  1387.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1388. #endif
  1389.   {"symbolic-links", 's', "Enable symbolic link support.",
  1390.    (gptr*) &my_use_symdir, (gptr*) &my_use_symdir, 0, GET_BOOL, NO_ARG,
  1391.    IF_PURIFY(0,1), 0, 0, 0, 0, 0},
  1392.   {"temp-pool", OPT_TEMP_POOL,
  1393.    "Using this option will cause most temporary files created to use a small set of names, rather than a unique name for each new file.",
  1394.    (gptr*) &use_temp_pool, (gptr*) &use_temp_pool, 0, GET_BOOL, NO_ARG, 1,
  1395.    0, 0, 0, 0, 0},
  1396.   {"tmpdir", 't',
  1397.    "Path for temporary files. Several paths may be specified, separated by a "
  1398. #if defined( __WIN__) || defined(OS2) || defined(__NETWARE__)
  1399.    "semicolon (;)"
  1400. #else
  1401.    "colon (:)"
  1402. #endif
  1403.    ", in this case they are used in a round-robin fashion.",
  1404.    (gptr*) &opt_mysql_tmpdir,
  1405.    (gptr*) &opt_mysql_tmpdir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1406.   {"transaction-isolation", OPT_TX_ISOLATION,
  1407.    "Default transaction isolation level.", 0, 0, 0, GET_STR, REQUIRED_ARG, 0,
  1408.    0, 0, 0, 0, 0},
  1409.   {"use-symbolic-links", 's', "Enable symbolic link support. Deprecated option; use --symbolic-links instead.",
  1410.    (gptr*) &my_use_symdir, (gptr*) &my_use_symdir, 0, GET_BOOL, NO_ARG,
  1411.    IF_PURIFY(0,1), 0, 0, 0, 0, 0},
  1412.   {"user", 'u', "Run mysqld daemon as user.", 0, 0, 0, GET_STR, REQUIRED_ARG,
  1413.    0, 0, 0, 0, 0, 0},
  1414.   {"verbose", 'v', "Used with --help option for detailed help",
  1415.    (gptr*) &opt_verbose, (gptr*) &opt_verbose, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
  1416.    0, 0},
  1417.   {"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG,
  1418.    NO_ARG, 0, 0, 0, 0, 0, 0},
  1419.   {"warnings", 'W', "Deprecated; use --log-warnings instead.",
  1420.    (gptr*) &global_system_variables.log_warnings,
  1421.    (gptr*) &max_system_variables.log_warnings, 0, GET_ULONG, OPT_ARG, 1, 0, ~0L,
  1422.    0, 0, 0},
  1423.   { "back_log", OPT_BACK_LOG,
  1424.     "The number of outstanding connection requests MySQL can have. This comes into play when the main MySQL thread gets very many connection requests in a very short time.",
  1425.     (gptr*) &back_log, (gptr*) &back_log, 0, GET_ULONG,
  1426.     REQUIRED_ARG, 50, 1, 65535, 0, 1, 0 },
  1427. #ifdef HAVE_BERKELEY_DB
  1428.   { "bdb_cache_size", OPT_BDB_CACHE_SIZE,
  1429.     "The buffer that is allocated to cache index and rows for BDB tables.",
  1430.     (gptr*) &berkeley_cache_size, (gptr*) &berkeley_cache_size, 0, GET_ULONG,
  1431.     REQUIRED_ARG, KEY_CACHE_SIZE, 20*1024, (long) ~0, 0, IO_SIZE, 0},
  1432.   /* QQ: The following should be removed soon! (bdb_max_lock preferred) */
  1433.   {"bdb_lock_max", OPT_BDB_MAX_LOCK, "Synonym for bdb_max_lock.",
  1434.    (gptr*) &berkeley_max_lock, (gptr*) &berkeley_max_lock, 0, GET_ULONG,
  1435.    REQUIRED_ARG, 10000, 0, (long) ~0, 0, 1, 0},
  1436.   {"bdb_log_buffer_size", OPT_BDB_LOG_BUFFER_SIZE,
  1437.    "The buffer that is allocated to cache index and rows for BDB tables.",
  1438.    (gptr*) &berkeley_log_buffer_size, (gptr*) &berkeley_log_buffer_size, 0,
  1439.    GET_ULONG, REQUIRED_ARG, 0, 256*1024L, ~0L, 0, 1024, 0},
  1440.   {"bdb_max_lock", OPT_BDB_MAX_LOCK,
  1441.    "The maximum number of locks you can have active on a BDB table.",
  1442.    (gptr*) &berkeley_max_lock, (gptr*) &berkeley_max_lock, 0, GET_ULONG,
  1443.    REQUIRED_ARG, 10000, 0, (long) ~0, 0, 1, 0},
  1444. #endif /* HAVE_BERKELEY_DB */
  1445.   {"binlog_cache_size", OPT_BINLOG_CACHE_SIZE,
  1446.    "The size of the cache to hold the SQL statements for the binary log during a transaction. If you often use big, multi-statement transactions you can increase this to get more performance.",
  1447.    (gptr*) &binlog_cache_size, (gptr*) &binlog_cache_size, 0, GET_ULONG,
  1448.    REQUIRED_ARG, 32*1024L, IO_SIZE, ~0L, 0, IO_SIZE, 0},
  1449.   {"bulk_insert_buffer_size", OPT_BULK_INSERT_BUFFER_SIZE,
  1450.    "Size of tree cache used in bulk insert optimisation. Note that this is a limit per thread!",
  1451.    (gptr*) &global_system_variables.bulk_insert_buff_size,
  1452.    (gptr*) &max_system_variables.bulk_insert_buff_size,
  1453.    0, GET_ULONG, REQUIRED_ARG, 8192*1024, 0, ~0L, 0, 1, 0},
  1454.   {"connect_timeout", OPT_CONNECT_TIMEOUT,
  1455.    "The number of seconds the mysqld server is waiting for a connect packet before responding with 'Bad handshake'.",
  1456.     (gptr*) &connect_timeout, (gptr*) &connect_timeout,
  1457.    0, GET_ULONG, REQUIRED_ARG, CONNECT_TIMEOUT, 2, LONG_TIMEOUT, 0, 1, 0 },
  1458. #ifdef HAVE_REPLICATION
  1459.   {"crash_binlog_innodb", OPT_CRASH_BINLOG_INNODB,
  1460.    "Used only for testing, to crash when writing Nth event to binlog.",
  1461.    (gptr*) &opt_crash_binlog_innodb, (gptr*) &opt_crash_binlog_innodb,
  1462.    0, GET_UINT, REQUIRED_ARG, 0, 0, ~(uint)0, 0, 1, 0},
  1463. #endif
  1464.   { "date_format", OPT_DATE_FORMAT,
  1465.     "The DATE format (For future).",
  1466.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_DATE],
  1467.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_DATE],
  1468.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1469.   { "datetime_format", OPT_DATETIME_FORMAT,
  1470.     "The DATETIME/TIMESTAMP format (for future).",
  1471.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_DATETIME],
  1472.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_DATETIME],
  1473.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1474.   { "default_week_format", OPT_DEFAULT_WEEK_FORMAT,
  1475.     "The default week format used by WEEK() functions.",
  1476.     (gptr*) &global_system_variables.default_week_format,
  1477.     (gptr*) &max_system_variables.default_week_format,
  1478.     0, GET_ULONG, REQUIRED_ARG, 0, 0, 7L, 0, 1, 0},
  1479.   {"delayed_insert_limit", OPT_DELAYED_INSERT_LIMIT,
  1480.    "After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing.",
  1481.     (gptr*) &delayed_insert_limit, (gptr*) &delayed_insert_limit, 0, GET_ULONG,
  1482.     REQUIRED_ARG, DELAYED_LIMIT, 1, ~0L, 0, 1, 0},
  1483.   {"delayed_insert_timeout", OPT_DELAYED_INSERT_TIMEOUT,
  1484.    "How long a INSERT DELAYED thread should wait for INSERT statements before terminating.",
  1485.    (gptr*) &delayed_insert_timeout, (gptr*) &delayed_insert_timeout, 0,
  1486.    GET_ULONG, REQUIRED_ARG, DELAYED_WAIT_TIMEOUT, 1, LONG_TIMEOUT, 0, 1, 0},
  1487.   { "delayed_queue_size", OPT_DELAYED_QUEUE_SIZE,
  1488.     "What size queue (in rows) should be allocated for handling INSERT DELAYED. If the queue becomes full, any client that does INSERT DELAYED will wait until there is room in the queue again.",
  1489.     (gptr*) &delayed_queue_size, (gptr*) &delayed_queue_size, 0, GET_ULONG,
  1490.     REQUIRED_ARG, DELAYED_QUEUE_SIZE, 1, ~0L, 0, 1, 0},
  1491.   {"expire_logs_days", OPT_EXPIRE_LOGS_DAYS,
  1492.    "If non-zero, binary logs will be purged after expire_logs_days "
  1493.    "days; possible purges happen at startup and at binary log rotation.",
  1494.    (gptr*) &expire_logs_days,
  1495.    (gptr*) &expire_logs_days, 0, GET_ULONG,
  1496.    REQUIRED_ARG, 0, 0, 99, 0, 1, 0},
  1497.   { "flush_time", OPT_FLUSH_TIME,
  1498.     "A dedicated thread is created to flush all tables at the given interval.",
  1499.     (gptr*) &flush_time, (gptr*) &flush_time, 0, GET_ULONG, REQUIRED_ARG,
  1500.     FLUSH_TIME, 0, LONG_TIMEOUT, 0, 1, 0},
  1501.   { "ft_boolean_syntax", OPT_FT_BOOLEAN_SYNTAX,
  1502.     "List of operators for MATCH ... AGAINST ( ... IN BOOLEAN MODE)",
  1503.     0, 0, 0, GET_STR,
  1504.     REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1505.   { "ft_max_word_len", OPT_FT_MAX_WORD_LEN,
  1506.     "The maximum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable.",
  1507.     (gptr*) &ft_max_word_len, (gptr*) &ft_max_word_len, 0, GET_ULONG,
  1508.     REQUIRED_ARG, HA_FT_MAXCHARLEN, 10, HA_FT_MAXCHARLEN, 0, 1, 0},
  1509.   { "ft_min_word_len", OPT_FT_MIN_WORD_LEN,
  1510.     "The minimum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable.",
  1511.     (gptr*) &ft_min_word_len, (gptr*) &ft_min_word_len, 0, GET_ULONG,
  1512.     REQUIRED_ARG, 4, 1, HA_FT_MAXCHARLEN, 0, 1, 0},
  1513.   { "ft_query_expansion_limit", OPT_FT_QUERY_EXPANSION_LIMIT,
  1514.     "Number of best matches to use for query expansion",
  1515.     (gptr*) &ft_query_expansion_limit, (gptr*) &ft_query_expansion_limit, 0, GET_ULONG,
  1516.     REQUIRED_ARG, 20, 0, 1000, 0, 1, 0},
  1517.   { "ft_stopword_file", OPT_FT_STOPWORD_FILE,
  1518.     "Use stopwords from this file instead of built-in list.",
  1519.     (gptr*) &ft_stopword_file, (gptr*) &ft_stopword_file, 0, GET_STR,
  1520.     REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1521.   { "group_concat_max_len", OPT_GROUP_CONCAT_MAX_LEN,
  1522.     "The maximum length of the result of function  group_concat.",
  1523.     (gptr*) &global_system_variables.group_concat_max_len,
  1524.     (gptr*) &max_system_variables.group_concat_max_len, 0, GET_ULONG,
  1525.     REQUIRED_ARG, 1024, 4, (long) ~0, 0, 1, 0},
  1526. #ifdef HAVE_INNOBASE_DB
  1527.   {"innodb_additional_mem_pool_size", OPT_INNODB_ADDITIONAL_MEM_POOL_SIZE,
  1528.    "Size of a memory pool InnoDB uses to store data dictionary information and other internal data structures.",
  1529.    (gptr*) &innobase_additional_mem_pool_size,
  1530.    (gptr*) &innobase_additional_mem_pool_size, 0, GET_LONG, REQUIRED_ARG,
  1531.    1*1024*1024L, 512*1024L, ~0L, 0, 1024, 0},
  1532.   {"innodb_autoextend_increment", OPT_INNODB_AUTOEXTEND_INCREMENT,
  1533.    "Data file autoextend increment in megabytes",
  1534.    (gptr*) &srv_auto_extend_increment,
  1535.    (gptr*) &srv_auto_extend_increment,
  1536.    0, GET_LONG, REQUIRED_ARG, 8L, 1L, 1000L, 0, 1L, 0},
  1537.   {"innodb_buffer_pool_awe_mem_mb", OPT_INNODB_BUFFER_POOL_AWE_MEM_MB,
  1538.    "If Windows AWE is used, the size of InnoDB buffer pool allocated from the AWE memory.",
  1539.    (gptr*) &innobase_buffer_pool_awe_mem_mb, (gptr*) &innobase_buffer_pool_awe_mem_mb, 0,
  1540.    GET_LONG, REQUIRED_ARG, 0, 0, 63000, 0, 1, 0},
  1541.   {"innodb_buffer_pool_size", OPT_INNODB_BUFFER_POOL_SIZE,
  1542.    "The size of the memory buffer InnoDB uses to cache data and indexes of its tables.",
  1543.    (gptr*) &innobase_buffer_pool_size, (gptr*) &innobase_buffer_pool_size, 0,
  1544.    GET_LONG, REQUIRED_ARG, 8*1024*1024L, 1024*1024L, ~0L, 0, 1024*1024L, 0},
  1545.   {"innodb_file_io_threads", OPT_INNODB_FILE_IO_THREADS,
  1546.    "Number of file I/O threads in InnoDB.", (gptr*) &innobase_file_io_threads,
  1547.    (gptr*) &innobase_file_io_threads, 0, GET_LONG, REQUIRED_ARG, 4, 4, 64, 0,
  1548.    1, 0},
  1549.   {"innodb_force_recovery", OPT_INNODB_FORCE_RECOVERY,
  1550.    "Helps to save your data in case the disk image of the database becomes corrupt.",
  1551.    (gptr*) &innobase_force_recovery, (gptr*) &innobase_force_recovery, 0,
  1552.    GET_LONG, REQUIRED_ARG, 0, 0, 6, 0, 1, 0},
  1553.   {"innodb_lock_wait_timeout", OPT_INNODB_LOCK_WAIT_TIMEOUT,
  1554.    "Timeout in seconds an InnoDB transaction may wait for a lock before being rolled back.",
  1555.    (gptr*) &innobase_lock_wait_timeout, (gptr*) &innobase_lock_wait_timeout,
  1556.    0, GET_LONG, REQUIRED_ARG, 50, 1, 1024 * 1024 * 1024, 0, 1, 0},
  1557.   {"innodb_log_buffer_size", OPT_INNODB_LOG_BUFFER_SIZE,
  1558.    "The size of the buffer which InnoDB uses to write log to the log files on disk.",
  1559.    (gptr*) &innobase_log_buffer_size, (gptr*) &innobase_log_buffer_size, 0,
  1560.    GET_LONG, REQUIRED_ARG, 1024*1024L, 256*1024L, ~0L, 0, 1024, 0},
  1561.   {"innodb_log_file_size", OPT_INNODB_LOG_FILE_SIZE,
  1562.    "Size of each log file in a log group in megabytes.",
  1563.    (gptr*) &innobase_log_file_size, (gptr*) &innobase_log_file_size, 0,
  1564.    GET_LONG, REQUIRED_ARG, 5*1024*1024L, 1*1024*1024L, ~0L, 0, 1024*1024L, 0},
  1565.   {"innodb_log_files_in_group", OPT_INNODB_LOG_FILES_IN_GROUP,
  1566.    "Number of log files in the log group. InnoDB writes to the files in a circular fashion. Value 3 is recommended here.",
  1567.    (gptr*) &innobase_log_files_in_group, (gptr*) &innobase_log_files_in_group,
  1568.    0, GET_LONG, REQUIRED_ARG, 2, 2, 100, 0, 1, 0},
  1569.   {"innodb_mirrored_log_groups", OPT_INNODB_MIRRORED_LOG_GROUPS,
  1570.    "Number of identical copies of log groups we keep for the database. Currently this should be set to 1.",
  1571.    (gptr*) &innobase_mirrored_log_groups,
  1572.    (gptr*) &innobase_mirrored_log_groups, 0, GET_LONG, REQUIRED_ARG, 1, 1, 10,
  1573.    0, 1, 0},
  1574.   {"innodb_open_files", OPT_INNODB_OPEN_FILES,
  1575.    "How many files at the maximum InnoDB keeps open at the same time.",
  1576.    (gptr*) &innobase_open_files, (gptr*) &innobase_open_files, 0,
  1577.    GET_LONG, REQUIRED_ARG, 300L, 10L, ~0L, 0, 1L, 0},
  1578. #ifdef HAVE_REPLICATION
  1579.   /*
  1580.     Disabled for the 4.1.3 release. Disabling just this paragraph of code is
  1581.     enough, as then user can't set it to 1 so it will always be ignored in the
  1582.     rest of code.
  1583.   */
  1584. #if MYSQL_VERSION_ID >= 40103
  1585.   /*
  1586.     innodb_safe_binlog is not a variable, just an option. Does not make
  1587.     sense to make it a variable, as it is only used at startup (and so the
  1588.     value would be lost at next startup, so setting it on the fly would have no
  1589.     effect).
  1590.   */
  1591.   {"innodb_safe_binlog", OPT_INNODB_SAFE_BINLOG,
  1592.    "After a crash recovery by InnoDB, truncate the binary log after the last "
  1593.    "not-rolled-back statement/transaction.",
  1594.    (gptr*) &opt_innodb_safe_binlog, (gptr*) &opt_innodb_safe_binlog,
  1595.    0, GET_BOOL, NO_ARG, 0, 0, 1, 0, 1, 0},
  1596. #endif
  1597. #endif
  1598.   {"innodb_thread_concurrency", OPT_INNODB_THREAD_CONCURRENCY,
  1599.    "Helps in performance tuning in heavily concurrent environments.",
  1600.    (gptr*) &innobase_thread_concurrency, (gptr*) &innobase_thread_concurrency,
  1601.    0, GET_LONG, REQUIRED_ARG, 8, 1, 1000, 0, 1, 0},
  1602. #endif /* HAVE_INNOBASE_DB */
  1603.   {"interactive_timeout", OPT_INTERACTIVE_TIMEOUT,
  1604.    "The number of seconds the server waits for activity on an interactive connection before closing it.",
  1605.    (gptr*) &global_system_variables.net_interactive_timeout,
  1606.    (gptr*) &max_system_variables.net_interactive_timeout, 0,
  1607.    GET_ULONG, REQUIRED_ARG, NET_WAIT_TIMEOUT, 1, LONG_TIMEOUT, 0, 1, 0},
  1608.   {"join_buffer_size", OPT_JOIN_BUFF_SIZE,
  1609.    "The size of the buffer that is used for full joins.",
  1610.    (gptr*) &global_system_variables.join_buff_size,
  1611.    (gptr*) &max_system_variables.join_buff_size, 0, GET_ULONG,
  1612.    REQUIRED_ARG, 128*1024L, IO_SIZE*2+MALLOC_OVERHEAD, ~0L, MALLOC_OVERHEAD,
  1613.    IO_SIZE, 0},
  1614.   {"key_buffer_size", OPT_KEY_BUFFER_SIZE,
  1615.    "The size of the buffer used for index blocks for MyISAM tables. Increase this to get better index handling (for all reads and multiple writes) to as much as you can afford; 64M on a 256M machine that mainly runs MySQL is quite common.",
  1616.    (gptr*) &dflt_key_cache_var.param_buff_size,
  1617.    (gptr*) 0,
  1618.    0, (GET_ULL | GET_ASK_ADDR),
  1619.    REQUIRED_ARG, KEY_CACHE_SIZE, MALLOC_OVERHEAD, UINT_MAX32, MALLOC_OVERHEAD,
  1620.    IO_SIZE, 0},
  1621.   {"key_cache_age_threshold", OPT_KEY_CACHE_AGE_THRESHOLD,
  1622.    "This characterizes the number of hits a hot block has to be untouched until it is considered aged enough to be downgraded to a warm block. This specifies the percentage ratio of that number of hits to the total number of blocks in key cache",
  1623.    (gptr*) &dflt_key_cache_var.param_age_threshold,
  1624.    (gptr*) 0,
  1625.    0, (GET_ULONG | GET_ASK_ADDR), REQUIRED_ARG, 
  1626.    300, 100, ~0L, 0, 100, 0},
  1627.   {"key_cache_block_size", OPT_KEY_CACHE_BLOCK_SIZE,
  1628.    "The default size of key cache blocks",
  1629.    (gptr*) &dflt_key_cache_var.param_block_size,
  1630.    (gptr*) 0,
  1631.    0, (GET_ULONG | GET_ASK_ADDR), REQUIRED_ARG,
  1632.    KEY_CACHE_BLOCK_SIZE , 512, 1024*16, MALLOC_OVERHEAD, 512, 0},
  1633.   {"key_cache_division_limit", OPT_KEY_CACHE_DIVISION_LIMIT,
  1634.    "The minimum percentage of warm blocks in key cache",
  1635.    (gptr*) &dflt_key_cache_var.param_division_limit,
  1636.    (gptr*) 0,
  1637.    0, (GET_ULONG | GET_ASK_ADDR) , REQUIRED_ARG, 100,
  1638.    1, 100, 0, 1, 0},
  1639.   {"long_query_time", OPT_LONG_QUERY_TIME,
  1640.    "Log all queries that have taken more than long_query_time seconds to execute to file.",
  1641.    (gptr*) &global_system_variables.long_query_time,
  1642.    (gptr*) &max_system_variables.long_query_time, 0, GET_ULONG,
  1643.    REQUIRED_ARG, 10, 1, LONG_TIMEOUT, 0, 1, 0},
  1644.   {"lower_case_table_names", OPT_LOWER_CASE_TABLE_NAMES,
  1645.    "If set to 1 table names are stored in lowercase on disk and table names will be case-insensitive.  Should be set to 2 if you are using a case insensitive file system",
  1646.    (gptr*) &lower_case_table_names,
  1647.    (gptr*) &lower_case_table_names, 0, GET_UINT, OPT_ARG,
  1648. #ifdef FN_NO_CASE_SENCE
  1649.     1
  1650. #else
  1651.     0
  1652. #endif
  1653.    , 0, 2, 0, 1, 0},
  1654.   {"max_allowed_packet", OPT_MAX_ALLOWED_PACKET,
  1655.    "Max packetlength to send/receive from to server.",
  1656.    (gptr*) &global_system_variables.max_allowed_packet,
  1657.    (gptr*) &max_system_variables.max_allowed_packet, 0, GET_ULONG,
  1658.    REQUIRED_ARG, 1024*1024L, 1024, 1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
  1659.   {"max_binlog_cache_size", OPT_MAX_BINLOG_CACHE_SIZE,
  1660.    "Can be used to restrict the total size used to cache a multi-transaction query.",
  1661.    (gptr*) &max_binlog_cache_size, (gptr*) &max_binlog_cache_size, 0,
  1662.    GET_ULONG, REQUIRED_ARG, ~0L, IO_SIZE, ~0L, 0, IO_SIZE, 0},
  1663.   {"max_binlog_size", OPT_MAX_BINLOG_SIZE,
  1664.    "Binary log will be rotated automatically when the size exceeds this 
  1665. value. Will also apply to relay logs if max_relay_log_size is 0. 
  1666. The minimum value for this variable is 4096.",
  1667.    (gptr*) &max_binlog_size, (gptr*) &max_binlog_size, 0, GET_ULONG,
  1668.    REQUIRED_ARG, 1024*1024L*1024L, IO_SIZE, 1024*1024L*1024L, 0, IO_SIZE, 0},
  1669.   {"max_connect_errors", OPT_MAX_CONNECT_ERRORS,
  1670.    "If there is more than this number of interrupted connections from a host this host will be blocked from further connections.",
  1671.    (gptr*) &max_connect_errors, (gptr*) &max_connect_errors, 0, GET_ULONG,
  1672.     REQUIRED_ARG, MAX_CONNECT_ERRORS, 1, ~0L, 0, 1, 0},
  1673.   {"max_connections", OPT_MAX_CONNECTIONS,
  1674.    "The number of simultaneous clients allowed.", (gptr*) &max_connections,
  1675.    (gptr*) &max_connections, 0, GET_ULONG, REQUIRED_ARG, 100, 1, 16384, 0, 1,
  1676.    0},
  1677.   {"max_delayed_threads", OPT_MAX_DELAYED_THREADS,
  1678.    "Don't start more than this number of threads to handle INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is not used.",
  1679.    (gptr*) &global_system_variables.max_insert_delayed_threads,
  1680.    (gptr*) &max_system_variables.max_insert_delayed_threads,
  1681.    0, GET_ULONG, REQUIRED_ARG, 20, 0, 16384, 0, 1, 0},
  1682.   {"max_error_count", OPT_MAX_ERROR_COUNT,
  1683.    "Max number of errors/warnings to store for a statement.",
  1684.    (gptr*) &global_system_variables.max_error_count,
  1685.    (gptr*) &max_system_variables.max_error_count,
  1686.    0, GET_ULONG, REQUIRED_ARG, DEFAULT_ERROR_COUNT, 0, 65535, 0, 1, 0},
  1687.   {"max_heap_table_size", OPT_MAX_HEP_TABLE_SIZE,
  1688.    "Don't allow creation of heap tables bigger than this.",
  1689.    (gptr*) &global_system_variables.max_heap_table_size,
  1690.    (gptr*) &max_system_variables.max_heap_table_size, 0, GET_ULONG,
  1691.    REQUIRED_ARG, 16*1024*1024L, 16384, ~0L, MALLOC_OVERHEAD, 1024, 0},
  1692.   {"max_join_size", OPT_MAX_JOIN_SIZE,
  1693.    "Joins that are probably going to read more than max_join_size records return an error.",
  1694.    (gptr*) &global_system_variables.max_join_size,
  1695.    (gptr*) &max_system_variables.max_join_size, 0, GET_HA_ROWS, REQUIRED_ARG,
  1696.    ~0L, 1, ~0L, 0, 1, 0},
  1697.    {"max_length_for_sort_data", OPT_MAX_LENGTH_FOR_SORT_DATA,
  1698.     "Max number of bytes in sorted records.",
  1699.     (gptr*) &global_system_variables.max_length_for_sort_data,
  1700.     (gptr*) &max_system_variables.max_length_for_sort_data, 0, GET_ULONG,
  1701.     REQUIRED_ARG, 1024, 4, 8192*1024L, 0, 1, 0},
  1702.   {"max_relay_log_size", OPT_MAX_RELAY_LOG_SIZE,
  1703.    "If non-zero: relay log will be rotated automatically when the size exceeds this value; if zero (the default): when the size exceeds max_binlog_size. 0 excepted, the minimum value for this variable is 4096.",
  1704.    (gptr*) &max_relay_log_size, (gptr*) &max_relay_log_size, 0, GET_ULONG,
  1705.    REQUIRED_ARG, 0L, 0L, 1024*1024L*1024L, 0, IO_SIZE, 0},
  1706.   { "max_seeks_for_key", OPT_MAX_SEEKS_FOR_KEY,
  1707.     "Limit assumed max number of seeks when looking up rows based on a key",
  1708.     (gptr*) &global_system_variables.max_seeks_for_key,
  1709.     (gptr*) &max_system_variables.max_seeks_for_key, 0, GET_ULONG,
  1710.     REQUIRED_ARG, ~0L, 1, ~0L, 0, 1, 0 },
  1711.   {"max_sort_length", OPT_MAX_SORT_LENGTH,
  1712.    "The number of bytes to use when sorting BLOB or TEXT values (only the first max_sort_length bytes of each value are used; the rest are ignored).",
  1713.    (gptr*) &global_system_variables.max_sort_length,
  1714.    (gptr*) &max_system_variables.max_sort_length, 0, GET_ULONG,
  1715.    REQUIRED_ARG, 1024, 4, 8192*1024L, 0, 1, 0},
  1716.   {"max_tmp_tables", OPT_MAX_TMP_TABLES,
  1717.    "Maximum number of temporary tables a client can keep open at a time.",
  1718.    (gptr*) &global_system_variables.max_tmp_tables,
  1719.    (gptr*) &max_system_variables.max_tmp_tables, 0, GET_ULONG,
  1720.    REQUIRED_ARG, 32, 1, ~0L, 0, 1, 0},
  1721.   {"max_user_connections", OPT_MAX_USER_CONNECTIONS,
  1722.    "The maximum number of active connections for a single user (0 = no limit).",
  1723.    (gptr*) &max_user_connections, (gptr*) &max_user_connections, 0, GET_ULONG,
  1724.    REQUIRED_ARG, 0, 1, ~0L, 0, 1, 0},
  1725.   {"max_write_lock_count", OPT_MAX_WRITE_LOCK_COUNT,
  1726.    "After this many write locks, allow some read locks to run in between.",
  1727.    (gptr*) &max_write_lock_count, (gptr*) &max_write_lock_count, 0, GET_ULONG,
  1728.    REQUIRED_ARG, ~0L, 1, ~0L, 0, 1, 0},
  1729.   {"myisam_block_size", OPT_MYISAM_BLOCK_SIZE,
  1730.    "Block size to be used for MyISAM index pages.",
  1731.    (gptr*) &opt_myisam_block_size,
  1732.    (gptr*) &opt_myisam_block_size, 0, GET_ULONG, REQUIRED_ARG,
  1733.    MI_KEY_BLOCK_LENGTH, MI_MIN_KEY_BLOCK_LENGTH, MI_MAX_KEY_BLOCK_LENGTH,
  1734.    0, MI_MIN_KEY_BLOCK_LENGTH, 0},
  1735.   {"myisam_data_pointer_size", OPT_MYISAM_DATA_POINTER_SIZE,
  1736.    "Default pointer size to be used for MyISAM tables.",
  1737.    (gptr*) &myisam_data_pointer_size,
  1738.    (gptr*) &myisam_data_pointer_size, 0, GET_ULONG, REQUIRED_ARG,
  1739.    4, 2, 7, 0, 1, 0},
  1740.   {"myisam_max_extra_sort_file_size", OPT_MYISAM_MAX_EXTRA_SORT_FILE_SIZE,
  1741.    "Used to help MySQL to decide when to use the slow but safe key cache index create method.",
  1742.    (gptr*) &global_system_variables.myisam_max_extra_sort_file_size,
  1743.    (gptr*) &max_system_variables.myisam_max_extra_sort_file_size,
  1744.    0, GET_ULL, REQUIRED_ARG, (ulonglong) MI_MAX_TEMP_LENGTH,
  1745.    0, (ulonglong) MAX_FILE_SIZE, 0, 1, 0},
  1746.   {"myisam_max_sort_file_size", OPT_MYISAM_MAX_SORT_FILE_SIZE,
  1747.    "Don't use the fast sort index method to created index if the temporary file would get bigger than this.",
  1748.    (gptr*) &global_system_variables.myisam_max_sort_file_size,
  1749.    (gptr*) &max_system_variables.myisam_max_sort_file_size, 0,
  1750.    GET_ULL, REQUIRED_ARG, (longlong) LONG_MAX, 0, (ulonglong) MAX_FILE_SIZE,
  1751.    0, 1024*1024, 0},
  1752.   {"myisam_repair_threads", OPT_MYISAM_REPAIR_THREADS,
  1753.    "Number of threads to use when repairing MyISAM tables. The value of 1 disables parallel repair.",
  1754.    (gptr*) &global_system_variables.myisam_repair_threads,
  1755.    (gptr*) &max_system_variables.myisam_repair_threads, 0,
  1756.    GET_ULONG, REQUIRED_ARG, 1, 1, ~0L, 0, 1, 0},
  1757.   {"myisam_sort_buffer_size", OPT_MYISAM_SORT_BUFFER_SIZE,
  1758.    "The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE.",
  1759.    (gptr*) &global_system_variables.myisam_sort_buff_size,
  1760.    (gptr*) &max_system_variables.myisam_sort_buff_size, 0,
  1761.    GET_ULONG, REQUIRED_ARG, 8192*1024, 4, ~0L, 0, 1, 0},
  1762.   {"myisam_stats_method", OPT_MYISAM_STATS_METHOD,
  1763.    "Specifies how MyISAM index statistics collection code should threat NULLs. "
  1764.    "Possible values of name are "nulls_unequal" (default behavior for 4.1/5.0), "
  1765.    ""nulls_equal" (emulate 4.0 behavior), and "nulls_ignored".",
  1766.    (gptr*) &myisam_stats_method_str, (gptr*) &myisam_stats_method_str, 0,
  1767.     GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1768.   {"net_buffer_length", OPT_NET_BUFFER_LENGTH,
  1769.    "Buffer length for TCP/IP and socket communication.",
  1770.    (gptr*) &global_system_variables.net_buffer_length,
  1771.    (gptr*) &max_system_variables.net_buffer_length, 0, GET_ULONG,
  1772.    REQUIRED_ARG, 16384, 1024, 1024*1024L, 0, 1024, 0},
  1773.   {"net_read_timeout", OPT_NET_READ_TIMEOUT,
  1774.    "Number of seconds to wait for more data from a connection before aborting the read.",
  1775.    (gptr*) &global_system_variables.net_read_timeout,
  1776.    (gptr*) &max_system_variables.net_read_timeout, 0, GET_ULONG,
  1777.    REQUIRED_ARG, NET_READ_TIMEOUT, 1, LONG_TIMEOUT, 0, 1, 0},
  1778.   {"net_retry_count", OPT_NET_RETRY_COUNT,
  1779.    "If a read on a communication port is interrupted, retry this many times before giving up.",
  1780.    (gptr*) &global_system_variables.net_retry_count,
  1781.    (gptr*) &max_system_variables.net_retry_count,0,
  1782.    GET_ULONG, REQUIRED_ARG, MYSQLD_NET_RETRY_COUNT, 1, ~0L, 0, 1, 0},
  1783.   {"net_write_timeout", OPT_NET_WRITE_TIMEOUT,
  1784.    "Number of seconds to wait for a block to be written to a connection  before aborting the write.",
  1785.    (gptr*) &global_system_variables.net_write_timeout,
  1786.    (gptr*) &max_system_variables.net_write_timeout, 0, GET_ULONG,
  1787.    REQUIRED_ARG, NET_WRITE_TIMEOUT, 1, LONG_TIMEOUT, 0, 1, 0},
  1788.   {"open_files_limit", OPT_OPEN_FILES_LIMIT,
  1789.    "If this is not 0, then mysqld will use this value to reserve file descriptors to use with setrlimit(). If this value is 0 then mysqld will reserve max_connections*5 or max_connections + table_cache*2 (whichever is larger) number of files.",
  1790.    (gptr*) &open_files_limit, (gptr*) &open_files_limit, 0, GET_ULONG,
  1791.    REQUIRED_ARG, 0, 0, OS_FILE_LIMIT, 0, 1, 0},
  1792.    {"preload_buffer_size", OPT_PRELOAD_BUFFER_SIZE,
  1793.     "The size of the buffer that is allocated when preloading indexes",
  1794.     (gptr*) &global_system_variables.preload_buff_size,
  1795.     (gptr*) &max_system_variables.preload_buff_size, 0, GET_ULONG,
  1796.     REQUIRED_ARG, 32*1024L, 1024, 1024*1024*1024L, 0, 1, 0},
  1797.   {"query_alloc_block_size", OPT_QUERY_ALLOC_BLOCK_SIZE,
  1798.    "Allocation block size for query parsing and execution",
  1799.    (gptr*) &global_system_variables.query_alloc_block_size,
  1800.    (gptr*) &max_system_variables.query_alloc_block_size, 0, GET_ULONG,
  1801.    REQUIRED_ARG, QUERY_ALLOC_BLOCK_SIZE, 1024, ~0L, 0, 1024, 0},
  1802. #ifdef HAVE_QUERY_CACHE
  1803.   {"query_cache_limit", OPT_QUERY_CACHE_LIMIT,
  1804.    "Don't cache results that are bigger than this.",
  1805.    (gptr*) &query_cache_limit, (gptr*) &query_cache_limit, 0, GET_ULONG,
  1806.    REQUIRED_ARG, 1024*1024L, 0, (longlong) ULONG_MAX, 0, 1, 0},
  1807.   {"query_cache_min_res_unit", OPT_QUERY_CACHE_MIN_RES_UNIT,
  1808.    "minimal size of unit in wich space for results is allocated (last unit will be trimed after writing all result data.",
  1809.    (gptr*) &query_cache_min_res_unit, (gptr*) &query_cache_min_res_unit,
  1810.    0, GET_ULONG, REQUIRED_ARG, QUERY_CACHE_MIN_RESULT_DATA_SIZE,
  1811.    0, (longlong) ULONG_MAX, 0, 1, 0},
  1812. #endif /*HAVE_QUERY_CACHE*/
  1813.   {"query_cache_size", OPT_QUERY_CACHE_SIZE,
  1814.    "The memory allocated to store results from old queries.",
  1815.    (gptr*) &query_cache_size, (gptr*) &query_cache_size, 0, GET_ULONG,
  1816.    REQUIRED_ARG, 0, 0, (longlong) ULONG_MAX, 0, 1024, 0},
  1817. #ifdef HAVE_QUERY_CACHE
  1818.   {"query_cache_type", OPT_QUERY_CACHE_TYPE,
  1819.    "0 = OFF = Don't cache or retrieve results. 1 = ON = Cache all results except SELECT SQL_NO_CACHE ... queries. 2 = DEMAND = Cache only SELECT SQL_CACHE ... queries.",
  1820.    (gptr*) &global_system_variables.query_cache_type,
  1821.    (gptr*) &max_system_variables.query_cache_type,
  1822.    0, GET_ULONG, REQUIRED_ARG, 1, 0, 2, 0, 1, 0},
  1823.   {"query_cache_wlock_invalidate", OPT_QUERY_CACHE_WLOCK_INVALIDATE,
  1824.    "Invalidate queries in query cache on LOCK for write",
  1825.    (gptr*) &global_system_variables.query_cache_wlock_invalidate,
  1826.    (gptr*) &max_system_variables.query_cache_wlock_invalidate,
  1827.    0, GET_BOOL, NO_ARG, 0, 0, 1, 0, 1, 0},
  1828. #endif /*HAVE_QUERY_CACHE*/
  1829.   {"query_prealloc_size", OPT_QUERY_PREALLOC_SIZE,
  1830.    "Persistent buffer for query parsing and execution",
  1831.    (gptr*) &global_system_variables.query_prealloc_size,
  1832.    (gptr*) &max_system_variables.query_prealloc_size, 0, GET_ULONG,
  1833.    REQUIRED_ARG, QUERY_ALLOC_PREALLOC_SIZE, QUERY_ALLOC_PREALLOC_SIZE,
  1834.    ~0L, 0, 1024, 0},
  1835.   {"range_alloc_block_size", OPT_RANGE_ALLOC_BLOCK_SIZE,
  1836.    "Allocation block size for storing ranges during optimization",
  1837.    (gptr*) &global_system_variables.range_alloc_block_size,
  1838.    (gptr*) &max_system_variables.range_alloc_block_size, 0, GET_ULONG,
  1839.    REQUIRED_ARG, RANGE_ALLOC_BLOCK_SIZE, 4096, ~0L, 0, 1024, 0},
  1840.   {"read_buffer_size", OPT_RECORD_BUFFER,
  1841.    "Each thread that does a sequential scan allocates a buffer of this size for each table it scans. If you do many sequential scans, you may want to increase this value.",
  1842.    (gptr*) &global_system_variables.read_buff_size,
  1843.    (gptr*) &max_system_variables.read_buff_size,0, GET_ULONG, REQUIRED_ARG,
  1844.    128*1024L, IO_SIZE*2+MALLOC_OVERHEAD, ~0L, MALLOC_OVERHEAD, IO_SIZE, 0},
  1845.   {"read_only", OPT_READONLY,
  1846.    "Make all tables readonly, with the exception for replication (slave) threads and users with the SUPER privilege",
  1847.    (gptr*) &opt_readonly,
  1848.    (gptr*) &opt_readonly,
  1849.    0, GET_BOOL, NO_ARG, 0, 0, 1, 0, 1, 0},
  1850.   {"read_rnd_buffer_size", OPT_RECORD_RND_BUFFER,
  1851.    "When reading rows in sorted order after a sort, the rows are read through this buffer to avoid a disk seeks. If not set, then it's set to the value of record_buffer.",
  1852.    (gptr*) &global_system_variables.read_rnd_buff_size,
  1853.    (gptr*) &max_system_variables.read_rnd_buff_size, 0,
  1854.    GET_ULONG, REQUIRED_ARG, 256*1024L, IO_SIZE*2+MALLOC_OVERHEAD,
  1855.    ~0L, MALLOC_OVERHEAD, IO_SIZE, 0},
  1856.   {"record_buffer", OPT_RECORD_BUFFER,
  1857.    "Alias for read_buffer_size",
  1858.    (gptr*) &global_system_variables.read_buff_size,
  1859.    (gptr*) &max_system_variables.read_buff_size,0, GET_ULONG, REQUIRED_ARG,
  1860.    128*1024L, IO_SIZE*2+MALLOC_OVERHEAD, ~0L, MALLOC_OVERHEAD, IO_SIZE, 0},
  1861. #ifdef HAVE_REPLICATION
  1862.   {"relay_log_purge", OPT_RELAY_LOG_PURGE,
  1863.    "0 = do not purge relay logs. 1 = purge them as soon as they are no more needed.",
  1864.    (gptr*) &relay_log_purge,
  1865.    (gptr*) &relay_log_purge, 0, GET_BOOL, NO_ARG,
  1866.    1, 0, 1, 0, 1, 0},
  1867.   {"relay_log_space_limit", OPT_RELAY_LOG_SPACE_LIMIT,
  1868.    "Maximum space to use for all relay logs.",
  1869.    (gptr*) &relay_log_space_limit,
  1870.    (gptr*) &relay_log_space_limit, 0, GET_ULL, REQUIRED_ARG, 0L, 0L,
  1871.    (longlong) ULONG_MAX, 0, 1, 0},
  1872.   {"slave_compressed_protocol", OPT_SLAVE_COMPRESSED_PROTOCOL,
  1873.    "Use compression on master/slave protocol.",
  1874.    (gptr*) &opt_slave_compressed_protocol,
  1875.    (gptr*) &opt_slave_compressed_protocol,
  1876.    0, GET_BOOL, NO_ARG, 0, 0, 1, 0, 1, 0},
  1877.   {"slave_net_timeout", OPT_SLAVE_NET_TIMEOUT,
  1878.    "Number of seconds to wait for more data from a master/slave connection before aborting the read.",
  1879.    (gptr*) &slave_net_timeout, (gptr*) &slave_net_timeout, 0,
  1880.    GET_ULONG, REQUIRED_ARG, SLAVE_NET_TIMEOUT, 1, LONG_TIMEOUT, 0, 1, 0},
  1881.   {"slave_transaction_retries", OPT_SLAVE_TRANS_RETRIES,
  1882.    "Number of times the slave SQL thread will retry a transaction in case "
  1883.    "it failed with a deadlock or elapsed lock wait timeout, "
  1884.    "before giving up and stopping.",
  1885.    (gptr*) &slave_trans_retries, (gptr*) &slave_trans_retries, 0,
  1886.    GET_ULONG, REQUIRED_ARG, 0L, 0L, (longlong) ULONG_MAX, 0, 1, 0},
  1887. #endif /* HAVE_REPLICATION */
  1888.   {"slow_launch_time", OPT_SLOW_LAUNCH_TIME,
  1889.    "If creating the thread takes longer than this value (in seconds), the Slow_launch_threads counter will be incremented.",
  1890.    (gptr*) &slow_launch_time, (gptr*) &slow_launch_time, 0, GET_ULONG,
  1891.    REQUIRED_ARG, 2L, 0L, LONG_TIMEOUT, 0, 1, 0},
  1892.   {"sort_buffer_size", OPT_SORT_BUFFER,
  1893.    "Each thread that needs to do a sort allocates a buffer of this size.",
  1894.    (gptr*) &global_system_variables.sortbuff_size,
  1895.    (gptr*) &max_system_variables.sortbuff_size, 0, GET_ULONG, REQUIRED_ARG,
  1896.    MAX_SORT_MEMORY, MIN_SORT_MEMORY+MALLOC_OVERHEAD*2, ~0L, MALLOC_OVERHEAD,
  1897.    1, 0},
  1898. #ifdef HAVE_BERKELEY_DB
  1899.   {"sync-bdb-logs", OPT_BDB_SYNC,
  1900.    "Synchronously flush logs. Enabled by default",
  1901.    (gptr*) &opt_sync_bdb_logs, (gptr*) &opt_sync_bdb_logs, 0, GET_BOOL,
  1902.    NO_ARG, 1, 0, 0, 0, 0, 0},
  1903. #endif /* HAVE_BERKELEY_DB */
  1904.   {"sync-binlog", OPT_SYNC_BINLOG,
  1905.    "Sync the binlog to disk after every #th event. 
  1906. #=0 (the default) does no sync. Syncing slows MySQL down",
  1907.    (gptr*) &sync_binlog_period,
  1908.    (gptr*) &sync_binlog_period, 0, GET_ULONG, REQUIRED_ARG, 0, 0, ~0L, 0, 1,
  1909.    0},
  1910. #ifdef DOES_NOTHING_YET
  1911.   {"sync-replication", OPT_SYNC_REPLICATION,
  1912.    "Enable synchronous replication",
  1913.    (gptr*) &global_system_variables.sync_replication,
  1914.    (gptr*) &global_system_variables.sync_replication,
  1915.    0, GET_ULONG, REQUIRED_ARG, 0, 0, 1, 0, 1, 0},
  1916.   {"sync-replication-slave-id", OPT_SYNC_REPLICATION_SLAVE_ID,
  1917.    "Synchronous replication is wished for this slave",
  1918.    (gptr*) &global_system_variables.sync_replication_slave_id,
  1919.    (gptr*) &global_system_variables.sync_replication_slave_id,
  1920.    0, GET_ULONG, REQUIRED_ARG, 0, 0, ~0L, 0, 1, 0},
  1921.   {"sync-replication-timeout", OPT_SYNC_REPLICATION_TIMEOUT,
  1922.    "Synchronous replication timeout",
  1923.    (gptr*) &global_system_variables.sync_replication_timeout,
  1924.    (gptr*) &global_system_variables.sync_replication_timeout,
  1925.    0, GET_ULONG, REQUIRED_ARG, 10, 0, ~0L, 0, 1, 0},
  1926. #endif
  1927.   {"sync-frm", OPT_SYNC_FRM, "Sync .frm to disk on create. Enabled by default",
  1928.    (gptr*) &opt_sync_frm, (gptr*) &opt_sync_frm, 0, GET_BOOL, NO_ARG, 1, 0,
  1929.    0, 0, 0, 0},
  1930.   {"table_cache", OPT_TABLE_CACHE,
  1931.    "The number of open tables for all threads.", (gptr*) &table_cache_size,
  1932.    (gptr*) &table_cache_size, 0, GET_ULONG, REQUIRED_ARG, 64, 1, 512*1024L,
  1933.    0, 1, 0},
  1934.   {"thread_cache_size", OPT_THREAD_CACHE_SIZE,
  1935.    "How many threads we should keep in a cache for reuse.",
  1936.    (gptr*) &thread_cache_size, (gptr*) &thread_cache_size, 0, GET_ULONG,
  1937.    REQUIRED_ARG, 0, 0, 16384, 0, 1, 0},
  1938.   {"thread_concurrency", OPT_THREAD_CONCURRENCY,
  1939.    "Permits the application to give the threads system a hint for the desired number of threads that should be run at the same time.",
  1940.    (gptr*) &concurrency, (gptr*) &concurrency, 0, GET_ULONG, REQUIRED_ARG,
  1941.    DEFAULT_CONCURRENCY, 1, 512, 0, 1, 0},
  1942.   {"thread_stack", OPT_THREAD_STACK,
  1943.    "The stack size for each thread.", (gptr*) &thread_stack,
  1944.    (gptr*) &thread_stack, 0, GET_ULONG, REQUIRED_ARG,DEFAULT_THREAD_STACK,
  1945.    1024L*128L, ~0L, 0, 1024, 0},
  1946.   { "time_format", OPT_TIME_FORMAT,
  1947.     "The TIME format (for future).",
  1948.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_TIME],
  1949.     (gptr*) &opt_date_time_formats[MYSQL_TIMESTAMP_TIME],
  1950.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  1951.   {"tmp_table_size", OPT_TMP_TABLE_SIZE,
  1952.    "If an in-memory temporary table exceeds this size, MySQL will automatically convert it to an on-disk MyISAM table.",
  1953.    (gptr*) &global_system_variables.tmp_table_size,
  1954.    (gptr*) &max_system_variables.tmp_table_size, 0, GET_ULONG,
  1955.    REQUIRED_ARG, 32*1024*1024L, 1024, ~0L, 0, 1, 0},
  1956.   {"transaction_alloc_block_size", OPT_TRANS_ALLOC_BLOCK_SIZE,
  1957.    "Allocation block size for transactions to be stored in binary log",
  1958.    (gptr*) &global_system_variables.trans_alloc_block_size,
  1959.    (gptr*) &max_system_variables.trans_alloc_block_size, 0, GET_ULONG,
  1960.    REQUIRED_ARG, QUERY_ALLOC_BLOCK_SIZE, 1024, ~0L, 0, 1024, 0},
  1961.   {"transaction_prealloc_size", OPT_TRANS_PREALLOC_SIZE,
  1962.    "Persistent buffer for transactions to be stored in binary log",
  1963.    (gptr*) &global_system_variables.trans_prealloc_size,
  1964.    (gptr*) &max_system_variables.trans_prealloc_size, 0, GET_ULONG,
  1965.    REQUIRED_ARG, TRANS_ALLOC_PREALLOC_SIZE, 1024, ~0L, 0, 1024, 0},
  1966.   {"wait_timeout", OPT_WAIT_TIMEOUT,
  1967.    "The number of seconds the server waits for activity on a connection before closing it.",
  1968.    (gptr*) &global_system_variables.net_wait_timeout,
  1969.    (gptr*) &max_system_variables.net_wait_timeout, 0, GET_ULONG,
  1970.    REQUIRED_ARG, NET_WAIT_TIMEOUT, 1, IF_WIN(INT_MAX32/1000, LONG_TIMEOUT),
  1971.    0, 1, 0},
  1972.   {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  1973. };
  1974. struct show_var_st status_vars[]= {
  1975.   {"Aborted_clients",          (char*) &aborted_threads,        SHOW_LONG},
  1976.   {"Aborted_connects",         (char*) &aborted_connects,       SHOW_LONG},
  1977.   {"Binlog_cache_disk_use",    (char*) &binlog_cache_disk_use,  SHOW_LONG},
  1978.   {"Binlog_cache_use",         (char*) &binlog_cache_use,       SHOW_LONG},
  1979.   {"Bytes_received",           (char*) &bytes_received,         SHOW_LONG},
  1980.   {"Bytes_sent",               (char*) &bytes_sent,             SHOW_LONG},
  1981.   {"Com_admin_commands",       (char*) &com_other, SHOW_LONG},
  1982.   {"Com_alter_db",        (char*) (com_stat+(uint) SQLCOM_ALTER_DB),SHOW_LONG},
  1983.   {"Com_alter_table",        (char*) (com_stat+(uint) SQLCOM_ALTER_TABLE),SHOW_LONG},
  1984.   {"Com_analyze",        (char*) (com_stat+(uint) SQLCOM_ANALYZE),SHOW_LONG},
  1985.   {"Com_backup_table",        (char*) (com_stat+(uint) SQLCOM_BACKUP_TABLE),SHOW_LONG},
  1986.   {"Com_begin",        (char*) (com_stat+(uint) SQLCOM_BEGIN),SHOW_LONG},
  1987.   {"Com_change_db",        (char*) (com_stat+(uint) SQLCOM_CHANGE_DB),SHOW_LONG},
  1988.   {"Com_change_master",        (char*) (com_stat+(uint) SQLCOM_CHANGE_MASTER),SHOW_LONG},
  1989.   {"Com_check",        (char*) (com_stat+(uint) SQLCOM_CHECK),SHOW_LONG},
  1990.   {"Com_checksum",        (char*) (com_stat+(uint) SQLCOM_CHECKSUM),SHOW_LONG},
  1991.   {"Com_commit",        (char*) (com_stat+(uint) SQLCOM_COMMIT),SHOW_LONG},
  1992.   {"Com_create_db",        (char*) (com_stat+(uint) SQLCOM_CREATE_DB),SHOW_LONG},
  1993.   {"Com_create_function",      (char*) (com_stat+(uint) SQLCOM_CREATE_FUNCTION),SHOW_LONG},
  1994.   {"Com_create_index",        (char*) (com_stat+(uint) SQLCOM_CREATE_INDEX),SHOW_LONG},
  1995.   {"Com_create_table",        (char*) (com_stat+(uint) SQLCOM_CREATE_TABLE),SHOW_LONG},
  1996.   {"Com_dealloc_sql",          (char*) (com_stat+(uint) 
  1997.                                         SQLCOM_DEALLOCATE_PREPARE), SHOW_LONG},
  1998.   {"Com_delete",        (char*) (com_stat+(uint) SQLCOM_DELETE),SHOW_LONG},
  1999.   {"Com_delete_multi",        (char*) (com_stat+(uint) SQLCOM_DELETE_MULTI),SHOW_LONG},
  2000.   {"Com_do",                   (char*) (com_stat+(uint) SQLCOM_DO),SHOW_LONG},
  2001.   {"Com_drop_db",        (char*) (com_stat+(uint) SQLCOM_DROP_DB),SHOW_LONG},
  2002.   {"Com_drop_function",        (char*) (com_stat+(uint) SQLCOM_DROP_FUNCTION),SHOW_LONG},
  2003.   {"Com_drop_index",        (char*) (com_stat+(uint) SQLCOM_DROP_INDEX),SHOW_LONG},
  2004.   {"Com_drop_table",        (char*) (com_stat+(uint) SQLCOM_DROP_TABLE),SHOW_LONG},
  2005.   {"Com_drop_user",        (char*) (com_stat+(uint) SQLCOM_DROP_USER),SHOW_LONG},
  2006.   {"Com_execute_sql",          (char*) (com_stat+(uint) SQLCOM_EXECUTE), 
  2007.    SHOW_LONG},
  2008.   {"Com_flush",        (char*) (com_stat+(uint) SQLCOM_FLUSH),SHOW_LONG},
  2009.   {"Com_grant",        (char*) (com_stat+(uint) SQLCOM_GRANT),SHOW_LONG},
  2010.   {"Com_ha_close",        (char*) (com_stat+(uint) SQLCOM_HA_CLOSE),SHOW_LONG},
  2011.   {"Com_ha_open",        (char*) (com_stat+(uint) SQLCOM_HA_OPEN),SHOW_LONG},
  2012.   {"Com_ha_read",        (char*) (com_stat+(uint) SQLCOM_HA_READ),SHOW_LONG},
  2013.   {"Com_help",                 (char*) (com_stat+(uint) SQLCOM_HELP),SHOW_LONG},
  2014.   {"Com_insert",        (char*) (com_stat+(uint) SQLCOM_INSERT),SHOW_LONG},
  2015.   {"Com_insert_select",        (char*) (com_stat+(uint) SQLCOM_INSERT_SELECT),SHOW_LONG},
  2016.   {"Com_kill",        (char*) (com_stat+(uint) SQLCOM_KILL),SHOW_LONG},
  2017.   {"Com_load",        (char*) (com_stat+(uint) SQLCOM_LOAD),SHOW_LONG},
  2018.   {"Com_load_master_data",     (char*) (com_stat+(uint) SQLCOM_LOAD_MASTER_DATA),SHOW_LONG},
  2019.   {"Com_load_master_table",    (char*) (com_stat+(uint) SQLCOM_LOAD_MASTER_TABLE),SHOW_LONG},
  2020.   {"Com_lock_tables",        (char*) (com_stat+(uint) SQLCOM_LOCK_TABLES),SHOW_LONG},
  2021.   {"Com_optimize",        (char*) (com_stat+(uint) SQLCOM_OPTIMIZE),SHOW_LONG},
  2022.   {"Com_preload_keys",        (char*) (com_stat+(uint) SQLCOM_PRELOAD_KEYS),SHOW_LONG},
  2023.   {"Com_prepare_sql",          (char*) (com_stat+(uint) SQLCOM_PREPARE),
  2024.    SHOW_LONG}, 
  2025.   {"Com_purge",        (char*) (com_stat+(uint) SQLCOM_PURGE),SHOW_LONG},
  2026.   {"Com_purge_before_date",    (char*) (com_stat+(uint) SQLCOM_PURGE_BEFORE),SHOW_LONG},
  2027.   {"Com_rename_table",        (char*) (com_stat+(uint) SQLCOM_RENAME_TABLE),SHOW_LONG},
  2028.   {"Com_repair",        (char*) (com_stat+(uint) SQLCOM_REPAIR),SHOW_LONG},
  2029.   {"Com_replace",        (char*) (com_stat+(uint) SQLCOM_REPLACE),SHOW_LONG},
  2030.   {"Com_replace_select",       (char*) (com_stat+(uint) SQLCOM_REPLACE_SELECT),SHOW_LONG},
  2031.   {"Com_reset",        (char*) (com_stat+(uint) SQLCOM_RESET),SHOW_LONG},
  2032.   {"Com_restore_table",        (char*) (com_stat+(uint) SQLCOM_RESTORE_TABLE),SHOW_LONG},
  2033.   {"Com_revoke",        (char*) (com_stat+(uint) SQLCOM_REVOKE),SHOW_LONG},
  2034.   {"Com_revoke_all",        (char*) (com_stat+(uint) SQLCOM_REVOKE_ALL),SHOW_LONG},
  2035.   {"Com_rollback",        (char*) (com_stat+(uint) SQLCOM_ROLLBACK),SHOW_LONG},
  2036.   {"Com_savepoint",        (char*) (com_stat+(uint) SQLCOM_SAVEPOINT),SHOW_LONG},
  2037.   {"Com_select",        (char*) (com_stat+(uint) SQLCOM_SELECT),SHOW_LONG},
  2038.   {"Com_set_option",        (char*) (com_stat+(uint) SQLCOM_SET_OPTION),SHOW_LONG},
  2039.   {"Com_show_binlog_events",   (char*) (com_stat+(uint) SQLCOM_SHOW_BINLOG_EVENTS),SHOW_LONG},
  2040.   {"Com_show_binlogs",        (char*) (com_stat+(uint) SQLCOM_SHOW_BINLOGS),SHOW_LONG},
  2041.   {"Com_show_charsets",        (char*) (com_stat+(uint) SQLCOM_SHOW_CHARSETS),SHOW_LONG},
  2042.   {"Com_show_collations",      (char*) (com_stat+(uint) SQLCOM_SHOW_COLLATIONS),SHOW_LONG},
  2043.   {"Com_show_column_types",    (char*) (com_stat+(uint) SQLCOM_SHOW_COLUMN_TYPES),SHOW_LONG},
  2044.   {"Com_show_create_db",       (char*) (com_stat+(uint) SQLCOM_SHOW_CREATE_DB),SHOW_LONG},
  2045.   {"Com_show_create_table",    (char*) (com_stat+(uint) SQLCOM_SHOW_CREATE),SHOW_LONG},
  2046.   {"Com_show_databases",       (char*) (com_stat+(uint) SQLCOM_SHOW_DATABASES),SHOW_LONG},
  2047.   {"Com_show_errors",        (char*) (com_stat+(uint) SQLCOM_SHOW_ERRORS),SHOW_LONG},
  2048.   {"Com_show_fields",        (char*) (com_stat+(uint) SQLCOM_SHOW_FIELDS),SHOW_LONG},
  2049.   {"Com_show_grants",        (char*) (com_stat+(uint) SQLCOM_SHOW_GRANTS),SHOW_LONG},
  2050.   {"Com_show_innodb_status",   (char*) (com_stat+(uint) SQLCOM_SHOW_INNODB_STATUS),SHOW_LONG},
  2051.   {"Com_show_keys",        (char*) (com_stat+(uint) SQLCOM_SHOW_KEYS),SHOW_LONG},
  2052.   {"Com_show_logs",        (char*) (com_stat+(uint) SQLCOM_SHOW_LOGS),SHOW_LONG},
  2053.   {"Com_show_master_status",   (char*) (com_stat+(uint) SQLCOM_SHOW_MASTER_STAT),SHOW_LONG},
  2054.   {"Com_show_ndb_status",      (char*) (com_stat+(uint) SQLCOM_SHOW_NDBCLUSTER_STATUS),SHOW_LONG},
  2055.   {"Com_show_new_master",      (char*) (com_stat+(uint) SQLCOM_SHOW_NEW_MASTER),SHOW_LONG},
  2056.   {"Com_show_open_tables",     (char*) (com_stat+(uint) SQLCOM_SHOW_OPEN_TABLES),SHOW_LONG},
  2057.   {"Com_show_privileges",      (char*) (com_stat+(uint) SQLCOM_SHOW_PRIVILEGES),SHOW_LONG},
  2058.   {"Com_show_processlist",     (char*) (com_stat+(uint) SQLCOM_SHOW_PROCESSLIST),SHOW_LONG},
  2059.   {"Com_show_slave_hosts",     (char*) (com_stat+(uint) SQLCOM_SHOW_SLAVE_HOSTS),SHOW_LONG},
  2060.   {"Com_show_slave_status",    (char*) (com_stat+(uint) SQLCOM_SHOW_SLAVE_STAT),SHOW_LONG},
  2061.   {"Com_show_status",        (char*) (com_stat+(uint) SQLCOM_SHOW_STATUS),SHOW_LONG},
  2062.   {"Com_show_storage_engines", (char*) (com_stat+(uint) SQLCOM_SHOW_STORAGE_ENGINES),SHOW_LONG},
  2063.   {"Com_show_tables",        (char*) (com_stat+(uint) SQLCOM_SHOW_TABLES),SHOW_LONG},
  2064.   {"Com_show_variables",       (char*) (com_stat+(uint) SQLCOM_SHOW_VARIABLES),SHOW_LONG},
  2065.   {"Com_show_warnings",        (char*) (com_stat+(uint) SQLCOM_SHOW_WARNS),SHOW_LONG},
  2066.   {"Com_slave_start",        (char*) (com_stat+(uint) SQLCOM_SLAVE_START),SHOW_LONG},
  2067.   {"Com_slave_stop",        (char*) (com_stat+(uint) SQLCOM_SLAVE_STOP),SHOW_LONG},
  2068.   {"Com_stmt_close",           (char*) &com_stmt_close, SHOW_LONG},
  2069.   {"Com_stmt_execute",         (char*) &com_stmt_execute, SHOW_LONG},
  2070.   {"Com_stmt_prepare",         (char*) &com_stmt_prepare, SHOW_LONG},
  2071.   {"Com_stmt_reset",           (char*) &com_stmt_reset, SHOW_LONG},
  2072.   {"Com_stmt_send_long_data",  (char*) &com_stmt_send_long_data, SHOW_LONG},
  2073.   {"Com_truncate",        (char*) (com_stat+(uint) SQLCOM_TRUNCATE),SHOW_LONG},
  2074.   {"Com_unlock_tables",        (char*) (com_stat+(uint) SQLCOM_UNLOCK_TABLES),SHOW_LONG},
  2075.   {"Com_update",        (char*) (com_stat+(uint) SQLCOM_UPDATE),SHOW_LONG},
  2076.   {"Com_update_multi",        (char*) (com_stat+(uint) SQLCOM_UPDATE_MULTI),SHOW_LONG},
  2077.   {"Connections",              (char*) &thread_id,              SHOW_LONG_CONST},
  2078.   {"Created_tmp_disk_tables",  (char*) &created_tmp_disk_tables,SHOW_LONG},
  2079.   {"Created_tmp_files",        (char*) &my_tmp_file_created, SHOW_LONG},
  2080.   {"Created_tmp_tables",       (char*) &created_tmp_tables,     SHOW_LONG},
  2081.   {"Delayed_errors",           (char*) &delayed_insert_errors,  SHOW_LONG},
  2082.   {"Delayed_insert_threads",   (char*) &delayed_insert_threads, SHOW_LONG_CONST},
  2083.   {"Delayed_writes",           (char*) &delayed_insert_writes,  SHOW_LONG},
  2084.   {"Flush_commands",           (char*) &refresh_version,        SHOW_LONG_CONST},
  2085.   {"Handler_commit",           (char*) &ha_commit_count,        SHOW_LONG},
  2086.   {"Handler_delete",           (char*) &ha_delete_count,        SHOW_LONG},
  2087.   {"Handler_discover",         (char*) &ha_discover_count,      SHOW_LONG},
  2088.   {"Handler_read_first",       (char*) &ha_read_first_count,    SHOW_LONG},
  2089.   {"Handler_read_key",         (char*) &ha_read_key_count,      SHOW_LONG},
  2090.   {"Handler_read_next",        (char*) &ha_read_next_count,     SHOW_LONG},
  2091.   {"Handler_read_prev",        (char*) &ha_read_prev_count,     SHOW_LONG},
  2092.   {"Handler_read_rnd",         (char*) &ha_read_rnd_count,      SHOW_LONG},
  2093.   {"Handler_read_rnd_next",    (char*) &ha_read_rnd_next_count, SHOW_LONG},
  2094.   {"Handler_rollback",         (char*) &ha_rollback_count,      SHOW_LONG},
  2095.   {"Handler_update",           (char*) &ha_update_count,        SHOW_LONG},
  2096.   {"Handler_write",            (char*) &ha_write_count,         SHOW_LONG},
  2097.   {"Key_blocks_not_flushed",   (char*) &dflt_key_cache_var.global_blocks_changed,
  2098.    SHOW_KEY_CACHE_LONG},
  2099.   {"Key_blocks_unused",        (char*) &dflt_key_cache_var.blocks_unused,
  2100.    SHOW_KEY_CACHE_CONST_LONG},
  2101.   {"Key_blocks_used",          (char*) &dflt_key_cache_var.blocks_used,
  2102.    SHOW_KEY_CACHE_CONST_LONG},
  2103.   {"Key_read_requests",        (char*) &dflt_key_cache_var.global_cache_r_requests,
  2104.    SHOW_KEY_CACHE_LONGLONG},
  2105.   {"Key_reads",                (char*) &dflt_key_cache_var.global_cache_read,
  2106.    SHOW_KEY_CACHE_LONGLONG},
  2107.   {"Key_write_requests",       (char*) &dflt_key_cache_var.global_cache_w_requests,
  2108.    SHOW_KEY_CACHE_LONGLONG},
  2109.   {"Key_writes",               (char*) &dflt_key_cache_var.global_cache_write,
  2110.    SHOW_KEY_CACHE_LONGLONG},
  2111.   {"Max_used_connections",     (char*) &max_used_connections,  SHOW_LONG},
  2112.   {"Not_flushed_delayed_rows", (char*) &delayed_rows_in_use,    SHOW_LONG_CONST},
  2113.   {"Open_files",               (char*) &my_file_opened,         SHOW_LONG_CONST},
  2114.   {"Open_streams",             (char*) &my_stream_opened,       SHOW_LONG_CONST},
  2115.   {"Open_tables",              (char*) 0,                       SHOW_OPENTABLES},
  2116.   {"Opened_tables",            (char*) &opened_tables,          SHOW_LONG},
  2117. #ifdef HAVE_QUERY_CACHE
  2118.   {"Qcache_free_blocks",       (char*) &query_cache.free_memory_blocks,
  2119.    SHOW_LONG_CONST},
  2120.   {"Qcache_free_memory",       (char*) &query_cache.free_memory,
  2121.    SHOW_LONG_CONST},
  2122.   {"Qcache_hits",              (char*) &query_cache.hits,       SHOW_LONG},
  2123.   {"Qcache_inserts",           (char*) &query_cache.inserts,    SHOW_LONG},
  2124.   {"Qcache_lowmem_prunes",     (char*) &query_cache.lowmem_prunes, SHOW_LONG},
  2125.   {"Qcache_not_cached",        (char*) &query_cache.refused,    SHOW_LONG},
  2126.   {"Qcache_queries_in_cache",  (char*) &query_cache.queries_in_cache, SHOW_LONG_CONST},
  2127.   {"Qcache_total_blocks",      (char*) &query_cache.total_blocks,
  2128.    SHOW_LONG_CONST},
  2129. #endif /*HAVE_QUERY_CACHE*/
  2130.   {"Questions",                (char*) 0,                       SHOW_QUESTION},
  2131.   {"Rpl_status",               (char*) 0,                 SHOW_RPL_STATUS},
  2132.   {"Select_full_join",         (char*) &select_full_join_count, SHOW_LONG},
  2133.   {"Select_full_range_join",   (char*) &select_full_range_join_count, SHOW_LONG},
  2134.   {"Select_range",             (char*) &select_range_count,  SHOW_LONG},
  2135.   {"Select_range_check",       (char*) &select_range_check_count, SHOW_LONG},
  2136.   {"Select_scan",        (char*) &select_scan_count, SHOW_LONG},
  2137.   {"Slave_open_temp_tables",   (char*) &slave_open_temp_tables, SHOW_LONG},
  2138.   {"Slave_retried_transactions",(char*) 0,                      SHOW_SLAVE_RETRIED_TRANS},
  2139.   {"Slave_running",            (char*) 0,                       SHOW_SLAVE_RUNNING},
  2140.   {"Slow_launch_threads",      (char*) &slow_launch_threads,    SHOW_LONG},
  2141.   {"Slow_queries",             (char*) &long_query_count,       SHOW_LONG},
  2142.   {"Sort_merge_passes",        (char*) &filesort_merge_passes,  SHOW_LONG},
  2143.   {"Sort_range",        (char*) &filesort_range_count,   SHOW_LONG},
  2144.   {"Sort_rows",        (char*) &filesort_rows,         SHOW_LONG},
  2145.   {"Sort_scan",        (char*) &filesort_scan_count,    SHOW_LONG},
  2146. #ifdef HAVE_OPENSSL
  2147.   {"Ssl_accept_renegotiates",  (char*) 0,  SHOW_SSL_CTX_SESS_ACCEPT_RENEGOTIATE},
  2148.   {"Ssl_accepts",              (char*) 0,   SHOW_SSL_CTX_SESS_ACCEPT},
  2149.   {"Ssl_callback_cache_hits",  (char*) 0, SHOW_SSL_CTX_SESS_CB_HITS},
  2150.   {"Ssl_cipher",               (char*) 0,   SHOW_SSL_GET_CIPHER},
  2151.   {"Ssl_cipher_list",          (char*) 0,   SHOW_SSL_GET_CIPHER_LIST},
  2152.   {"Ssl_client_connects",      (char*) 0, SHOW_SSL_CTX_SESS_CONNECT},
  2153.   {"Ssl_connect_renegotiates", (char*) 0,  SHOW_SSL_CTX_SESS_CONNECT_RENEGOTIATE},
  2154.   {"Ssl_ctx_verify_depth",     (char*) 0, SHOW_SSL_CTX_GET_VERIFY_DEPTH},
  2155.   {"Ssl_ctx_verify_mode",      (char*) 0, SHOW_SSL_CTX_GET_VERIFY_MODE},
  2156.   {"Ssl_default_timeout",      (char*) 0,   SHOW_SSL_GET_DEFAULT_TIMEOUT},
  2157.   {"Ssl_finished_accepts",     (char*) 0,   SHOW_SSL_CTX_SESS_ACCEPT_GOOD},
  2158.   {"Ssl_finished_connects",    (char*) 0,   SHOW_SSL_CTX_SESS_CONNECT_GOOD},
  2159.   {"Ssl_session_cache_hits",   (char*) 0, SHOW_SSL_CTX_SESS_HITS},
  2160.   {"Ssl_session_cache_misses", (char*) 0, SHOW_SSL_CTX_SESS_MISSES},
  2161.   {"Ssl_session_cache_mode",   (char*) 0, SHOW_SSL_CTX_GET_SESSION_CACHE_MODE},
  2162.   {"Ssl_session_cache_overflows", (char*) 0, SHOW_SSL_CTX_SESS_CACHE_FULL},
  2163.   {"Ssl_session_cache_size",   (char*) 0, SHOW_SSL_CTX_SESS_GET_CACHE_SIZE},
  2164.   {"Ssl_session_cache_timeouts", (char*) 0, SHOW_SSL_CTX_SESS_TIMEOUTS},
  2165.   {"Ssl_sessions_reused",      (char*) 0, SHOW_SSL_SESSION_REUSED},
  2166.   {"Ssl_used_session_cache_entries",(char*) 0, SHOW_SSL_CTX_SESS_NUMBER},
  2167.   {"Ssl_verify_depth",         (char*) 0, SHOW_SSL_GET_VERIFY_DEPTH},
  2168.   {"Ssl_verify_mode",          (char*) 0, SHOW_SSL_GET_VERIFY_MODE},
  2169.   {"Ssl_version",           (char*) 0,   SHOW_SSL_GET_VERSION},
  2170. #endif /* HAVE_OPENSSL */
  2171.   {"Table_locks_immediate",    (char*) &locks_immediate,        SHOW_LONG},
  2172.   {"Table_locks_waited",       (char*) &locks_waited,           SHOW_LONG},
  2173.   {"Threads_cached",           (char*) &cached_thread_count,    SHOW_LONG_CONST},
  2174.   {"Threads_connected",        (char*) &thread_count,           SHOW_INT_CONST},
  2175.   {"Threads_created",        (char*) &thread_created, SHOW_LONG_CONST},
  2176.   {"Threads_running",          (char*) &thread_running,         SHOW_INT_CONST},
  2177.   {"Uptime",                   (char*) 0,                       SHOW_STARTTIME},
  2178.   {NullS, NullS, SHOW_LONG}
  2179. };
  2180. static void print_version(void)
  2181. {
  2182.   set_server_version();
  2183.   printf("%s  Ver %s for %s on %s (%s)n",my_progname,
  2184.  server_version,SYSTEM_TYPE,MACHINE_TYPE, MYSQL_COMPILATION_COMMENT);
  2185. }
  2186. static void usage(void)
  2187. {
  2188.   if (!(default_charset_info= get_charset_by_csname(default_character_set_name,
  2189.            MY_CS_PRIMARY,
  2190.    MYF(MY_WME))))
  2191.     exit(1);
  2192.   if (!default_collation_name)
  2193.     default_collation_name= (char*) default_charset_info->name;
  2194.   print_version();
  2195.   puts("
  2196. Copyright (C) 2000 MySQL AB, by Monty and othersn
  2197. This software comes with ABSOLUTELY NO WARRANTY. This is free software,n
  2198. and you are welcome to modify and redistribute it under the GPL licensenn
  2199. Starts the MySQL database servern");
  2200.   printf("Usage: %s [OPTIONS]n", my_progname);
  2201.   if (!opt_verbose)
  2202.     puts("nFor more help options (several pages), use mysqld --verbose --helpn");
  2203.   else
  2204.   {
  2205. #ifdef __WIN__
  2206.   puts("NT and Win32 specific options:n
  2207.   --install                     Install the default service (NT)n
  2208.   --install-manual              Install the default service started manually (NT)n
  2209.   --install service_name        Install an optional service (NT)n
  2210.   --install-manual service_name Install an optional service started manually (NT)n
  2211.   --remove                      Remove the default service from the service list (NT)n
  2212.   --remove service_name         Remove the service_name from the service list (NT)n
  2213.   --enable-named-pipe           Only to be used for the default server (NT)n
  2214.   --standalone                  Dummy option to start as a standalone server (NT)
  2215. ");
  2216.   puts("");
  2217. #endif
  2218.   print_defaults(MYSQL_CONFIG_NAME,load_default_groups);
  2219.   puts("");
  2220.   fix_paths();
  2221.   set_ports();
  2222.   my_print_help(my_long_options);
  2223.   my_print_variables(my_long_options);
  2224.   puts("n
  2225. To see what values a running MySQL server is using, typen
  2226. 'mysqladmin variables' instead of 'mysqld --verbose --help'.n");
  2227.   }
  2228. }
  2229. /*
  2230.   Initialize all MySQL global variables to default values
  2231.   SYNOPSIS
  2232.     mysql_init_variables()
  2233.   NOTES
  2234.     The reason to set a lot of global variables to zero is to allow one to
  2235.     restart the embedded server with a clean environment
  2236.     It's also needed on some exotic platforms where global variables are
  2237.     not set to 0 when a program starts.
  2238.     We don't need to set numeric variables refered to in my_long_options
  2239.     as these are initialized by my_getopt.
  2240. */
  2241. static void mysql_init_variables(void)
  2242. {
  2243.   /* Things reset to zero */
  2244.   opt_skip_slave_start= opt_reckless_slave = 0;
  2245.   mysql_home[0]= pidfile_name[0]= log_error_file[0]= 0;
  2246.   opt_log= opt_update_log= opt_bin_log= opt_slow_log= 0;
  2247.   opt_disable_networking= opt_skip_show_db=0;
  2248.   opt_logname= opt_update_logname= opt_binlog_index_name= opt_slow_logname=0;
  2249.   opt_secure_auth= 0;
  2250.   opt_bootstrap= opt_myisam_log= 0;
  2251.   mqh_used= 0;
  2252.   segfaulted= kill_in_progress= 0;
  2253.   cleanup_done= 0;
  2254.   defaults_argv= 0;
  2255.   server_id_supplied= 0;
  2256.   test_flags= select_errors= dropping_tables= ha_open_options=0;
  2257.   thread_count= thread_running= kill_cached_threads= wake_thread=0;
  2258.   slave_open_temp_tables= 0;
  2259.   com_other= 0;
  2260.   cached_thread_count= 0;
  2261.   bytes_sent= bytes_received= 0;
  2262.   opt_endinfo= using_udf_functions= 0;
  2263.   opt_using_transactions= using_update_log= 0;
  2264.   abort_loop= select_thread_in_use= signal_thread_in_use= 0;
  2265.   ready_to_exit= shutdown_in_progress= grant_option= 0;
  2266.   long_query_count= aborted_threads= aborted_connects= 0;
  2267.   delayed_insert_threads= delayed_insert_writes= delayed_rows_in_use= 0;
  2268.   delayed_insert_errors= thread_created= 0;
  2269.   filesort_rows= filesort_range_count= filesort_scan_count= 0;
  2270.   filesort_merge_passes= select_range_check_count= select_range_count= 0;
  2271.   select_scan_count= select_full_range_join_count= select_full_join_count= 0;
  2272.   specialflag= opened_tables= created_tmp_tables= created_tmp_disk_tables= 0;
  2273.   binlog_cache_use=  binlog_cache_disk_use= 0;
  2274.   max_used_connections= slow_launch_threads = 0;
  2275.   mysqld_user= mysqld_chroot= opt_init_file= opt_bin_logname = 0;
  2276.   errmesg= 0;
  2277.   mysqld_unix_port= opt_mysql_tmpdir= my_bind_addr_str= NullS;
  2278.   bzero((gptr) &mysql_tmpdir_list, sizeof(mysql_tmpdir_list));
  2279.   bzero((gptr) &com_stat, sizeof(com_stat));
  2280.   key_map_full.set_all();
  2281.   /* Character sets */
  2282.   system_charset_info= &my_charset_utf8_general_ci;
  2283.   files_charset_info= &my_charset_utf8_general_ci;
  2284.   national_charset_info= &my_charset_utf8_general_ci;
  2285.   table_alias_charset= &my_charset_bin;
  2286.   opt_date_time_formats[0]= opt_date_time_formats[1]= opt_date_time_formats[2]= 0;
  2287.   /* Things with default values that are not zero */
  2288.   delay_key_write_options= (uint) DELAY_KEY_WRITE_ON;
  2289.   opt_specialflag= SPECIAL_ENGLISH;
  2290.   unix_sock= ip_sock= INVALID_SOCKET;
  2291.   mysql_home_ptr= mysql_home;
  2292.   pidfile_name_ptr= pidfile_name;
  2293.   log_error_file_ptr= log_error_file;
  2294.   language_ptr= language;
  2295.   mysql_data_home= mysql_real_data_home;
  2296.   thd_startup_options= (OPTION_UPDATE_LOG | OPTION_AUTO_IS_NULL |
  2297. OPTION_BIN_LOG | OPTION_QUOTE_SHOW_CREATE |
  2298. OPTION_SQL_NOTES);
  2299.   protocol_version= PROTOCOL_VERSION;
  2300.   what_to_log= ~ (1L << (uint) COM_TIME);
  2301.   refresh_version= flush_version= 1L; /* Increments on each reload */
  2302.   query_id= thread_id= 1L;
  2303.   strmov(server_version, MYSQL_SERVER_VERSION);
  2304.   myisam_recover_options_str= sql_mode_str= "OFF";
  2305.   myisam_stats_method_str= "nulls_unequal";
  2306.   my_bind_addr = htonl(INADDR_ANY);
  2307.   threads.empty();
  2308.   thread_cache.empty();
  2309.   key_caches.empty();
  2310.   if (!(dflt_key_cache= get_or_create_key_cache(default_key_cache_base.str,
  2311.        default_key_cache_base.length)))
  2312.     exit(1);
  2313.   multi_keycache_init(); /* set key_cache_hash.default_value = dflt_key_cache */
  2314.   /* Initialize structures that is used when processing options */
  2315.   replicate_rewrite_db.empty();
  2316.   replicate_do_db.empty();
  2317.   replicate_ignore_db.empty();
  2318.   binlog_do_db.empty();
  2319.   binlog_ignore_db.empty();
  2320.   /* Set directory paths */
  2321.   strmake(language, LANGUAGE, sizeof(language)-1);
  2322.   strmake(mysql_real_data_home, get_relative_path(DATADIR),
  2323.   sizeof(mysql_real_data_home)-1);
  2324.   mysql_data_home_buff[0]=FN_CURLIB; // all paths are relative from here
  2325.   mysql_data_home_buff[1]=0;
  2326.   /* Replication parameters */
  2327.   master_user= (char*) "test";
  2328.   master_password= master_host= 0;
  2329.   master_info_file= (char*) "master.info",
  2330.     relay_log_info_file= (char*) "relay-log.info";
  2331.   master_ssl_key= master_ssl_cert= master_ssl_ca= 
  2332.     master_ssl_capath= master_ssl_cipher= 0;
  2333.   report_user= report_password = report_host= 0; /* TO BE DELETED */
  2334.   opt_relay_logname= opt_relaylog_index_name= 0;
  2335.   /* Variables in libraries */
  2336.   charsets_dir= 0;
  2337.   default_character_set_name= (char*) MYSQL_DEFAULT_CHARSET_NAME;
  2338.   default_collation_name= (char*) MYSQL_DEFAULT_COLLATION_NAME;
  2339.   sys_charset_system.value= (char*) system_charset_info->csname;
  2340.   /* Set default values for some option variables */
  2341.   global_system_variables.table_type=   DB_TYPE_MYISAM;
  2342.   global_system_variables.tx_isolation= ISO_REPEATABLE_READ;
  2343.   global_system_variables.select_limit= (ulonglong) HA_POS_ERROR;
  2344.   max_system_variables.select_limit=    (ulonglong) HA_POS_ERROR;
  2345.   global_system_variables.max_join_size= (ulonglong) HA_POS_ERROR;
  2346.   max_system_variables.max_join_size=   (ulonglong) HA_POS_ERROR;
  2347.   global_system_variables.old_passwords= 0;
  2348.   
  2349.   /*
  2350.     Default behavior for 4.1 and 5.0 is to treat NULL values as unequal
  2351.     when collecting index statistics for MyISAM tables.
  2352.   */
  2353.   global_system_variables.myisam_stats_method= MI_STATS_METHOD_NULLS_NOT_EQUAL;
  2354.   /* Variables that depends on compile options */
  2355. #ifndef DBUG_OFF
  2356.   default_dbug_option=IF_WIN("d:t:i:O,\mysqld.trace",
  2357.      "d:t:i:o,/tmp/mysqld.trace");
  2358. #endif
  2359.   opt_error_log= IF_WIN(1,0);
  2360. #ifdef HAVE_BERKELEY_DB
  2361.   have_berkeley_db= SHOW_OPTION_YES;
  2362. #else
  2363.   have_berkeley_db= SHOW_OPTION_NO;
  2364. #endif
  2365. #ifdef HAVE_INNOBASE_DB
  2366.   have_innodb=SHOW_OPTION_YES;
  2367. #else
  2368.   have_innodb=SHOW_OPTION_NO;
  2369. #endif
  2370. #ifdef HAVE_ISAM
  2371.   have_isam=SHOW_OPTION_YES;
  2372. #else
  2373.   have_isam=SHOW_OPTION_NO;
  2374. #endif
  2375. #ifdef HAVE_EXAMPLE_DB
  2376.   have_example_db= SHOW_OPTION_YES;
  2377. #else
  2378.   have_example_db= SHOW_OPTION_NO;
  2379. #endif
  2380. #ifdef HAVE_ARCHIVE_DB
  2381.   have_archive_db= SHOW_OPTION_YES;
  2382. #else
  2383.   have_archive_db= SHOW_OPTION_NO;
  2384. #endif
  2385. #ifdef HAVE_BLACKHOLE_DB
  2386.   have_blackhole_db= SHOW_OPTION_YES;
  2387. #else
  2388.   have_blackhole_db= SHOW_OPTION_NO;
  2389. #endif
  2390. #ifdef HAVE_CSV_DB
  2391.   have_csv_db= SHOW_OPTION_YES;
  2392. #else
  2393.   have_csv_db= SHOW_OPTION_NO;
  2394. #endif
  2395. #ifdef HAVE_NDBCLUSTER_DB
  2396.   have_ndbcluster=SHOW_OPTION_DISABLED;
  2397. #else
  2398.   have_ndbcluster=SHOW_OPTION_NO;
  2399. #endif
  2400. #ifdef USE_RAID
  2401.   have_raid=SHOW_OPTION_YES;
  2402. #else
  2403.   have_raid=SHOW_OPTION_NO;
  2404. #endif
  2405. #ifdef HAVE_OPENSSL
  2406.   have_openssl=SHOW_OPTION_YES;
  2407. #else
  2408.   have_openssl=SHOW_OPTION_NO;
  2409. #endif
  2410. #if !defined(HAVE_REALPATH) || defined(HAVE_BROKEN_REALPATH)
  2411.   have_symlink=SHOW_OPTION_NO;
  2412. #else
  2413.   have_symlink=SHOW_OPTION_YES;
  2414. #endif
  2415. #ifdef HAVE_QUERY_CACHE
  2416.   have_query_cache=SHOW_OPTION_YES;
  2417. #else
  2418.   have_query_cache=SHOW_OPTION_NO;
  2419. #endif
  2420. #ifdef HAVE_SPATIAL
  2421.   have_geometry=SHOW_OPTION_YES;
  2422. #else
  2423.   have_geometry=SHOW_OPTION_NO;
  2424. #endif
  2425. #ifdef HAVE_RTREE_KEYS
  2426.   have_rtree_keys=SHOW_OPTION_YES;
  2427. #else
  2428.   have_rtree_keys=SHOW_OPTION_NO;
  2429. #endif
  2430. #ifdef HAVE_CRYPT
  2431.   have_crypt=SHOW_OPTION_YES;
  2432. #else
  2433.   have_crypt=SHOW_OPTION_NO;
  2434. #endif
  2435. #ifdef HAVE_COMPRESS
  2436.   have_compress= SHOW_OPTION_YES;
  2437. #else
  2438.   have_compress= SHOW_OPTION_NO;
  2439. #endif
  2440. #ifdef HAVE_LIBWRAP
  2441.   libwrapName= NullS;
  2442. #endif
  2443. #ifdef HAVE_OPENSSL
  2444.   des_key_file = 0;
  2445.   ssl_acceptor_fd= 0;
  2446. #endif
  2447. #ifdef HAVE_SMEM
  2448.   shared_memory_base_name= default_shared_memory_base_name;
  2449. #endif
  2450. #if !defined(my_pthread_setprio) && !defined(HAVE_PTHREAD_SETSCHEDPARAM)
  2451.   opt_specialflag |= SPECIAL_NO_PRIOR;
  2452. #endif
  2453. #if defined(__WIN__) || defined(__NETWARE__)
  2454.   /* Allow Win32 and NetWare users to move MySQL anywhere */
  2455.   {
  2456.     char prg_dev[LIBLEN];
  2457.     my_path(prg_dev,my_progname,"mysql/bin");
  2458.     strcat(prg_dev,"/../"); // Remove 'bin' to get base dir
  2459.     cleanup_dirname(mysql_home,prg_dev);
  2460.   }
  2461. #else
  2462.   const char *tmpenv;
  2463.   if (!(tmpenv = getenv("MY_BASEDIR_VERSION")))
  2464.     tmpenv = DEFAULT_MYSQL_HOME;
  2465.   (void) strmake(mysql_home, tmpenv, sizeof(mysql_home)-1);
  2466. #endif
  2467. }
  2468. extern "C" my_bool
  2469. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  2470.        char *argument)
  2471. {
  2472.   switch(optid) {
  2473.   case '#':
  2474. #ifndef DBUG_OFF
  2475.     DBUG_PUSH(argument ? argument : default_dbug_option);
  2476. #endif
  2477.     opt_endinfo=1; /* unireg: memory allocation */
  2478.     break;
  2479.   case 'a':
  2480.     global_system_variables.sql_mode= fix_sql_mode(MODE_ANSI);
  2481.     global_system_variables.tx_isolation= ISO_SERIALIZABLE;
  2482.     break;
  2483.   case 'b':
  2484.     strmake(mysql_home,argument,sizeof(mysql_home)-1);
  2485.     break;
  2486.   case 'C':
  2487.     default_collation_name= 0;
  2488.     break;
  2489.   case 'l':
  2490.     opt_log=1;
  2491.     break;
  2492.   case 'h':
  2493.     strmake(mysql_real_data_home,argument, sizeof(mysql_real_data_home)-1);
  2494.     /* Correct pointer set by my_getopt (for embedded library) */
  2495.     mysql_data_home= mysql_real_data_home;
  2496.     break;
  2497.   case 'u':
  2498.     if (!mysqld_user || !strcmp(mysqld_user, argument))
  2499.       mysqld_user= argument;
  2500.     else
  2501.       sql_print_warning("Ignoring user change to '%s' because the user was set to '%s' earlier on the command linen", argument, mysqld_user);
  2502.     break;
  2503.   case 'L':
  2504.     strmake(language, argument, sizeof(language)-1);
  2505.     break;
  2506. #ifdef HAVE_REPLICATION
  2507.   case OPT_SLAVE_SKIP_ERRORS:
  2508.     init_slave_skip_errors(argument);
  2509.     break;
  2510. #endif
  2511.   case OPT_SAFEMALLOC_MEM_LIMIT:
  2512. #if !defined(DBUG_OFF) && defined(SAFEMALLOC)
  2513.     sf_malloc_mem_limit = atoi(argument);
  2514. #endif
  2515.     break;
  2516. #include <sslopt-case.h>
  2517.   case 'V':
  2518.     print_version();
  2519.     exit(0);
  2520.   case 'W':
  2521.     if (!argument)
  2522.       global_system_variables.log_warnings++;
  2523.     else if (argument == disabled_my_option)
  2524.       global_system_variables.log_warnings= 0L;
  2525.     else
  2526.       global_system_variables.log_warnings= atoi(argument);
  2527.     break;
  2528.   case 'T':
  2529.     test_flags= argument ? (uint) atoi(argument) : 0;
  2530.     test_flags&= ~TEST_NO_THREADS;
  2531.     opt_endinfo=1;
  2532.     break;
  2533.   case (int) OPT_BIG_TABLES:
  2534.     thd_startup_options|=OPTION_BIG_TABLES;
  2535.     break;
  2536.   case (int) OPT_ISAM_LOG:
  2537.     opt_myisam_log=1;
  2538.     break;
  2539.   case (int) OPT_UPDATE_LOG:
  2540.     opt_update_log=1;
  2541.     break;
  2542.   case (int) OPT_BIN_LOG:
  2543.     opt_bin_log=1;
  2544.     break;
  2545.   case (int) OPT_ERROR_LOG_FILE:
  2546.     opt_error_log= 1;
  2547.     break;
  2548. #ifdef HAVE_REPLICATION
  2549.   case (int) OPT_INIT_RPL_ROLE:
  2550.   {
  2551.     int role;
  2552.     if ((role=find_type(argument, &rpl_role_typelib, 2)) <= 0)
  2553.     {
  2554.       fprintf(stderr, "Unknown replication role: %sn", argument);
  2555.       exit(1);
  2556.     }
  2557.     rpl_status = (role == 1) ?  RPL_AUTH_MASTER : RPL_IDLE_SLAVE;
  2558.     break;
  2559.   }
  2560.   case (int)OPT_REPLICATE_IGNORE_DB:
  2561.   {
  2562.     i_string *db = new i_string(argument);
  2563.     replicate_ignore_db.push_back(db);
  2564.     break;
  2565.   }
  2566.   case (int)OPT_REPLICATE_DO_DB:
  2567.   {
  2568.     i_string *db = new i_string(argument);
  2569.     replicate_do_db.push_back(db);
  2570.     break;
  2571.   }
  2572.   case (int)OPT_REPLICATE_REWRITE_DB:
  2573.   {
  2574.     char* key = argument,*p, *val;
  2575.     if (!(p= strstr(argument, "->")))
  2576.     {
  2577.       fprintf(stderr,
  2578.       "Bad syntax in replicate-rewrite-db - missing '->'!n");
  2579.       exit(1);
  2580.     }
  2581.     val= p--;
  2582.     while (my_isspace(mysqld_charset, *p) && p > argument)
  2583.       *p-- = 0;
  2584.     if (p == argument)
  2585.     {
  2586.       fprintf(stderr,
  2587.       "Bad syntax in replicate-rewrite-db - empty FROM db!n");
  2588.       exit(1);
  2589.     }
  2590.     *val= 0;
  2591.     val+= 2;
  2592.     while (*val && my_isspace(mysqld_charset, *val))
  2593.       *val++;
  2594.     if (!*val)
  2595.     {
  2596.       fprintf(stderr,
  2597.       "Bad syntax in replicate-rewrite-db - empty TO db!n");
  2598.       exit(1);
  2599.     }
  2600.     i_string_pair *db_pair = new i_string_pair(key, val);
  2601.     replicate_rewrite_db.push_back(db_pair);
  2602.     break;
  2603.   }
  2604.   case (int)OPT_BINLOG_IGNORE_DB:
  2605.   {
  2606.     i_string *db = new i_string(argument);
  2607.     binlog_ignore_db.push_back(db);
  2608.     break;
  2609.   }
  2610.   case (int)OPT_BINLOG_DO_DB:
  2611.   {
  2612.     i_string *db = new i_string(argument);
  2613.     binlog_do_db.push_back(db);
  2614.     break;
  2615.   }
  2616.   case (int)OPT_REPLICATE_DO_TABLE:
  2617.   {
  2618.     if (!do_table_inited)
  2619.       init_table_rule_hash(&replicate_do_table, &do_table_inited);
  2620.     if (add_table_rule(&replicate_do_table, argument))
  2621.     {
  2622.       fprintf(stderr, "Could not add do table rule '%s'!n", argument);
  2623.       exit(1);
  2624.     }
  2625.     table_rules_on = 1;
  2626.     break;
  2627.   }
  2628.   case (int)OPT_REPLICATE_WILD_DO_TABLE:
  2629.   {
  2630.     if (!wild_do_table_inited)
  2631.       init_table_rule_array(&replicate_wild_do_table,
  2632.     &wild_do_table_inited);
  2633.     if (add_wild_table_rule(&replicate_wild_do_table, argument))
  2634.     {
  2635.       fprintf(stderr, "Could not add do table rule '%s'!n", argument);
  2636.       exit(1);
  2637.     }
  2638.     table_rules_on = 1;
  2639.     break;
  2640.   }
  2641.   case (int)OPT_REPLICATE_WILD_IGNORE_TABLE:
  2642.   {
  2643.     if (!wild_ignore_table_inited)
  2644.       init_table_rule_array(&replicate_wild_ignore_table,
  2645.     &wild_ignore_table_inited);
  2646.     if (add_wild_table_rule(&replicate_wild_ignore_table, argument))
  2647.     {
  2648.       fprintf(stderr, "Could not add ignore table rule '%s'!n", argument);
  2649.       exit(1);
  2650.     }
  2651.     table_rules_on = 1;
  2652.     break;
  2653.   }
  2654.   case (int)OPT_REPLICATE_IGNORE_TABLE:
  2655.   {
  2656.     if (!ignore_table_inited)
  2657.       init_table_rule_hash(&replicate_ignore_table, &ignore_table_inited);
  2658.     if (add_table_rule(&replicate_ignore_table, argument))
  2659.     {
  2660.       fprintf(stderr, "Could not add ignore table rule '%s'!n", argument);
  2661.       exit(1);
  2662.     }
  2663.     table_rules_on = 1;
  2664.     break;
  2665.   }
  2666. #endif /* HAVE_REPLICATION */
  2667.   case (int) OPT_SLOW_QUERY_LOG:
  2668.     opt_slow_log=1;
  2669.     break;
  2670.   case (int) OPT_SKIP_NEW:
  2671.     opt_specialflag|= SPECIAL_NO_NEW_FUNC;
  2672.     delay_key_write_options= (uint) DELAY_KEY_WRITE_NONE;
  2673.     myisam_concurrent_insert=0;
  2674.     myisam_recover_options= HA_RECOVER_NONE;
  2675.     my_use_symdir=0;
  2676.     ha_open_options&= ~(HA_OPEN_ABORT_IF_CRASHED | HA_OPEN_DELAY_KEY_WRITE);
  2677. #ifdef HAVE_QUERY_CACHE
  2678.     query_cache_size=0;
  2679. #endif
  2680.     break;
  2681.   case (int) OPT_SAFE:
  2682.     opt_specialflag|= SPECIAL_SAFE_MODE;
  2683.     delay_key_write_options= (uint) DELAY_KEY_WRITE_NONE;
  2684.     myisam_recover_options= HA_RECOVER_DEFAULT;
  2685.     ha_open_options&= ~(HA_OPEN_DELAY_KEY_WRITE);
  2686.     break;
  2687.   case (int) OPT_SKIP_PRIOR:
  2688.     opt_specialflag|= SPECIAL_NO_PRIOR;
  2689.     break;
  2690.   case (int) OPT_SKIP_LOCK:
  2691.     opt_external_locking=0;
  2692.     break;
  2693.   case (int) OPT_SKIP_HOST_CACHE:
  2694.     opt_specialflag|= SPECIAL_NO_HOST_CACHE;
  2695.     break;
  2696.   case (int) OPT_SKIP_RESOLVE:
  2697.     opt_specialflag|=SPECIAL_NO_RESOLVE;
  2698.     break;
  2699.   case (int) OPT_SKIP_NETWORKING:
  2700. #if defined(__NETWARE__)
  2701.     sql_perror("Can't start server: skip-networking option is currently not supported on NetWare");
  2702.     exit(1);
  2703. #endif
  2704.     opt_disable_networking=1;
  2705.     mysqld_port=0;
  2706.     break;
  2707.   case (int) OPT_SKIP_SHOW_DB:
  2708.     opt_skip_show_db=1;
  2709.     opt_specialflag|=SPECIAL_SKIP_SHOW_DB;
  2710.     break;
  2711. #ifdef ONE_THREAD
  2712.   case (int) OPT_ONE_THREAD:
  2713.     test_flags |= TEST_NO_THREADS;
  2714. #endif
  2715.     break;
  2716.   case (int) OPT_WANT_CORE:
  2717.     test_flags |= TEST_CORE_ON_SIGNAL;
  2718.     break;
  2719.   case (int) OPT_SKIP_STACK_TRACE:
  2720.     test_flags|=TEST_NO_STACKTRACE;
  2721.     break;
  2722.   case (int) OPT_SKIP_SYMLINKS:
  2723.     my_use_symdir=0;
  2724.     break;
  2725.   case (int) OPT_BIND_ADDRESS:
  2726.     if ((my_bind_addr= (ulong) inet_addr(argument)) == INADDR_NONE)
  2727.     {
  2728.       struct hostent *ent;
  2729.       if (argument[0])
  2730. ent=gethostbyname(argument);
  2731.       else
  2732.       {
  2733. char myhostname[255];
  2734. if (gethostname(myhostname,sizeof(myhostname)) < 0)
  2735. {
  2736.   sql_perror("Can't start server: cannot get my own hostname!");
  2737.   exit(1);
  2738. }
  2739. ent=gethostbyname(myhostname);
  2740.       }
  2741.       if (!ent)
  2742.       {
  2743. sql_perror("Can't start server: cannot resolve hostname!");
  2744. exit(1);
  2745.       }
  2746.       my_bind_addr = (ulong) ((in_addr*)ent->h_addr_list[0])->s_addr;
  2747.     }
  2748.     break;
  2749.   case (int) OPT_PID_FILE:
  2750.     strmake(pidfile_name, argument, sizeof(pidfile_name)-1);
  2751.     break;
  2752. #ifdef __WIN__
  2753.   case (int) OPT_STANDALONE: /* Dummy option for NT */
  2754.     break;
  2755. #endif
  2756.   case OPT_CONSOLE:
  2757.     if (opt_console)
  2758.       opt_error_log= 0; // Force logs to stdout
  2759.     break;
  2760.   case (int) OPT_FLUSH:
  2761. #ifdef HAVE_ISAM
  2762.     nisam_flush=1;
  2763. #endif
  2764.     myisam_flush=1;
  2765.     flush_time=0; // No auto flush
  2766.     break;
  2767.   case OPT_LOW_PRIORITY_UPDATES:
  2768.     thr_upgraded_concurrent_insert_lock= TL_WRITE_LOW_PRIORITY;
  2769.     global_system_variables.low_priority_updates=1;
  2770.     break;
  2771.   case OPT_BOOTSTRAP:
  2772.     opt_noacl=opt_bootstrap=1;
  2773.     break;
  2774.   case OPT_STORAGE_ENGINE:
  2775.   {
  2776.     if ((enum db_type)((global_system_variables.table_type=
  2777.                         ha_resolve_by_name(argument, strlen(argument)))) ==
  2778.         DB_TYPE_UNKNOWN)
  2779.     {
  2780.       fprintf(stderr,"Unknown/unsupported table type: %sn",argument);
  2781.       exit(1);
  2782.     }
  2783.     break;
  2784.   }
  2785.   case OPT_SERVER_ID:
  2786.     server_id_supplied = 1;
  2787.     break;
  2788.   case OPT_DELAY_KEY_WRITE_ALL:
  2789.     if (argument != disabled_my_option)
  2790.       argument= (char*) "ALL";
  2791.     /* Fall through */
  2792.   case OPT_DELAY_KEY_WRITE:
  2793.     if (argument == disabled_my_option)
  2794.       delay_key_write_options= (uint) DELAY_KEY_WRITE_NONE;
  2795.     else if (! argument)
  2796.       delay_key_write_options= (uint) DELAY_KEY_WRITE_ON;
  2797.     else
  2798.     {
  2799.       int type;
  2800.       if ((type=find_type(argument, &delay_key_write_typelib, 2)) <= 0)
  2801.       {
  2802. fprintf(stderr,"Unknown delay_key_write type: %sn",argument);
  2803. exit(1);
  2804.       }
  2805.       delay_key_write_options= (uint) type-1;
  2806.     }
  2807.     break;
  2808.   case OPT_CHARSETS_DIR:
  2809.     strmake(mysql_charsets_dir, argument, sizeof(mysql_charsets_dir)-1);
  2810.     charsets_dir = mysql_charsets_dir;
  2811.     break;
  2812.   case OPT_TX_ISOLATION:
  2813.   {
  2814.     int type;
  2815.     if ((type=find_type(argument, &tx_isolation_typelib, 2)) <= 0)
  2816.     {
  2817.       fprintf(stderr,"Unknown transaction isolation type: %sn",argument);
  2818.       exit(1);
  2819.     }
  2820.     global_system_variables.tx_isolation= (type-1);
  2821.     break;
  2822.   }
  2823. #ifdef HAVE_BERKELEY_DB
  2824.   case OPT_BDB_NOSYNC:
  2825.     /* Deprecated option */
  2826.     opt_sync_bdb_logs= 0;
  2827.     /* Fall through */
  2828.   case OPT_BDB_SYNC:
  2829.     if (!opt_sync_bdb_logs)
  2830.       berkeley_env_flags|= DB_TXN_NOSYNC;
  2831.     else
  2832.       berkeley_env_flags&= ~DB_TXN_NOSYNC;
  2833.     break;
  2834.   case OPT_BDB_NO_RECOVER:
  2835.     berkeley_init_flags&= ~(DB_RECOVER);
  2836.     break;
  2837.   case OPT_BDB_LOCK:
  2838.   {
  2839.     int type;
  2840.     if ((type=find_type(argument, &berkeley_lock_typelib, 2)) > 0)
  2841.       berkeley_lock_type=berkeley_lock_types[type-1];
  2842.     else
  2843.     {
  2844.       int err;
  2845.       char *end;
  2846.       uint length= strlen(argument);
  2847.       long value= my_strntol(&my_charset_latin1, argument, length, 10, &end, &err);
  2848.       if (test_if_int(argument,(uint) length, end, &my_charset_latin1))
  2849. berkeley_lock_scan_time= value;
  2850.       else
  2851.       {
  2852. fprintf(stderr,"Unknown lock type: %sn",argument);
  2853. exit(1);
  2854.       }
  2855.     }
  2856.     break;
  2857.   }
  2858.   case OPT_BDB_SHARED:
  2859.     berkeley_init_flags&= ~(DB_PRIVATE);
  2860.     berkeley_shared_data= 1;
  2861.     break;
  2862. #endif /* HAVE_BERKELEY_DB */
  2863.   case OPT_BDB:
  2864. #ifdef HAVE_BERKELEY_DB
  2865.     if (opt_bdb)
  2866.       have_berkeley_db= SHOW_OPTION_YES;
  2867.     else
  2868.       have_berkeley_db= SHOW_OPTION_DISABLED;
  2869. #endif
  2870.     break;
  2871.   case OPT_ISAM:
  2872. #ifdef HAVE_ISAM
  2873.     if (opt_isam)
  2874.       have_isam= SHOW_OPTION_YES;
  2875.     else
  2876.       have_isam= SHOW_OPTION_DISABLED;
  2877. #endif
  2878.     break;
  2879.   case OPT_NDBCLUSTER:
  2880. #ifdef HAVE_NDBCLUSTER_DB
  2881.     if (opt_ndbcluster)
  2882.       have_ndbcluster= SHOW_OPTION_YES;
  2883.     else
  2884.       have_ndbcluster= SHOW_OPTION_DISABLED;
  2885. #endif
  2886.     break;
  2887.   case OPT_INNODB:
  2888. #ifdef HAVE_INNOBASE_DB
  2889.     if (opt_innodb)
  2890.       have_innodb= SHOW_OPTION_YES;
  2891.     else
  2892.       have_innodb= SHOW_OPTION_DISABLED;
  2893. #endif
  2894.     break;
  2895.   case OPT_INNODB_DATA_FILE_PATH:
  2896. #ifdef HAVE_INNOBASE_DB
  2897.     innobase_data_file_path= argument;
  2898. #endif
  2899.     break;
  2900. #ifdef HAVE_INNOBASE_DB
  2901.   case OPT_INNODB_LOG_ARCHIVE:
  2902.     innobase_log_archive= argument ? test(atoi(argument)) : 1;
  2903.     break;
  2904.   case OPT_INNODB_FAST_SHUTDOWN:
  2905.     innobase_fast_shutdown= argument ? test(atoi(argument)) : 1;
  2906.     break;
  2907. #endif /* HAVE_INNOBASE_DB */
  2908.   case OPT_MYISAM_RECOVER:
  2909.   {
  2910.     if (!argument || !argument[0])
  2911.     {
  2912.       myisam_recover_options=    HA_RECOVER_DEFAULT;
  2913.       myisam_recover_options_str= myisam_recover_typelib.type_names[0];
  2914.     }
  2915.     else
  2916.     {
  2917.       myisam_recover_options_str=argument;
  2918.       if ((myisam_recover_options=
  2919.    find_bit_type(argument, &myisam_recover_typelib)) == ~(ulong) 0)
  2920.       {
  2921. fprintf(stderr, "Unknown option to myisam-recover: %sn",argument);
  2922. exit(1);
  2923.       }
  2924.     }
  2925.     ha_open_options|=HA_OPEN_ABORT_IF_CRASHED;
  2926.     break;
  2927.   }
  2928.   case OPT_MYISAM_STATS_METHOD:
  2929.   {
  2930.     int method;
  2931.     ulong method_conv;
  2932.     myisam_stats_method_str= argument;
  2933.     if ((method=find_type(argument, &myisam_stats_method_typelib, 2)) <= 0)
  2934.     {
  2935.       fprintf(stderr, "Invalid value of myisam_stats_method: %s.n", argument);
  2936.       exit(1);
  2937.     }
  2938.     switch (method-1) {
  2939.     case 0: 
  2940.       method_conv= MI_STATS_METHOD_NULLS_EQUAL;
  2941.       break;
  2942.     case 1:
  2943.       method_conv= MI_STATS_METHOD_NULLS_NOT_EQUAL;
  2944.       break;
  2945.     case 2:
  2946.       method_conv= MI_STATS_METHOD_IGNORE_NULLS;
  2947.       break;
  2948.     }
  2949.     global_system_variables.myisam_stats_method= method_conv;
  2950.     break;
  2951.   }
  2952.   case OPT_SQL_MODE:
  2953.   {
  2954.     sql_mode_str= argument;
  2955.     if ((global_system_variables.sql_mode=
  2956.          find_bit_type(argument, &sql_mode_typelib)) == ~(ulong) 0)
  2957.     {
  2958.       fprintf(stderr, "Unknown option to sql-mode: %sn", argument);
  2959.       exit(1);
  2960.     }
  2961.     global_system_variables.sql_mode= fix_sql_mode(global_system_variables.
  2962.    sql_mode);
  2963.     break;
  2964.   }
  2965.   case OPT_FT_BOOLEAN_SYNTAX:
  2966.     if (ft_boolean_check_syntax_string((byte*) argument))
  2967.     {
  2968.       fprintf(stderr, "Invalid ft-boolean-syntax string: %sn", argument);
  2969.       exit(1);
  2970.     }
  2971.     strmake(ft_boolean_syntax, argument, sizeof(ft_boolean_syntax)-1);
  2972.     break;
  2973.   case OPT_SKIP_SAFEMALLOC:
  2974. #ifdef SAFEMALLOC
  2975.     sf_malloc_quick=1;
  2976. #endif
  2977.     break;
  2978.   case OPT_LOWER_CASE_TABLE_NAMES:
  2979.     lower_case_table_names= argument ? atoi(argument) : 1;
  2980.     lower_case_table_names_used= 1;
  2981.     break;
  2982.   }
  2983.   return 0;
  2984. }
  2985. /* Initiates DEBUG - but no debugging here ! */
  2986. extern "C" gptr *
  2987. mysql_getopt_value(const char *keyname, uint key_length,
  2988.    const struct my_option *option)
  2989. {
  2990.   switch (option->id) {
  2991.   case OPT_KEY_BUFFER_SIZE:
  2992.   case OPT_KEY_CACHE_BLOCK_SIZE:
  2993.   case OPT_KEY_CACHE_DIVISION_LIMIT:
  2994.   case OPT_KEY_CACHE_AGE_THRESHOLD:
  2995.   {
  2996.     KEY_CACHE *key_cache;
  2997.     if (!(key_cache= get_or_create_key_cache(keyname, key_length)))
  2998.       exit(1);
  2999.     switch (option->id) {
  3000.     case OPT_KEY_BUFFER_SIZE:
  3001.       return (gptr*) &key_cache->param_buff_size;
  3002.     case OPT_KEY_CACHE_BLOCK_SIZE:
  3003.       return (gptr*) &key_cache->param_block_size;
  3004.     case OPT_KEY_CACHE_DIVISION_LIMIT:
  3005.       return (gptr*) &key_cache->param_division_limit;
  3006.     case OPT_KEY_CACHE_AGE_THRESHOLD:
  3007.       return (gptr*) &key_cache->param_age_threshold;
  3008.     }
  3009.   }
  3010.   }
  3011.  return option->value;
  3012. }
  3013. void option_error_reporter(enum loglevel level, const char *format, ...)
  3014. {
  3015.   va_list args;
  3016.   va_start(args, format);
  3017.   vprint_msg_to_log(level, format, args);
  3018.   va_end(args);
  3019. }
  3020. static void get_options(int argc,char **argv)
  3021. {
  3022.   int ho_error;
  3023.   my_getopt_register_get_addr(mysql_getopt_value);
  3024.   strmake(def_ft_boolean_syntax, ft_boolean_syntax,
  3025.   sizeof(ft_boolean_syntax)-1);
  3026.   my_getopt_error_reporter= option_error_reporter;
  3027.   if ((ho_error= handle_options(&argc, &argv, my_long_options,
  3028.                                 get_one_option)))
  3029.     exit(ho_error);
  3030. #ifndef HAVE_NDBCLUSTER_DB
  3031.   if (opt_ndbcluster)
  3032.     sql_print_warning("this binary does not contain NDBCLUSTER storage engine");
  3033. #endif
  3034. #ifndef HAVE_INNOBASE_DB
  3035.   if (opt_innodb)
  3036.     sql_print_warning("this binary does not contain INNODB storage engine");
  3037. #endif
  3038. #ifndef HAVE_ISAM
  3039.   if (opt_isam)
  3040.     sql_print_warning("this binary does not contain ISAM storage engine");
  3041. #endif
  3042. #ifndef HAVE_BERKELEY_DB
  3043.   if (opt_bdb)
  3044.     sql_print_warning("this binary does not contain BDB storage engine");
  3045. #endif
  3046.   if ((opt_log_slow_admin_statements || opt_log_queries_not_using_indexes) &&
  3047.       !opt_slow_log)
  3048.     sql_print_warning("options --log-slow-admin-statements and --log-queries-not-using-indexes have no effect if --log-slow-queries is not set");
  3049.   /*
  3050.     Check that the default storage engine is actually available.
  3051.   */
  3052.   if (!ha_storage_engine_is_enabled((enum db_type)
  3053.                                     global_system_variables.table_type))
  3054.   {
  3055.     if (!opt_bootstrap)
  3056.     {
  3057.       sql_print_error("Default storage engine (%s) is not available",
  3058.                       ha_get_storage_engine((enum db_type)
  3059.                                             global_system_variables.table_type));
  3060.       exit(1);
  3061.     }
  3062.     global_system_variables.table_type= DB_TYPE_MYISAM;
  3063.   }
  3064.   if (argc > 0)
  3065.   {
  3066.     fprintf(stderr, "%s: Too many arguments (first extra is '%s').nUse --help to get a list of available optionsn", my_progname, *argv);
  3067.     /* FIXME add EXIT_TOO_MANY_ARGUMENTS to "mysys_err.h" and return that code? */
  3068.     exit(1);
  3069.   }
  3070.   if (opt_help)
  3071.   {
  3072.     usage();
  3073.     exit(0);
  3074.   }
  3075. #if !defined(HAVE_REALPATH) || defined(HAVE_BROKEN_REALPATH)
  3076.   my_use_symdir=0;
  3077.   my_disable_symlinks=1;
  3078.   have_symlink=SHOW_OPTION_NO;
  3079. #else
  3080.   if (!my_use_symdir)
  3081.   {
  3082.     my_disable_symlinks=1;
  3083.     have_symlink=SHOW_OPTION_DISABLED;
  3084.   }
  3085. #endif
  3086.   if (opt_debugging)
  3087.   {
  3088.     /* Allow break with SIGINT, no core or stack trace */
  3089.     test_flags|= TEST_SIGINT | TEST_NO_STACKTRACE;
  3090.     test_flags&= ~TEST_CORE_ON_SIGNAL;
  3091.   }
  3092.   /* Set global MyISAM variables from delay_key_write_options */
  3093.   fix_delay_key_write((THD*) 0, OPT_GLOBAL);
  3094. #ifndef EMBEDDED_LIBRARY
  3095.   if (mysqld_chroot)
  3096.     set_root(mysqld_chroot);
  3097. #else
  3098.   max_allowed_packet= global_system_variables.max_allowed_packet;
  3099.   net_buffer_length= global_system_variables.net_buffer_length;
  3100. #endif
  3101.   fix_paths();
  3102.   /*
  3103.     Set some global variables from the global_system_variables
  3104.     In most cases the global variables will not be used
  3105.   */
  3106.   my_disable_locking= myisam_single_user= test(opt_external_locking == 0);
  3107.   my_default_record_cache_size=global_system_variables.read_buff_size;
  3108.   myisam_max_temp_length=
  3109.     (my_off_t) global_system_variables.myisam_max_sort_file_size;
  3110.   myisam_max_extra_temp_length=
  3111.     (my_off_t) global_system_variables.myisam_max_extra_sort_file_size;
  3112.   /* Set global variables based on startup options */
  3113.   myisam_block_size=(uint) 1 << my_bit_log2(opt_myisam_block_size);
  3114.   if (opt_short_log_format)
  3115.     opt_specialflag|= SPECIAL_SHORT_LOG_FORMAT;
  3116.   if (opt_log_queries_not_using_indexes)
  3117.     opt_specialflag|= SPECIAL_LOG_QUERIES_NOT_USING_INDEXES;
  3118.   if (init_global_datetime_format(MYSQL_TIMESTAMP_DATE,
  3119.   &global_system_variables.date_format) ||
  3120.       init_global_datetime_format(MYSQL_TIMESTAMP_TIME,
  3121.   &global_system_variables.time_format) ||
  3122.       init_global_datetime_format(MYSQL_TIMESTAMP_DATETIME,
  3123.   &global_system_variables.datetime_format))
  3124.     exit(1);
  3125. }
  3126. /*
  3127.   Create version name for running mysqld version
  3128.   We automaticly add suffixes -debug, -embedded and -log to the version
  3129.   name to make the version more descriptive.
  3130.   (MYSQL_SERVER_SUFFIX is set by the compilation environment)
  3131. */
  3132. static void set_server_version(void)
  3133. {
  3134.   char *end= strxmov(server_version, MYSQL_SERVER_VERSION,
  3135.                      MYSQL_SERVER_SUFFIX_STR, NullS);
  3136. #ifdef EMBEDDED_LIBRARY
  3137.   end= strmov(end, "-embedded");
  3138. #endif
  3139. #ifndef DBUG_OFF
  3140.   if (!strstr(MYSQL_SERVER_SUFFIX_STR, "-debug"))
  3141.     end= strmov(end, "-debug");
  3142. #endif
  3143.   if (opt_log || opt_update_log || opt_slow_log || opt_bin_log)
  3144.     strmov(end, "-log");                        // This may slow down system
  3145. }
  3146. static char *get_relative_path(const char *path)
  3147. {
  3148.   if (test_if_hard_path(path) &&
  3149.       is_prefix(path,DEFAULT_MYSQL_HOME) &&
  3150.       strcmp(DEFAULT_MYSQL_HOME,FN_ROOTDIR))
  3151.   {
  3152.     path+=(uint) strlen(DEFAULT_MYSQL_HOME);
  3153.     while (*path == FN_LIBCHAR)
  3154.       path++;
  3155.   }
  3156.   return (char*) path;
  3157. }
  3158. /*
  3159.   Fix filename and replace extension where 'dir' is relative to
  3160.   mysql_real_data_home.
  3161.   Return 1 if len(path) > FN_REFLEN
  3162. */
  3163. bool
  3164. fn_format_relative_to_data_home(my_string to, const char *name,
  3165. const char *dir, const char *extension)
  3166. {
  3167.   char tmp_path[FN_REFLEN];
  3168.   if (!test_if_hard_path(dir))
  3169.   {
  3170.     strxnmov(tmp_path,sizeof(tmp_path)-1, mysql_real_data_home,
  3171.      dir, NullS);
  3172.     dir=tmp_path;
  3173.   }
  3174.   return !fn_format(to, name, dir, extension,
  3175.     MY_REPLACE_EXT | MY_UNPACK_FILENAME | MY_SAFE_PATH);
  3176. }
  3177. static void fix_paths(void)
  3178. {
  3179.   char buff[FN_REFLEN],*pos;
  3180.   convert_dirname(mysql_home,mysql_home,NullS);
  3181.   /* Resolve symlinks to allow 'mysql_home' to be a relative symlink */
  3182.   my_realpath(mysql_home,mysql_home,MYF(0));
  3183.   /* Ensure that mysql_home ends in FN_LIBCHAR */
  3184.   pos=strend(mysql_home);
  3185.   if (pos[-1] != FN_LIBCHAR)
  3186.   {
  3187.     pos[0]= FN_LIBCHAR;
  3188.     pos[1]= 0;
  3189.   }
  3190.   convert_dirname(mysql_real_data_home,mysql_real_data_home,NullS);
  3191.   convert_dirname(language,language,NullS);
  3192.   (void) my_load_path(mysql_home,mysql_home,""); // Resolve current dir
  3193.   (void) my_load_path(mysql_real_data_home,mysql_real_data_home,mysql_home);
  3194.   (void) my_load_path(pidfile_name,pidfile_name,mysql_real_data_home);
  3195.   char *sharedir=get_relative_path(SHAREDIR);
  3196.   if (test_if_hard_path(sharedir))
  3197.     strmake(buff,sharedir,sizeof(buff)-1); /* purecov: tested */
  3198.   else
  3199.     strxnmov(buff,sizeof(buff)-1,mysql_home,sharedir,NullS);
  3200.   convert_dirname(buff,buff,NullS);
  3201.   (void) my_load_path(language,language,buff);
  3202.   /* If --character-sets-dir isn't given, use shared library dir */
  3203.   if (charsets_dir != mysql_charsets_dir)
  3204.   {
  3205.     strxnmov(mysql_charsets_dir, sizeof(mysql_charsets_dir)-1, buff,
  3206.      CHARSET_DIR, NullS);
  3207.   }
  3208.   (void) my_load_path(mysql_charsets_dir, mysql_charsets_dir, buff);
  3209.   charsets_dir=mysql_charsets_dir;
  3210.   if (init_tmpdir(&mysql_tmpdir_list, opt_mysql_tmpdir))
  3211.     exit(1);
  3212. #ifdef HAVE_REPLICATION
  3213.   if (!slave_load_tmpdir)
  3214.   {
  3215.     if (!(slave_load_tmpdir = (char*) my_strdup(mysql_tmpdir, MYF(MY_FAE))))
  3216.       exit(1);
  3217.   }
  3218. #endif /* HAVE_REPLICATION */
  3219. }
  3220. /*
  3221.   Return a bitfield from a string of substrings separated by ','
  3222.   returns ~(ulong) 0 on error.
  3223. */
  3224. static ulong find_bit_type(const char *x, TYPELIB *bit_lib)
  3225. {
  3226.   bool found_end;
  3227.   int  found_count;
  3228.   const char *end,*i,*j;
  3229.   const char **array, *pos;
  3230.   ulong found,found_int,bit;
  3231.   DBUG_ENTER("find_bit_type");
  3232.   DBUG_PRINT("enter",("x: '%s'",x));
  3233.   found=0;
  3234.   found_end= 0;
  3235.   pos=(my_string) x;
  3236.   while (*pos == ' ') pos++;
  3237.   found_end= *pos == 0;
  3238.   while (!found_end)
  3239.   {
  3240.     if (!*(end=strcend(pos,','))) /* Let end point at fieldend */
  3241.     {
  3242.       while (end > pos && end[-1] == ' ')
  3243. end--; /* Skip end-space */
  3244.       found_end=1;
  3245.     }
  3246.     found_int=0; found_count=0;
  3247.     for (array=bit_lib->type_names, bit=1 ; (i= *array++) ; bit<<=1)
  3248.     {
  3249.       j=pos;
  3250.       while (j != end)
  3251.       {
  3252. if (my_toupper(mysqld_charset,*i++) !=
  3253.             my_toupper(mysqld_charset,*j++))
  3254.   goto skip;
  3255.       }
  3256.       found_int=bit;
  3257.       if (! *i)
  3258.       {
  3259. found_count=1;
  3260. break;
  3261.       }
  3262.       else if (j != pos) // Half field found
  3263.       {
  3264. found_count++; // Could be one of two values
  3265.       }
  3266. skip: ;
  3267.     }
  3268.     if (found_count != 1)
  3269.       DBUG_RETURN(~(ulong) 0); // No unique value
  3270.     found|=found_int;
  3271.     pos=end+1;
  3272.   }
  3273.   DBUG_PRINT("exit",("bit-field: %ld",(ulong) found));
  3274.   DBUG_RETURN(found);
  3275. } /* find_bit_type */
  3276. /*
  3277.   Check if file system used for databases is case insensitive
  3278.   SYNOPSIS
  3279.     test_if_case_sensitive()
  3280.     dir_name Directory to test
  3281.   RETURN
  3282.     -1  Don't know (Test failed)
  3283.     0   File system is case sensitive
  3284.     1   File system is case insensitive
  3285. */
  3286. static int test_if_case_insensitive(const char *dir_name)
  3287. {
  3288.   int result= 0;
  3289.   File file;
  3290.   char buff[FN_REFLEN], buff2[FN_REFLEN];
  3291.   MY_STAT stat_info;
  3292.   DBUG_ENTER("test_if_case_insensitive");
  3293.   fn_format(buff, glob_hostname, dir_name, ".lower-test",
  3294.     MY_UNPACK_FILENAME | MY_REPLACE_EXT | MY_REPLACE_DIR);
  3295.   fn_format(buff2, glob_hostname, dir_name, ".LOWER-TEST",
  3296.     MY_UNPACK_FILENAME | MY_REPLACE_EXT | MY_REPLACE_DIR);
  3297.   (void) my_delete(buff2, MYF(0));
  3298.   if ((file= my_create(buff, 0666, O_RDWR, MYF(0))) < 0)
  3299.   {
  3300.     sql_print_warning("Can't create test file %s", buff);
  3301.     DBUG_RETURN(-1);
  3302.   }
  3303.   my_close(file, MYF(0));
  3304.   if (my_stat(buff2, &stat_info, MYF(0)))
  3305.     result= 1; // Can access file
  3306.   (void) my_delete(buff, MYF(MY_WME));
  3307.   DBUG_PRINT("exit", ("result: %d", result));
  3308.   DBUG_RETURN(result);
  3309. }
  3310. /* Create file to store pid number */
  3311. static void create_pid_file()
  3312. {
  3313.   File file;
  3314.   if ((file = my_create(pidfile_name,0664,
  3315. O_WRONLY | O_TRUNC, MYF(MY_WME))) >= 0)
  3316.   {
  3317.     char buff[21], *end;
  3318.     end= int10_to_str((long) getpid(), buff, 10);
  3319.     *end++= 'n';
  3320.     if (!my_write(file, (byte*) buff, (uint) (end-buff), MYF(MY_WME | MY_NABP)))
  3321.     {
  3322.       (void) my_close(file, MYF(0));
  3323.       return;
  3324.     }
  3325.     (void) my_close(file, MYF(0));
  3326.   }
  3327.   sql_perror("Can't start server: can't create PID file");
  3328.   exit(1);  
  3329. }
  3330. /*****************************************************************************
  3331.   Instantiate templates
  3332. *****************************************************************************/
  3333. #ifdef __GNUC__
  3334. /* Used templates */
  3335. template class I_List<THD>;
  3336. template class I_List_iterator<THD>;
  3337. template class I_List<i_string>;
  3338. template class I_List<i_string_pair>;
  3339. template class I_List<NAMED_LIST>;
  3340. FIX_GCC_LINKING_PROBLEM
  3341. #endif