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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Create a MERGE-file */
  14. #include "mrg_def.h"
  15. /* create file named 'name' and save filenames in it
  16.    table_names should be NULL or a vector of string-pointers with
  17.    a NULL-pointer last
  18.    */
  19. int mrg_create(const char *name, const char**table_names)
  20. {
  21.   int save_errno;
  22.   uint errpos;
  23.   File file;
  24.   char buff[FN_REFLEN],*end;
  25.   DBUG_ENTER("mrg_create");
  26.   errpos=0;
  27.   if ((file = my_create(fn_format(buff,name,"",MRG_NAME_EXT,4),0,
  28.        O_RDWR | O_EXCL | O_NOFOLLOW,MYF(MY_WME))) < 0)
  29.     goto err;
  30.   errpos=1;
  31.   if (table_names)
  32.     for ( ; *table_names ; table_names++)
  33.     {
  34.       strmov(buff,*table_names);
  35.       fn_same(buff,name,4);
  36.       *(end=strend(buff))='n';
  37.       if (my_write(file,*table_names,(uint) (end-buff+1),
  38.    MYF(MY_WME | MY_NABP)))
  39. goto err;
  40.     }
  41.   if (my_close(file,MYF(0)))
  42.     goto err;
  43.   DBUG_RETURN(0);
  44. err:
  45.   save_errno=my_errno;
  46.   switch (errpos) {
  47.   case 1:
  48.     VOID(my_close(file,MYF(0)));
  49.   }
  50.   my_errno=save_errno; /* Return right errocode */
  51.   DBUG_RETURN(-1);
  52. } /* mrg_create */