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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14. **    mysqlimport.c  - Imports all given files
  15. **     into a table(s).
  16. **
  17. **    *************************
  18. **    *    *
  19. **    * AUTHOR: Monty & Jani  *
  20. **    * DATE:   June 24, 1997 *
  21. **    *    *
  22. **    *************************
  23. */
  24. #define IMPORT_VERSION "3.5"
  25. #include "client_priv.h"
  26. #include "mysql_version.h"
  27. static void db_error_with_table(MYSQL *mysql, char *table);
  28. static void db_error(MYSQL *mysql);
  29. static char *field_escape(char *to,const char *from,uint length);
  30. static char *add_load_option(char *ptr,const char *object,
  31.      const char *statement);
  32. static my_bool verbose=0,lock_tables=0,ignore_errors=0,opt_delete=0,
  33. replace=0,silent=0,ignore=0,opt_compress=0,
  34.                 opt_low_priority= 0, tty_password= 0;
  35. static uint     opt_local_file=0;
  36. static MYSQL mysql_connection;
  37. static char *opt_password=0, *current_user=0,
  38. *current_host=0, *current_db=0, *fields_terminated=0,
  39. *lines_terminated=0, *enclosed=0, *opt_enclosed=0,
  40. *escaped=0, *opt_columns=0, 
  41. *default_charset= (char*) MYSQL_DEFAULT_CHARSET_NAME;
  42. static uint     opt_mysql_port= 0, opt_protocol= 0;
  43. static my_string opt_mysql_unix_port=0;
  44. static longlong opt_ignore_lines= -1;
  45. static CHARSET_INFO *charset_info= &my_charset_latin1;
  46. #include <sslopt-vars.h>
  47. #ifdef HAVE_SMEM
  48. static char *shared_memory_base_name=0;
  49. #endif
  50. static struct my_option my_long_options[] =
  51. {
  52. #ifdef __NETWARE__
  53.   {"auto-close", OPT_AUTO_CLOSE, "Auto close the screen on exit for Netware.",
  54.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  55. #endif
  56.   {"character-sets-dir", OPT_CHARSETS_DIR,
  57.    "Directory where character sets are.", (gptr*) &charsets_dir,
  58.    (gptr*) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  59.   {"default-character-set", OPT_DEFAULT_CHARSET,
  60.    "Set the default character set.", (gptr*) &default_charset,
  61.    (gptr*) &default_charset, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  62.   {"columns", 'c',
  63.    "Use only these columns to import the data to. Give the column names in a comma separated list. This is same as giving columns to LOAD DATA INFILE.",
  64.    (gptr*) &opt_columns, (gptr*) &opt_columns, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
  65.    0, 0, 0},
  66.   {"compress", 'C', "Use compression in server/client protocol.",
  67.    (gptr*) &opt_compress, (gptr*) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
  68.    0, 0, 0},
  69.   {"debug",'#', "Output debug log. Often this is 'd:t:o,filename'.", 0, 0, 0,
  70.    GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  71.   {"delete", 'd', "First delete all rows from table.", (gptr*) &opt_delete,
  72.    (gptr*) &opt_delete, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  73.   {"fields-terminated-by", OPT_FTB,
  74.    "Fields in the textfile are terminated by ...", (gptr*) &fields_terminated,
  75.    (gptr*) &fields_terminated, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  76.   {"fields-enclosed-by", OPT_ENC,
  77.    "Fields in the importfile are enclosed by ...", (gptr*) &enclosed,
  78.    (gptr*) &enclosed, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  79.   {"fields-optionally-enclosed-by", OPT_O_ENC,
  80.    "Fields in the i.file are opt. enclosed by ...", (gptr*) &opt_enclosed,
  81.    (gptr*) &opt_enclosed, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  82.   {"fields-escaped-by", OPT_ESC, "Fields in the i.file are escaped by ...",
  83.    (gptr*) &escaped, (gptr*) &escaped, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0,
  84.    0, 0},
  85.   {"force", 'f', "Continue even if we get an sql-error.",
  86.    (gptr*) &ignore_errors, (gptr*) &ignore_errors, 0, GET_BOOL, NO_ARG, 0, 0,
  87.    0, 0, 0, 0},
  88.   {"help", '?', "Displays this help and exits.", 0, 0, 0, GET_NO_ARG, NO_ARG,
  89.    0, 0, 0, 0, 0, 0},
  90.   {"host", 'h', "Connect to host.", (gptr*) &current_host,
  91.    (gptr*) &current_host, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  92.   {"ignore", 'i', "If duplicate unique key was found, keep old row.",
  93.    (gptr*) &ignore, (gptr*) &ignore, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  94.   {"ignore-lines", OPT_IGN_LINES, "Ignore first n lines of data infile.",
  95.    (gptr*) &opt_ignore_lines, (gptr*) &opt_ignore_lines, 0, GET_LL,
  96.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  97.   {"lines-terminated-by", OPT_LTB, "Lines in the i.file are terminated by ...",
  98.    (gptr*) &lines_terminated, (gptr*) &lines_terminated, 0, GET_STR,
  99.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  100.   {"local", 'L', "Read all files through the client.", (gptr*) &opt_local_file,
  101.    (gptr*) &opt_local_file, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  102.   {"lock-tables", 'l', "Lock all tables for write.", (gptr*) &lock_tables,
  103.    (gptr*) &lock_tables, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  104.   {"low-priority", OPT_LOW_PRIORITY,
  105.    "Use LOW_PRIORITY when updating the table.", (gptr*) &opt_low_priority,
  106.    (gptr*) &opt_low_priority, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  107.   {"password", 'p',
  108.    "Password to use when connecting to server. If password is not given it's asked from the tty.",
  109.    0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  110. #ifdef __WIN__
  111.   {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
  112.    NO_ARG, 0, 0, 0, 0, 0, 0},
  113. #endif
  114.   {"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
  115.    (gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, MYSQL_PORT, 0, 0, 0, 0,
  116.    0},
  117.   {"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
  118.    0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  119.   {"replace", 'r', "If duplicate unique key was found, replace old row.",
  120.    (gptr*) &replace, (gptr*) &replace, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  121. #ifdef HAVE_SMEM
  122.   {"shared-memory-base-name", OPT_SHARED_MEMORY_BASE_NAME,
  123.    "Base name of shared memory.", (gptr*) &shared_memory_base_name, (gptr*) &shared_memory_base_name,
  124.    0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  125. #endif
  126.   {"silent", 's', "Be more silent.", (gptr*) &silent, (gptr*) &silent, 0,
  127.    GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  128.   {"socket", 'S', "Socket file to use for connection.",
  129.    (gptr*) &opt_mysql_unix_port, (gptr*) &opt_mysql_unix_port, 0, GET_STR,
  130.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  131. #include <sslopt-longopts.h>
  132. #ifndef DONT_ALLOW_USER_CHANGE
  133.   {"user", 'u', "User for login if not current user.", (gptr*) &current_user,
  134.    (gptr*) &current_user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  135. #endif
  136.   {"verbose", 'v', "Print info about the various stages.", (gptr*) &verbose,
  137.    (gptr*) &verbose, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  138.   {"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG,
  139.    NO_ARG, 0, 0, 0, 0, 0, 0},
  140.   { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  141. };
  142. static const char *load_default_groups[]= { "mysqlimport","client",0 };
  143. #include <help_start.h>
  144. static void print_version(void)
  145. {
  146.   printf("%s  Ver %s Distrib %s, for %s (%s)n" ,my_progname,
  147.   IMPORT_VERSION, MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  148.   NETWARE_SET_SCREEN_MODE(1);
  149. }
  150. static void usage(void)
  151. {
  152.   print_version();
  153.   puts("Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB");
  154.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,nand you are welcome to modify and redistribute it under the GPL licensen");
  155.   printf("
  156. Loads tables from text files in various formats.  The base name of then
  157. text file must be the name of the table that should be used.n
  158. If one uses sockets to connect to the MySQL server, the server will open andn
  159. read the text file directly. In other cases the client will open the textn
  160. file. The SQL command 'LOAD DATA INFILE' is used to import the rows.n");
  161.   printf("nUsage: %s [OPTIONS] database textfile...",my_progname);
  162.   print_defaults("my",load_default_groups);
  163.   my_print_help(my_long_options);
  164.   my_print_variables(my_long_options);
  165. }
  166. #include <help_end.h>
  167. static my_bool
  168. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  169.        char *argument)
  170. {
  171.   switch(optid) {
  172. #ifdef __NETWARE__
  173.   case OPT_AUTO_CLOSE:
  174.     setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
  175.     break;
  176. #endif
  177.   case 'p':
  178.     if (argument)
  179.     {
  180.       char *start=argument;
  181.       my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  182.       opt_password=my_strdup(argument,MYF(MY_FAE));
  183.       while (*argument) *argument++= 'x'; /* Destroy argument */
  184.       if (*start)
  185. start[1]=0; /* Cut length of argument */
  186.       tty_password= 0;
  187.     }
  188.     else
  189.       tty_password= 1;
  190.     break;
  191. #ifdef __WIN__
  192.   case 'W':
  193.     opt_protocol = MYSQL_PROTOCOL_PIPE;
  194.     opt_local_file=1;
  195.     break;
  196. #endif
  197.   case OPT_MYSQL_PROTOCOL:
  198.   {
  199.     if ((opt_protocol= find_type(argument, &sql_protocol_typelib,0)) <= 0)
  200.     {
  201.       fprintf(stderr, "Unknown option to protocol: %sn", argument);
  202.       exit(1);
  203.     }
  204.     break;
  205.   }
  206.   case '#':
  207.     DBUG_PUSH(argument ? argument : "d:t:o");
  208.     break;
  209. #include <sslopt-case.h>
  210.   case 'V': print_version(); exit(0);
  211.   case 'I':
  212.   case '?':
  213.     usage();
  214.     exit(0);
  215.   }
  216.   return 0;
  217. }
  218. static int get_options(int *argc, char ***argv)
  219. {
  220.   int ho_error;
  221.   if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
  222.     exit(ho_error);
  223.   if (enclosed && opt_enclosed)
  224.   {
  225.     fprintf(stderr, "You can't use ..enclosed.. and ..optionally-enclosed.. at the same time.n");
  226.     return(1);
  227.   }
  228.   if (replace && ignore)
  229.   {
  230.     fprintf(stderr, "You can't use --ignore (-i) and --replace (-r) at the same time.n");
  231.     return(1);
  232.   }
  233.   if (strcmp(default_charset, charset_info->csname) &&
  234.       !(charset_info= get_charset_by_csname(default_charset,
  235.        MY_CS_PRIMARY, MYF(MY_WME))))
  236.     exit(1);
  237.   if (*argc < 2)
  238.   {
  239.     usage();
  240.     return 1;
  241.   }
  242.   current_db= *((*argv)++);
  243.   (*argc)--;
  244.   if (tty_password)
  245.     opt_password=get_tty_password(NullS);
  246.   return(0);
  247. }
  248. static int write_to_table(char *filename, MYSQL *sock)
  249. {
  250.   char tablename[FN_REFLEN], hard_path[FN_REFLEN],
  251.        sql_statement[FN_REFLEN*16+256], *end;
  252.   DBUG_ENTER("write_to_table");
  253.   DBUG_PRINT("enter",("filename: %s",filename));
  254.   fn_format(tablename, filename, "", "", 1 | 2); /* removes path & ext. */
  255.   if (! opt_local_file)
  256.     strmov(hard_path,filename);
  257.   else
  258.     my_load_path(hard_path, filename, NULL); /* filename includes the path */
  259.   if (opt_delete)
  260.   {
  261.     if (verbose)
  262.       fprintf(stdout, "Deleting the old data from table %sn", tablename);
  263.     sprintf(sql_statement, "DELETE FROM %s", tablename);
  264.     if (mysql_query(sock, sql_statement))
  265.     {
  266.       db_error_with_table(sock, tablename);
  267.       DBUG_RETURN(1);
  268.     }
  269.   }
  270.   to_unix_path(hard_path);
  271.   if (verbose)
  272.   {
  273.     if (opt_local_file)
  274.       fprintf(stdout, "Loading data from LOCAL file: %s into %sn",
  275.       hard_path, tablename);
  276.     else
  277.       fprintf(stdout, "Loading data from SERVER file: %s into %sn",
  278.       hard_path, tablename);
  279.   }
  280.   sprintf(sql_statement, "LOAD DATA %s %s INFILE '%s'",
  281.   opt_low_priority ? "LOW_PRIORITY" : "",
  282.   opt_local_file ? "LOCAL" : "", hard_path);
  283.   end= strend(sql_statement);
  284.   if (replace)
  285.     end= strmov(end, " REPLACE");
  286.   if (ignore)
  287.     end= strmov(end, " IGNORE");
  288.   end= strmov(strmov(end, " INTO TABLE "), tablename);
  289.   if (fields_terminated || enclosed || opt_enclosed || escaped)
  290.       end= strmov(end, " FIELDS");
  291.   end= add_load_option(end, fields_terminated, " TERMINATED BY");
  292.   end= add_load_option(end, enclosed, " ENCLOSED BY");
  293.   end= add_load_option(end, opt_enclosed,
  294.        " OPTIONALLY ENCLOSED BY");
  295.   end= add_load_option(end, escaped, " ESCAPED BY");
  296.   end= add_load_option(end, lines_terminated, " LINES TERMINATED BY");
  297.   if (opt_ignore_lines >= 0)
  298.     end= strmov(longlong10_to_str(opt_ignore_lines, 
  299.   strmov(end, " IGNORE "),10), " LINES");
  300.   if (opt_columns)
  301.     end= strmov(strmov(strmov(end, " ("), opt_columns), ")");
  302.   *end= '';
  303.   if (mysql_query(sock, sql_statement))
  304.   {
  305.     db_error_with_table(sock, tablename);
  306.     DBUG_RETURN(1);
  307.   }
  308.   if (!silent)
  309.   {
  310.     if (mysql_info(sock)) /* If NULL-pointer, print nothing */
  311.     {
  312.       fprintf(stdout, "%s.%s: %sn", current_db, tablename,
  313.       mysql_info(sock));
  314.     }
  315.   }
  316.   DBUG_RETURN(0);
  317. }
  318. static void lock_table(MYSQL *sock, int tablecount, char **raw_tablename)
  319. {
  320.   DYNAMIC_STRING query;
  321.   int i;
  322.   char tablename[FN_REFLEN];
  323.   if (verbose)
  324.     fprintf(stdout, "Locking tables for writen");
  325.   init_dynamic_string(&query, "LOCK TABLES ", 256, 1024);
  326.   for (i=0 ; i < tablecount ; i++)
  327.   {
  328.     fn_format(tablename, raw_tablename[i], "", "", 1 | 2);
  329.     dynstr_append(&query, tablename);
  330.     dynstr_append(&query, " WRITE,");
  331.   }
  332.   if (mysql_real_query(sock, query.str, query.length-1))
  333.     db_error(sock); /* We shall countinue here, if --force was given */
  334. }
  335. static MYSQL *db_connect(char *host, char *database, char *user, char *passwd)
  336. {
  337.   MYSQL *sock;
  338.   if (verbose)
  339.     fprintf(stdout, "Connecting to %sn", host ? host : "localhost");
  340.   mysql_init(&mysql_connection);
  341.   if (opt_compress)
  342.     mysql_options(&mysql_connection,MYSQL_OPT_COMPRESS,NullS);
  343.   if (opt_local_file)
  344.     mysql_options(&mysql_connection,MYSQL_OPT_LOCAL_INFILE,
  345.   (char*) &opt_local_file);
  346. #ifdef HAVE_OPENSSL
  347.   if (opt_use_ssl)
  348.     mysql_ssl_set(&mysql_connection, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
  349.   opt_ssl_capath, opt_ssl_cipher);
  350. #endif
  351.   if (opt_protocol)
  352.     mysql_options(&mysql_connection,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
  353. #ifdef HAVE_SMEM
  354.   if (shared_memory_base_name)
  355.     mysql_options(&mysql_connection,MYSQL_SHARED_MEMORY_BASE_NAME,shared_memory_base_name);
  356. #endif
  357.   if (!(sock= mysql_real_connect(&mysql_connection,host,user,passwd,
  358.  database,opt_mysql_port,opt_mysql_unix_port,
  359.  0)))
  360.   {
  361.     ignore_errors=0;   /* NO RETURN FROM db_error */
  362.     db_error(&mysql_connection);
  363.   }
  364.   if (verbose)
  365.     fprintf(stdout, "Selecting database %sn", database);
  366.   if (mysql_select_db(sock, database))
  367.   {
  368.     ignore_errors=0;
  369.     db_error(&mysql_connection);
  370.   }
  371.   return sock;
  372. }
  373. static void db_disconnect(char *host, MYSQL *sock)
  374. {
  375.   if (verbose)
  376.     fprintf(stdout, "Disconnecting from %sn", host ? host : "localhost");
  377.   mysql_close(sock);
  378. }
  379. static void safe_exit(int error, MYSQL *sock)
  380. {
  381.   if (ignore_errors)
  382.     return;
  383.   if (sock)
  384.     mysql_close(sock);
  385.   exit(error);
  386. }
  387. static void db_error_with_table(MYSQL *mysql, char *table)
  388. {
  389.   my_printf_error(0,"Error: %s, when using table: %s",
  390.   MYF(0), mysql_error(mysql), table);
  391.   safe_exit(1, mysql);
  392. }
  393. static void db_error(MYSQL *mysql)
  394. {
  395.   my_printf_error(0,"Error: %s", MYF(0), mysql_error(mysql));
  396.   safe_exit(1, mysql);
  397. }
  398. static char *add_load_option(char *ptr, const char *object,
  399.      const char *statement)
  400. {
  401.   if (object)
  402.   {
  403.     /* Don't escape hex constants */
  404.     if (object[0] == '0' && (object[1] == 'x' || object[1] == 'X'))
  405.       ptr= strxmov(ptr," ",statement," ",object,NullS);
  406.     else
  407.     {
  408.       /* char constant; escape */
  409.       ptr= strxmov(ptr," ",statement," '",NullS);
  410.       ptr= field_escape(ptr,object,(uint) strlen(object));
  411.       *ptr++= ''';
  412.     }
  413.   }
  414.   return ptr;
  415. }
  416. /*
  417. ** Allow the user to specify field terminator strings like:
  418. ** "'", "", "\" (escaped backslash), "t" (tab), "n" (newline)
  419. ** This is done by doubleing ' and add a end - if needed to avoid
  420. ** syntax errors from the SQL parser.
  421. */ 
  422. static char *field_escape(char *to,const char *from,uint length)
  423. {
  424.   const char *end;
  425.   uint end_backslashes=0; 
  426.   for (end= from+length; from != end; from++)
  427.   {
  428.     *to++= *from;
  429.     if (*from == '\')
  430.       end_backslashes^=1;    /* find odd number of backslashes */
  431.     else 
  432.     {
  433.       if (*from == ''' && !end_backslashes)
  434. *to++= *from;      /* We want a dublicate of "'" for MySQL */
  435.       end_backslashes=0;
  436.     }
  437.   }
  438.   /* Add missing backslashes if user has specified odd number of backs.*/
  439.   if (end_backslashes)
  440.     *to++= '\';          
  441.   return to;
  442. }
  443. int main(int argc, char **argv)
  444. {
  445.   int exitcode=0, error=0;
  446.   char **argv_to_free;
  447.   MYSQL *sock=0;
  448.   MY_INIT(argv[0]);
  449.   load_defaults("my",load_default_groups,&argc,&argv);
  450.   /* argv is changed in the program */
  451.   argv_to_free= argv;
  452.   if (get_options(&argc, &argv))
  453.   {
  454.     free_defaults(argv_to_free);
  455.     return(1);
  456.   }
  457.   if (!(sock= db_connect(current_host,current_db,current_user,opt_password)))
  458.   {
  459.     free_defaults(argv_to_free);
  460.     return(1); /* purecov: deadcode */
  461.   }
  462.   if (mysql_query(sock, "set @@character_set_database=binary;"))
  463.   {
  464.     db_error(sock); /* We shall countinue here, if --force was given */
  465.     return(1);
  466.   }
  467.   if (lock_tables)
  468.     lock_table(sock, argc, argv);
  469.   for (; *argv != NULL; argv++)
  470.     if ((error=write_to_table(*argv, sock)))
  471.       if (exitcode == 0)
  472. exitcode = error;
  473.   db_disconnect(current_host, sock);
  474.   my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  475. #ifdef HAVE_SMEM
  476.   my_free(shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR));
  477. #endif
  478.   free_defaults(argv_to_free);
  479.   my_end(0);
  480.   return(exitcode);
  481. }