ha_myisammrg.cc 42.5 KB
Newer Older
1
/* Copyright (C) 2000-2006 MySQL AB
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6

bk@work.mysql.com's avatar
bk@work.mysql.com committed
7 8 9 10
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
11

bk@work.mysql.com's avatar
bk@work.mysql.com committed
12 13 14 15 16
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
/*
  MyISAM MERGE tables

  A MyISAM MERGE table is kind of a union of zero or more MyISAM tables.

  Besides the normal form file (.frm) a MERGE table has a meta file
  (.MRG) with a list of tables. These are paths to the MyISAM table
  files. The last two components of the path contain the database name
  and the table name respectively.

  When a MERGE table is open, there exists an TABLE object for the MERGE
  table itself and a TABLE object for each of the MyISAM tables. For
  abbreviated writing, I call the MERGE table object "parent" and the
  MyISAM table objects "children".

  A MERGE table is almost always opened through open_and_lock_tables()
  and hence through open_tables(). When the parent appears in the list
  of tables to open, the initial open of the handler does nothing but
  read the meta file and collect a list of TABLE_LIST objects for the
  children. This list is attached to the parent TABLE object as
  TABLE::child_l. The end of the children list is saved in
  TABLE::child_last_l.

  Back in open_tables(), add_merge_table_list() is called. It updates
  each list member with the lock type and a back pointer to the parent
  TABLE_LIST object TABLE_LIST::parent_l. The list is then inserted in
  the list of tables to open, right behind the parent. Consequently,
  open_tables() opens the children, one after the other. The TABLE
  references of the TABLE_LIST objects are implicitly set to the open
  tables. The children are opened as independent MyISAM tables, right as
  if they are used by the SQL statement.

  TABLE_LIST::parent_l is required to find the parent 1. when the last
  child has been opened and children are to be attached, and 2. when an
  error happens during child open and the child list must be removed
  from the queuery list. In these cases the current child does not have
  TABLE::parent set or does not have a TABLE at all respectively.

  When the last child is open, attach_merge_children() is called. It
  removes the list of children from the open list. Then the children are
  "attached" to the parent. All required references between parent and
  children are set up.

  The MERGE storage engine sets up an array with references to the
  low-level MyISAM table objects (MI_INFO). It remembers the state of
  the table in MYRG_INFO::children_attached.

  Every child TABLE::parent references the parent TABLE object. That way
  TABLE objects belonging to a MERGE table can be identified.
  TABLE::parent is required because the parent and child TABLE objects
  can live longer than the parent TABLE_LIST object. So the path
  child->pos_in_table_list->parent_l->table can be broken.

  If necessary, the compatibility of parent and children is checked.
  This check is necessary when any of the objects are reopend. This is
  detected by comparing the current table def version against the
  remembered child def version. On parent open, the list members are
  initialized to an "impossible"/"undefined" version value. So the check
  is always executed on the first attach.

  The version check is done in myisammrg_attach_children_callback(),
  which is called for every child. ha_myisammrg::attach_children()
  initializes 'need_compat_check' to FALSE and
  myisammrg_attach_children_callback() sets it ot TRUE if a table
  def version mismatches the remembered child def version.

  Finally the parent TABLE::children_attached is set.

  ---

  On parent open the storage engine structures are allocated and initialized.
  They stay with the open table until its final close.


*/

93
#ifdef USE_PRAGMA_IMPLEMENTATION
bk@work.mysql.com's avatar
bk@work.mysql.com committed
94 95 96
#pragma implementation				// gcc: Class implementation
#endif

97
#define MYSQL_SERVER 1
bk@work.mysql.com's avatar
bk@work.mysql.com committed
98
#include "mysql_priv.h"
99
#include "probes_mysql.h"
100
#include <mysql/plugin.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
101
#include <m_ctype.h>
102
#include "../myisam/ha_myisam.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
103
#include "ha_myisammrg.h"
104
#include "myrg_def.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105

acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
106

107 108
static handler *myisammrg_create_handler(handlerton *hton,
                                         TABLE_SHARE *table,
109
                                         MEM_ROOT *mem_root)
110
{
111
  return new (mem_root) ha_myisammrg(hton, table);
112 113
}

114

115 116 117 118
/**
  @brief Constructor
*/

119
ha_myisammrg::ha_myisammrg(handlerton *hton, TABLE_SHARE *table_arg)
120
  :handler(hton, table_arg), file(0), is_cloned(0)
121 122
{}

123 124 125 126 127 128 129 130 131

/**
  @brief Destructor
*/

ha_myisammrg::~ha_myisammrg(void)
{}


132 133 134 135
static const char *ha_myisammrg_exts[] = {
  ".MRG",
  NullS
};
136 137 138 139 140
extern int table2myisam(TABLE *table_arg, MI_KEYDEF **keydef_out,
                        MI_COLUMNDEF **recinfo_out, uint *records_out);
extern int check_definition(MI_KEYDEF *t1_keyinfo, MI_COLUMNDEF *t1_recinfo,
                            uint t1_keys, uint t1_recs,
                            MI_KEYDEF *t2_keyinfo, MI_COLUMNDEF *t2_recinfo,
141 142
                            uint t2_keys, uint t2_recs, bool strict,
                            TABLE *table_arg);
143 144 145 146
static void split_file_name(const char *file_name,
			    LEX_STRING *db, LEX_STRING *name);


147 148
extern "C" void myrg_print_wrong_table(const char *table_name)
{
149 150 151 152 153 154 155
  LEX_STRING db, name;
  char buf[FN_REFLEN];
  split_file_name(table_name, &db, &name);
  memcpy(buf, db.str, db.length);
  buf[db.length]= '.';
  memcpy(buf + db.length + 1, name.str, name.length);
  buf[db.length + name.length + 1]= 0;
Marc Alff's avatar
Marc Alff committed
156
  push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
157
                      ER_ADMIN_WRONG_MRG_TABLE, ER(ER_ADMIN_WRONG_MRG_TABLE),
158
                      buf);
159 160
}

161

bk@work.mysql.com's avatar
bk@work.mysql.com committed
162
const char **ha_myisammrg::bas_ext() const
163 164 165 166
{
  return ha_myisammrg_exts;
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
167

168 169 170 171 172 173 174 175 176 177 178
const char *ha_myisammrg::index_type(uint key_number)
{
  return ((table->key_info[key_number].flags & HA_FULLTEXT) ? 
	  "FULLTEXT" :
	  (table->key_info[key_number].flags & HA_SPATIAL) ?
	  "SPATIAL" :
	  (table->key_info[key_number].algorithm == HA_KEY_ALG_RTREE) ?
	  "RTREE" :
	  "BTREE");
}

179

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
/**
  @brief Callback function for open of a MERGE parent table.

  @detail This function adds a TABLE_LIST object for a MERGE child table
    to a list of tables of the parent TABLE object. It is called for
    each child table.

    The list of child TABLE_LIST objects is kept in the TABLE object of
    the parent for the whole life time of the MERGE table. It is
    inserted in the statement list behind the MERGE parent TABLE_LIST
    object when the MERGE table is opened. It is removed from the
    statement list after the last child is opened.

    All memeory used for the child TABLE_LIST objects and the strings
    referred by it are taken from the parent TABLE::mem_root. Thus they
    are all freed implicitly at the final close of the table.

    TABLE::child_l -> TABLE_LIST::next_global -> TABLE_LIST::next_global
    #                 #               ^          #               ^
    #                 #               |          #               |
    #                 #               +--------- TABLE_LIST::prev_global
    #                 #                                          |
    #           |<--- TABLE_LIST::prev_global                    |
    #                                                            |
    TABLE::child_last_l -----------------------------------------+

  @param[in]    callback_param  data pointer as given to myrg_parent_open()
  @param[in]    filename        file name of MyISAM table
                                without extension.

  @return status
    @retval     0               OK
    @retval     != 0            Error
*/

static int myisammrg_parent_open_callback(void *callback_param,
                                          const char *filename)
{
  ha_myisammrg  *ha_myrg;
  TABLE         *parent;
  TABLE_LIST    *child_l;
  const char    *db;
  const char    *table_name;
223
  size_t        dirlen;
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
  char          dir_path[FN_REFLEN];
  DBUG_ENTER("myisammrg_parent_open_callback");

  /* Extract child table name and database name from filename. */
  dirlen= dirname_length(filename);
  if (dirlen >= FN_REFLEN)
  {
    /* purecov: begin inspected */
    DBUG_PRINT("error", ("name too long: '%.64s'", filename));
    my_errno= ENAMETOOLONG;
    DBUG_RETURN(1);
    /* purecov: end */
  }
  table_name= filename + dirlen;
  dirlen--; /* Strip off trailing '/'. */
  memcpy(dir_path, filename, dirlen);
  dir_path[dirlen]= '\0';
  db= base_name(dir_path);
  dirlen-= db - dir_path; /* This is now the length of 'db'. */
  DBUG_PRINT("myrg", ("open: '%s'.'%s'", db, table_name));

  ha_myrg= (ha_myisammrg*) callback_param;
  parent= ha_myrg->table_ptr();

  /* Get a TABLE_LIST object. */
  if (!(child_l= (TABLE_LIST*) alloc_root(&parent->mem_root,
                                          sizeof(TABLE_LIST))))
  {
    /* purecov: begin inspected */
    DBUG_PRINT("error", ("my_malloc error: %d", my_errno));
    DBUG_RETURN(1);
    /* purecov: end */
  }
  bzero((char*) child_l, sizeof(TABLE_LIST));

  /* Set database (schema) name. */
  child_l->db_length= dirlen;
  child_l->db= strmake_root(&parent->mem_root, db, dirlen);
  /* Set table name. */
  child_l->table_name_length= strlen(table_name);
  child_l->table_name= strmake_root(&parent->mem_root, table_name,
                                    child_l->table_name_length);
  /* Convert to lowercase if required. */
  if (lower_case_table_names && child_l->table_name_length)
    child_l->table_name_length= my_casedn_str(files_charset_info,
                                              child_l->table_name);
  /* Set alias. */
  child_l->alias= child_l->table_name;

  /* Initialize table map to 'undefined'. */
  child_l->init_child_def_version();

  /* Link TABLE_LIST object into the parent list. */
  if (!parent->child_last_l)
  {
    /* Initialize parent->child_last_l when handling first child. */
    parent->child_last_l= &parent->child_l;
  }
  *parent->child_last_l= child_l;
  child_l->prev_global= parent->child_last_l;
  parent->child_last_l= &child_l->next_global;

  DBUG_RETURN(0);
}


/**
  @brief Callback function for attaching a MERGE child table.

  @detail This function retrieves the MyISAM table handle from the
    next child table. It is called for each child table.

  @param[in]    callback_param      data pointer as given to
                                    myrg_attach_children()

  @return       pointer to open MyISAM table structure
    @retval     !=NULL                  OK, returning pointer
    @retval     NULL, my_errno == 0     Ok, no more child tables
    @retval     NULL, my_errno != 0     error
*/

static MI_INFO *myisammrg_attach_children_callback(void *callback_param)
{
  ha_myisammrg  *ha_myrg;
  TABLE         *parent;
  TABLE         *child;
  TABLE_LIST    *child_l;
  MI_INFO       *myisam;
  DBUG_ENTER("myisammrg_attach_children_callback");

  my_errno= 0;
  ha_myrg= (ha_myisammrg*) callback_param;
  parent= ha_myrg->table_ptr();

  /* Get child list item. */
  child_l= ha_myrg->next_child_attach;
  if (!child_l)
  {
    DBUG_PRINT("myrg", ("No more children to attach"));
    DBUG_RETURN(NULL);
  }
  child= child_l->table;
  DBUG_PRINT("myrg", ("child table: '%s'.'%s' 0x%lx", child->s->db.str,
                      child->s->table_name.str, (long) child));
  /*
    Prepare for next child. Used as child_l in next call to this function.
    We cannot rely on a NULL-terminated chain.
  */
  if (&child_l->next_global == parent->child_last_l)
  {
    DBUG_PRINT("myrg", ("attaching last child"));
    ha_myrg->next_child_attach= NULL;
  }
  else
    ha_myrg->next_child_attach= child_l->next_global;

  /* Set parent reference. */
  child->parent= parent;

  /*
    Do a quick compatibility check. The table def version is set when
    the table share is created. The child def version is copied
    from the table def version after a sucessful compatibility check.
    We need to repeat the compatibility check only if a child is opened
    from a different share than last time it was used with this MERGE
    table.
  */
  DBUG_PRINT("myrg", ("table_def_version last: %lu  current: %lu",
                      (ulong) child_l->get_child_def_version(),
                      (ulong) child->s->get_table_def_version()));
  if (child_l->get_child_def_version() != child->s->get_table_def_version())
    ha_myrg->need_compat_check= TRUE;

  /*
    If parent is temporary, children must be temporary too and vice
    versa. This check must be done for every child on every open because
    the table def version can overlap between temporary and
    non-temporary tables. We need to detect the case where a
    non-temporary table has been replaced with a temporary table of the
    same version. Or vice versa. A very unlikely case, but it could
    happen.
  */
  if (child->s->tmp_table != parent->s->tmp_table)
  {
    DBUG_PRINT("error", ("temporary table mismatch parent: %d  child: %d",
                         parent->s->tmp_table, child->s->tmp_table));
    my_errno= HA_ERR_WRONG_MRG_TABLE_DEF;
    goto err;
  }

  /* Extract the MyISAM table structure pointer from the handler object. */
  if ((child->file->ht->db_type != DB_TYPE_MYISAM) ||
      !(myisam= ((ha_myisam*) child->file)->file_ptr()))
  {
    DBUG_PRINT("error", ("no MyISAM handle for child table: '%s'.'%s' 0x%lx",
                         child->s->db.str, child->s->table_name.str,
                         (long) child));
    my_errno= HA_ERR_WRONG_MRG_TABLE_DEF;
  }
  DBUG_PRINT("myrg", ("MyISAM handle: 0x%lx  my_errno: %d",
                      (long) myisam, my_errno));

 err:
  DBUG_RETURN(my_errno ? NULL : myisam);
}


/**
  @brief Open a MERGE parent table, not its children.

  @detail This function initializes the MERGE storage engine structures
    and adds a child list of TABLE_LIST to the parent TABLE.

  @param[in]    name            MERGE table path name
  @param[in]    mode            read/write mode, unused
  @param[in]    test_if_locked  open flags

  @return       status
    @retval     0               OK
    @retval     -1              Error, my_errno gives reason
*/

int ha_myisammrg::open(const char *name, int mode __attribute__((unused)),
                       uint test_if_locked)
{
  DBUG_ENTER("ha_myisammrg::open");
  DBUG_PRINT("myrg", ("name: '%s'  table: 0x%lx", name, (long) table));
  DBUG_PRINT("myrg", ("test_if_locked: %u", test_if_locked));

  /* Save for later use. */
  this->test_if_locked= test_if_locked;

  /* retrieve children table list. */
  my_errno= 0;
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
  if (is_cloned)
  {
    /*
      Open and attaches the MyISAM tables,that are under the MERGE table 
      parent, on the MyISAM storage engine interface directly within the
      MERGE engine. The new MyISAM table instances, as well as the MERGE 
      clone itself, are not visible in the table cache. This is not a 
      problem because all locking is handled by the original MERGE table
      from which this is cloned of.
    */
    if (!(file= myrg_open(table->s->normalized_path.str, table->db_stat, 
                                       HA_OPEN_IGNORE_IF_LOCKED)))
    {
      DBUG_PRINT("error", ("my_errno %d", my_errno));
      DBUG_RETURN(my_errno ? my_errno : -1); 
    }

    file->children_attached= TRUE;

    info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  }
  else if (!(file= myrg_parent_open(name, myisammrg_parent_open_callback, this)))
440 441 442 443 444 445 446 447
  {
    DBUG_PRINT("error", ("my_errno %d", my_errno));
    DBUG_RETURN(my_errno ? my_errno : -1);
  }
  DBUG_PRINT("myrg", ("MYRG_INFO: 0x%lx", (long) file));
  DBUG_RETURN(0);
}

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
/**
   Returns a cloned instance of the current handler.

   @return A cloned handler instance.
 */
handler *ha_myisammrg::clone(MEM_ROOT *mem_root)
{
  MYRG_TABLE    *u_table,*newu_table;
  ha_myisammrg *new_handler= 
    (ha_myisammrg*) get_new_handler(table->s, mem_root, table->s->db_type());
  if (!new_handler)
    return NULL;
  
  /* Inform ha_myisammrg::open() that it is a cloned handler */
  new_handler->is_cloned= TRUE;
  /*
    Allocate handler->ref here because otherwise ha_open will allocate it
    on this->table->mem_root and we will not be able to reclaim that memory 
    when the clone handler object is destroyed.
  */
  if (!(new_handler->ref= (uchar*) alloc_root(mem_root, ALIGN_SIZE(ref_length)*2)))
  {
    delete new_handler;
    return NULL;
  }

  if (new_handler->ha_open(table, table->s->normalized_path.str, table->db_stat,
                            HA_OPEN_IGNORE_IF_LOCKED))
  {
    delete new_handler;
    return NULL;
  }
 
  /*
    Iterate through the original child tables and
    copy the state into the cloned child tables.
    We need to do this because all the child tables
    can be involved in delete.
  */
  newu_table= new_handler->file->open_tables;
  for (u_table= file->open_tables; u_table < file->end_table; u_table++)
  {
    newu_table->table->state= u_table->table->state;
    newu_table++;
  }

  return new_handler;
 }

497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517

/**
  @brief Attach children to a MERGE table.

  @detail Let the storage engine attach its children through a callback
    function. Check table definitions for consistency.

  @note Special thd->open_options may be in effect. We can make use of
    them in attach. I.e. we use HA_OPEN_FOR_REPAIR to report the names
    of mismatching child tables. We cannot transport these options in
    ha_myisammrg::test_if_locked because they may change after the
    parent is opened. The parent is kept open in the table cache over
    multiple statements and can be used by other threads. Open options
    can change over time.

  @return status
    @retval     0               OK
    @retval     != 0            Error, my_errno gives reason
*/

int ha_myisammrg::attach_children(void)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
518
{
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
  MYRG_TABLE    *u_table;
  MI_COLUMNDEF  *recinfo;
  MI_KEYDEF     *keyinfo;
  uint          recs;
  uint          keys= table->s->keys;
  int           error;
  DBUG_ENTER("ha_myisammrg::attach_children");
  DBUG_PRINT("myrg", ("table: '%s'.'%s' 0x%lx", table->s->db.str,
                      table->s->table_name.str, (long) table));
  DBUG_PRINT("myrg", ("test_if_locked: %u", this->test_if_locked));
  DBUG_ASSERT(!this->file->children_attached);

  /*
    Initialize variables that are used, modified, and/or set by
    myisammrg_attach_children_callback().
    'next_child_attach' traverses the chain of TABLE_LIST objects
    that has been compiled during myrg_parent_open(). Every call
    to myisammrg_attach_children_callback() moves the pointer to
    the next object.
    'need_compat_check' is set by myisammrg_attach_children_callback()
    if a child fails the table def version check.
    'my_errno' is set by myisammrg_attach_children_callback() in
    case of an error.
  */
  next_child_attach= table->child_l;
  need_compat_check= FALSE;
  my_errno= 0;
546

547 548
  if (myrg_attach_children(this->file, this->test_if_locked |
                           current_thd->open_options,
549 550
                           myisammrg_attach_children_callback, this,
                           (my_bool *) &need_compat_check))
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
551
  {
552 553
    DBUG_PRINT("error", ("my_errno %d", my_errno));
    DBUG_RETURN(my_errno ? my_errno : -1);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
554
  }
555
  DBUG_PRINT("myrg", ("calling myrg_extrafunc"));
556
  myrg_extrafunc(file, query_cache_invalidate_by_MyISAM_filename_ref);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
557 558
  if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
	test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
559
    myrg_extra(file,HA_EXTRA_NO_WAIT_LOCK,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
560 561
  info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
562
    myrg_extra(file,HA_EXTRA_WAIT_LOCK,0);
563

564 565 566 567 568 569 570 571
  /*
    The compatibility check is required only if one or more children do
    not match their table def version from the last check. This will
    always happen at the first attach because the reference child def
    version is initialized to 'undefined' at open.
  */
  DBUG_PRINT("myrg", ("need_compat_check: %d", need_compat_check));
  if (need_compat_check)
572
  {
573 574 575
    TABLE_LIST *child_l;

    if (table->s->reclength != stats.mean_rec_length && stats.mean_rec_length)
576
    {
577 578
      DBUG_PRINT("error",("reclength: %lu  mean_rec_length: %lu",
                          table->s->reclength, stats.mean_rec_length));
579
      if (test_if_locked & HA_OPEN_FOR_REPAIR)
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
        myrg_print_wrong_table(file->open_tables->table->filename);
      error= HA_ERR_WRONG_MRG_TABLE_DEF;
      goto err;
    }
    /*
      Both recinfo and keyinfo are allocated by my_multi_malloc(), thus
      only recinfo must be freed.
    */
    if ((error= table2myisam(table, &keyinfo, &recinfo, &recs)))
    {
      /* purecov: begin inspected */
      DBUG_PRINT("error", ("failed to convert TABLE object to MyISAM "
                           "key and column definition"));
      goto err;
      /* purecov: end */
    }
    for (u_table= file->open_tables; u_table < file->end_table; u_table++)
    {
      if (check_definition(keyinfo, recinfo, keys, recs,
                           u_table->table->s->keyinfo, u_table->table->s->rec,
                           u_table->table->s->base.keys,
601
                           u_table->table->s->base.fields, false, NULL))
602
      {
603 604 605 606 607 608 609 610 611
        DBUG_PRINT("error", ("table definition mismatch: '%s'",
                             u_table->table->filename));
        error= HA_ERR_WRONG_MRG_TABLE_DEF;
        if (!(this->test_if_locked & HA_OPEN_FOR_REPAIR))
        {
          my_free((uchar*) recinfo, MYF(0));
          goto err;
        }
        myrg_print_wrong_table(u_table->table->filename);
612
      }
613
    }
614 615 616 617 618 619 620 621 622 623 624 625 626
    my_free((uchar*) recinfo, MYF(0));
    if (error == HA_ERR_WRONG_MRG_TABLE_DEF)
      goto err;

    /* All checks passed so far. Now update child def version. */
    for (child_l= table->child_l; ; child_l= child_l->next_global)
    {
      child_l->set_child_def_version(
        child_l->table->s->get_table_def_version());

      if (&child_l->next_global == table->child_last_l)
        break;
    }
627
  }
628 629
#if !defined(BIG_TABLES) || SIZEOF_OFF_T == 4
  /* Merge table has more than 2G rows */
630
  if (table->s->crashed)
631
  {
632
    DBUG_PRINT("error", ("MERGE table marked crashed"));
633
    error= HA_ERR_WRONG_MRG_TABLE_DEF;
634
    goto err;
635
  }
636
#endif
637 638
  DBUG_RETURN(0);

639
err:
640 641
  myrg_detach_children(file);
  DBUG_RETURN(my_errno= error);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
642 643
}

644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682

/**
  @brief Detach all children from a MERGE table.

  @note Detach must not touch the children in any way.
    They may have been closed at ths point already.
    All references to the children should be removed.

  @return status
    @retval     0               OK
    @retval     != 0            Error, my_errno gives reason
*/

int ha_myisammrg::detach_children(void)
{
  DBUG_ENTER("ha_myisammrg::detach_children");
  DBUG_ASSERT(this->file && this->file->children_attached);

  if (myrg_detach_children(this->file))
  {
    /* purecov: begin inspected */
    DBUG_PRINT("error", ("my_errno %d", my_errno));
    DBUG_RETURN(my_errno ? my_errno : -1);
    /* purecov: end */
  }
  DBUG_RETURN(0);
}


/**
  @brief Close a MERGE parent table, not its children.

  @note The children are expected to be closed separately by the caller.

  @return status
    @retval     0               OK
    @retval     != 0            Error, my_errno gives reason
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
683 684
int ha_myisammrg::close(void)
{
685 686 687 688
  int rc;
  DBUG_ENTER("ha_myisammrg::close");
  /*
    Children must not be attached here. Unless the MERGE table has no
689 690
    children or the handler instance has been cloned. In these cases 
    children_attached is always true. 
691
  */
692
  DBUG_ASSERT(!this->file->children_attached || !this->file->tables || this->is_cloned);
693 694 695
  rc= myrg_close(file);
  file= 0;
  DBUG_RETURN(rc);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
696 697
}

698
int ha_myisammrg::write_row(uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
699
{
700 701
  DBUG_ENTER("ha_myisammrg::write_row");
  DBUG_ASSERT(this->file->children_attached);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
702
  ha_statistic_increment(&SSV::ha_write_count);
703 704

  if (file->merge_insert_method == MERGE_INSERT_DISABLED || !file->tables)
705
    DBUG_RETURN(HA_ERR_TABLE_READONLY);
706

707 708
  if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_INSERT)
    table->timestamp_field->set_time();
709
  if (table->next_number_field && buf == table->record[0])
710 711 712
  {
    int error;
    if ((error= update_auto_increment()))
713
      DBUG_RETURN(error); /* purecov: inspected */
714
  }
715
  DBUG_RETURN(myrg_write(file,buf));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
716 717
}

718
int ha_myisammrg::update_row(const uchar * old_data, uchar * new_data)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
719
{
720
  DBUG_ASSERT(this->file->children_attached);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
721
  ha_statistic_increment(&SSV::ha_update_count);
722 723
  if (table->timestamp_field_type & TIMESTAMP_AUTO_SET_ON_UPDATE)
    table->timestamp_field->set_time();
724
  return myrg_update(file,old_data,new_data);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
725 726
}

727
int ha_myisammrg::delete_row(const uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
728
{
729
  DBUG_ASSERT(this->file->children_attached);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
730
  ha_statistic_increment(&SSV::ha_delete_count);
731
  return myrg_delete(file,buf);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
732 733
}

734 735 736
int ha_myisammrg::index_read_map(uchar * buf, const uchar * key,
                                 key_part_map keypart_map,
                                 enum ha_rkey_function find_flag)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
737
{
738
  DBUG_ASSERT(this->file->children_attached);
739
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
740
  ha_statistic_increment(&SSV::ha_read_key_count);
741
  int error=myrg_rkey(file,buf,active_index, key, keypart_map, find_flag);
742
  table->status=error ? STATUS_NOT_FOUND: 0;
743
  MYSQL_INDEX_READ_ROW_DONE(error);
744
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
745 746
}

747 748 749
int ha_myisammrg::index_read_idx_map(uchar * buf, uint index, const uchar * key,
                                     key_part_map keypart_map,
                                     enum ha_rkey_function find_flag)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
750
{
751
  DBUG_ASSERT(this->file->children_attached);
752
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
753
  ha_statistic_increment(&SSV::ha_read_key_count);
754
  int error=myrg_rkey(file,buf,index, key, keypart_map, find_flag);
755
  table->status=error ? STATUS_NOT_FOUND: 0;
756
  MYSQL_INDEX_READ_ROW_DONE(error);
757
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
758 759
}

760 761
int ha_myisammrg::index_read_last_map(uchar *buf, const uchar *key,
                                      key_part_map keypart_map)
762
{
763
  DBUG_ASSERT(this->file->children_attached);
764
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
765
  ha_statistic_increment(&SSV::ha_read_key_count);
766
  int error=myrg_rkey(file,buf,active_index, key, keypart_map,
767 768
		      HA_READ_PREFIX_LAST);
  table->status=error ? STATUS_NOT_FOUND: 0;
769
  MYSQL_INDEX_READ_ROW_DONE(error);
770
  return error;
771 772
}

773
int ha_myisammrg::index_next(uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
774
{
775
  DBUG_ASSERT(this->file->children_attached);
776
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
777
  ha_statistic_increment(&SSV::ha_read_next_count);
778 779
  int error=myrg_rnext(file,buf,active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
780
  MYSQL_INDEX_READ_ROW_DONE(error);
781
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
782 783
}

784
int ha_myisammrg::index_prev(uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
785
{
786
  DBUG_ASSERT(this->file->children_attached);
787
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
788
  ha_statistic_increment(&SSV::ha_read_prev_count);
789 790
  int error=myrg_rprev(file,buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
791
  MYSQL_INDEX_READ_ROW_DONE(error);
792
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
793
}
794

795
int ha_myisammrg::index_first(uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
796
{
797
  DBUG_ASSERT(this->file->children_attached);
798
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
799
  ha_statistic_increment(&SSV::ha_read_first_count);
800 801
  int error=myrg_rfirst(file, buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
802
  MYSQL_INDEX_READ_ROW_DONE(error);
803
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
804 805
}

806
int ha_myisammrg::index_last(uchar * buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
807
{
808
  DBUG_ASSERT(this->file->children_attached);
809
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
810
  ha_statistic_increment(&SSV::ha_read_last_count);
811 812
  int error=myrg_rlast(file, buf, active_index);
  table->status=error ? STATUS_NOT_FOUND: 0;
813
  MYSQL_INDEX_READ_ROW_DONE(error);
814
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
815 816
}

817 818
int ha_myisammrg::index_next_same(uchar * buf,
                                  const uchar *key __attribute__((unused)),
819 820
                                  uint length __attribute__((unused)))
{
821
  int error;
822
  DBUG_ASSERT(this->file->children_attached);
823
  MYSQL_INDEX_READ_ROW_START(table_share->db.str, table_share->table_name.str);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
824
  ha_statistic_increment(&SSV::ha_read_next_count);
825 826 827 828
  do
  {
    error= myrg_rnext_same(file,buf);
  } while (error == HA_ERR_RECORD_DELETED);
829
  table->status=error ? STATUS_NOT_FOUND: 0;
830
  MYSQL_INDEX_READ_ROW_DONE(error);
831 832 833
  return error;
}

834

bk@work.mysql.com's avatar
bk@work.mysql.com committed
835 836
int ha_myisammrg::rnd_init(bool scan)
{
837
  DBUG_ASSERT(this->file->children_attached);
838
  return myrg_reset(file);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
839 840
}

841

842
int ha_myisammrg::rnd_next(uchar *buf)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
843
{
844
  DBUG_ASSERT(this->file->children_attached);
845 846
  MYSQL_READ_ROW_START(table_share->db.str, table_share->table_name.str,
                       TRUE);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
847
  ha_statistic_increment(&SSV::ha_read_rnd_next_count);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
848 849
  int error=myrg_rrnd(file, buf, HA_OFFSET_ERROR);
  table->status=error ? STATUS_NOT_FOUND: 0;
850
  MYSQL_READ_ROW_DONE(error);
851
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
852 853
}

854

855
int ha_myisammrg::rnd_pos(uchar * buf, uchar *pos)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
856
{
857
  DBUG_ASSERT(this->file->children_attached);
858 859
  MYSQL_READ_ROW_START(table_share->db.str, table_share->table_name.str,
                       TRUE);
antony@ppcg5.local's avatar
antony@ppcg5.local committed
860
  ha_statistic_increment(&SSV::ha_read_rnd_count);
861
  int error=myrg_rrnd(file, buf, my_get_ptr(pos,ref_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
862
  table->status=error ? STATUS_NOT_FOUND: 0;
863
  MYSQL_READ_ROW_DONE(error);
864
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
865 866
}

867
void ha_myisammrg::position(const uchar *record)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
868
{
869
  DBUG_ASSERT(this->file->children_attached);
870 871
  ulonglong row_position= myrg_position(file);
  my_store_ptr(ref, ref_length, (my_off_t) row_position);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
872 873
}

874 875 876 877

ha_rows ha_myisammrg::records_in_range(uint inx, key_range *min_key,
                                       key_range *max_key)
{
878
  DBUG_ASSERT(this->file->children_attached);
879
  return (ha_rows) myrg_records_in_range(file, (int) inx, min_key, max_key);
880
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
881

882

883
int ha_myisammrg::info(uint flag)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
884
{
885
  MYMERGE_INFO mrg_info;
886
  DBUG_ASSERT(this->file->children_attached);
887
  (void) myrg_status(file,&mrg_info,flag);
888 889 890 891
  /*
    The following fails if one has not compiled MySQL with -DBIG_TABLES
    and one has more than 2^32 rows in the merge tables.
  */
892 893
  stats.records = (ha_rows) mrg_info.records;
  stats.deleted = (ha_rows) mrg_info.deleted;
894
#if !defined(BIG_TABLES) || SIZEOF_OFF_T == 4
895 896
  if ((mrg_info.records >= (ulonglong) 1 << 32) ||
      (mrg_info.deleted >= (ulonglong) 1 << 32))
897
    table->s->crashed= 1;
898
#endif
899
  stats.data_file_length= mrg_info.data_file_length;
900
  if (mrg_info.errkey >= (int) table_share->keys)
901 902 903 904 905 906 907 908 909
  {
    /*
     If value of errkey is higher than the number of keys
     on the table set errkey to MAX_KEY. This will be
     treated as unknown key case and error message generator
     won't try to locate key causing segmentation fault.
    */
    mrg_info.errkey= MAX_KEY;
  }
910
  table->s->keys_in_use.set_prefix(table->s->keys);
911
  stats.mean_rec_length= mrg_info.reclength;
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
  
  /* 
    The handler::block_size is used all over the code in index scan cost
    calculations. It is used to get number of disk seeks required to
    retrieve a number of index tuples.
    If the merge table has N underlying tables, then (assuming underlying
    tables have equal size, the only "simple" approach we can use)
    retrieving X index records from a merge table will require N times more
    disk seeks compared to doing the same on a MyISAM table with equal
    number of records.
    In the edge case (file_tables > myisam_block_size) we'll get
    block_size==0, and index calculation code will act as if we need one
    disk seek to retrieve one index tuple.

    TODO: In 5.2 index scan cost calculation will be factored out into a
    virtual function in class handler and we'll be able to remove this hack.
  */
929
  stats.block_size= 0;
930
  if (file->tables)
931
    stats.block_size= myisam_block_size / file->tables;
932
  
933
  stats.update_time= 0;
934
#if SIZEOF_OFF_T > 4
bk@work.mysql.com's avatar
bk@work.mysql.com committed
935
  ref_length=6;					// Should be big enough
936 937 938
#else
  ref_length=4;					// Can't be > than my_off_t
#endif
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
939 940
  if (flag & HA_STATUS_CONST)
  {
941
    if (table->s->key_parts && mrg_info.rec_per_key)
942 943 944 945 946 947 948 949 950
    {
#ifdef HAVE_purify
      /*
        valgrind may be unhappy about it, because optimizer may access values
        between file->keys and table->key_parts, that will be uninitialized.
        It's safe though, because even if opimizer will decide to use a key
        with such a number, it'll be an error later anyway.
      */
      bzero((char*) table->key_info[0].rec_per_key,
951
            sizeof(table->key_info[0].rec_per_key[0]) * table->s->key_parts);
952
#endif
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
953
      memcpy((char*) table->key_info[0].rec_per_key,
954
	     (char*) mrg_info.rec_per_key,
955
             sizeof(table->key_info[0].rec_per_key[0]) *
956
             min(file->keys, table->s->key_parts));
957
    }
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
958
  }
959 960 961 962 963
  if (flag & HA_STATUS_ERRKEY)
  {
    errkey= mrg_info.errkey;
    my_store_ptr(dup_ref, ref_length, mrg_info.dupp_key_pos);
  }
964
  return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
965 966 967 968 969
}


int ha_myisammrg::extra(enum ha_extra_function operation)
{
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
  if (operation == HA_EXTRA_ATTACH_CHILDREN)
  {
    int rc= attach_children();
    if (!rc)
      (void) extra(HA_EXTRA_NO_READCHECK); // Not needed in SQL
    return(rc);
  }
  else if (operation == HA_EXTRA_DETACH_CHILDREN)
  {
    /*
      Note that detach must not touch the children in any way.
      They may have been closed at ths point already.
    */
    int rc= detach_children();
    return(rc);
  }

987 988 989
  /* As this is just a mapping, we don't have to force the underlying
     tables to be closed */
  if (operation == HA_EXTRA_FORCE_REOPEN ||
990
      operation == HA_EXTRA_PREPARE_FOR_DROP)
991 992
    return 0;
  return myrg_extra(file,operation,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
993 994
}

995 996 997 998
int ha_myisammrg::reset(void)
{
  return myrg_reset(file);
}
999 1000 1001 1002 1003

/* To be used with WRITE_CACHE, EXTRA_CACHE and BULK_INSERT_BEGIN */

int ha_myisammrg::extra_opt(enum ha_extra_function operation, ulong cache_size)
{
1004
  DBUG_ASSERT(this->file->children_attached);
1005
  if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_WRITE_CACHE)
1006 1007
    return 0;
  return myrg_extra(file, operation, (void*) &cache_size);
1008 1009
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1010 1011
int ha_myisammrg::external_lock(THD *thd, int lock_type)
{
1012
  DBUG_ASSERT(this->file->children_attached);
1013
  return myrg_lock_database(file,lock_type);
1014
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1015 1016 1017

uint ha_myisammrg::lock_count(void) const
{
1018 1019 1020 1021 1022 1023 1024 1025
  /*
    Return the real lock count even if the children are not attached.
    This method is used for allocating memory. If we would return 0
    to another thread (e.g. doing FLUSH TABLE), and attach the children
    before the other thread calls store_lock(), then we would return
    more locks in store_lock() than we claimed by lock_count(). The
    other tread would overrun its memory.
  */
1026
  return file->tables;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1027 1028 1029 1030 1031 1032 1033
}


THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd,
					 THR_LOCK_DATA **to,
					 enum thr_lock_type lock_type)
{
1034
  MYRG_TABLE *open_table;
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052

  /*
    This method can be called while another thread is attaching the
    children. If the processor reorders instructions or write to memory,
    'children_attached' could be set before 'open_tables' has all the
    pointers to the children. Use of a mutex here and in
    myrg_attach_children() forces consistent data.
  */
  pthread_mutex_lock(&this->file->mutex);

  /*
    When MERGE table is open, but not yet attached, other threads
    could flush it, which means call mysql_lock_abort_for_thread()
    on this threads TABLE. 'children_attached' is FALSE in this
    situaton. Since the table is not locked, return no lock data.
  */
  if (!this->file->children_attached)
    goto end; /* purecov: tested */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1053

1054 1055 1056
  for (open_table=file->open_tables ;
       open_table != file->end_table ;
       open_table++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1057
  {
1058 1059 1060
    *(to++)= &open_table->table->lock;
    if (lock_type != TL_IGNORE && open_table->table->lock.type == TL_UNLOCK)
      open_table->table->lock.type=lock_type;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1061
  }
1062 1063 1064

 end:
  pthread_mutex_unlock(&this->file->mutex);
1065
  return to;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1066 1067
}

1068 1069 1070 1071 1072 1073

/* Find out database name and table name from a filename */

static void split_file_name(const char *file_name,
			    LEX_STRING *db, LEX_STRING *name)
{
1074
  size_t dir_length, prefix_length;
1075 1076 1077
  char buff[FN_REFLEN];

  db->length= 0;
1078
  strmake(buff, file_name, sizeof(buff)-1);
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
  dir_length= dirname_length(buff);
  if (dir_length > 1)
  {
    /* Get database */
    buff[dir_length-1]= 0;			// Remove end '/'
    prefix_length= dirname_length(buff);
    db->str= (char*) file_name+ prefix_length;
    db->length= dir_length - prefix_length -1;
  }
  name->str= (char*) file_name+ dir_length;
  name->length= (uint) (fn_ext(name->str) - name->str);
}


1093 1094
void ha_myisammrg::update_create_info(HA_CREATE_INFO *create_info)
{
1095
  DBUG_ENTER("ha_myisammrg::update_create_info");
1096

1097 1098
  if (!(create_info->used_fields & HA_CREATE_USED_UNION))
  {
1099
    MYRG_TABLE *open_table;
1100
    THD *thd=current_thd;
1101

1102
    create_info->merge_list.next= &create_info->merge_list.first;
1103
    create_info->merge_list.elements=0;
1104

1105 1106 1107
    for (open_table=file->open_tables ;
	 open_table != file->end_table ;
	 open_table++)
1108 1109
    {
      TABLE_LIST *ptr;
1110
      LEX_STRING db, name;
1111
      LINT_INIT(db.str);
1112

1113 1114
      if (!(ptr = (TABLE_LIST *) thd->calloc(sizeof(TABLE_LIST))))
	goto err;
1115
      split_file_name(open_table->table->filename, &db, &name);
1116
      if (!(ptr->table_name= thd->strmake(name.str, name.length)))
1117 1118
	goto err;
      if (db.length && !(ptr->db= thd->strmake(db.str, db.length)))
1119
	goto err;
1120

1121
      create_info->merge_list.elements++;
1122 1123
      (*create_info->merge_list.next) = (uchar*) ptr;
      create_info->merge_list.next= (uchar**) &ptr->next_local;
1124 1125 1126
    }
    *create_info->merge_list.next=0;
  }
1127 1128 1129 1130
  if (!(create_info->used_fields & HA_CREATE_USED_INSERT_METHOD))
  {
    create_info->merge_insert_method = file->merge_insert_method;
  }
1131 1132 1133 1134 1135 1136 1137
  DBUG_VOID_RETURN;

err:
  create_info->merge_list.elements=0;
  create_info->merge_list.first=0;
  DBUG_VOID_RETURN;
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1138

1139

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1140 1141 1142
int ha_myisammrg::create(const char *name, register TABLE *form,
			 HA_CREATE_INFO *create_info)
{
1143 1144
  char buff[FN_REFLEN];
  const char **table_names, **pos;
1145
  TABLE_LIST *tables= (TABLE_LIST*) create_info->merge_list.first;
1146
  THD *thd= current_thd;
1147
  size_t dirlgt= dirname_length(name);
1148 1149
  DBUG_ENTER("ha_myisammrg::create");

1150
  /* Allocate a table_names array in thread mem_root. */
1151 1152
  if (!(table_names= (const char**)
        thd->alloc((create_info->merge_list.elements+1) * sizeof(char*))))
1153
    DBUG_RETURN(HA_ERR_OUT_OF_MEM);
1154 1155

  /* Create child path names. */
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1156
  for (pos= table_names; tables; tables= tables->next_local)
1157
  {
1158
    const char *table_name;
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184

    /*
      Construct the path to the MyISAM table. Try to meet two conditions:
      1.) Allow to include MyISAM tables from different databases, and
      2.) allow for moving DATADIR around in the file system.
      The first means that we need paths in the .MRG file. The second
      means that we should not have absolute paths in the .MRG file.
      The best, we can do, is to use 'mysql_data_home', which is '.'
      in mysqld and may be an absolute path in an embedded server.
      This means that it might not be possible to move the DATADIR of
      an embedded server without changing the paths in the .MRG file.

      Do the same even for temporary tables. MERGE children are now
      opened through the table cache. They are opened by db.table_name,
      not by their path name.
    */
    uint length= build_table_filename(buff, sizeof(buff),
                                      tables->db, tables->table_name, "", 0);
    /*
      If a MyISAM table is in the same directory as the MERGE table,
      we use the table name without a path. This means that the
      DATADIR can easily be moved even for an embedded server as long
      as the MyISAM tables are from the same database as the MERGE table.
    */
    if ((dirname_length(buff) == dirlgt) && ! memcmp(buff, name, dirlgt))
      table_name= tables->table_name;
1185
    else
1186 1187 1188
      if (! (table_name= thd->strmake(buff, length)))
        DBUG_RETURN(HA_ERR_OUT_OF_MEM); /* purecov: inspected */

1189 1190
    *pos++= table_name;
  }
1191
  *pos=0;
1192 1193

  /* Create a MERGE meta file from the table_names array. */
1194 1195 1196
  DBUG_RETURN(myrg_create(fn_format(buff,name,"","",
                                    MY_RESOLVE_SYMLINKS|
                                    MY_UNPACK_FILENAME|MY_APPEND_EXT),
1197
			  table_names,
1198 1199
                          create_info->merge_insert_method,
                          (my_bool) 0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1200
}
1201

1202

1203 1204
void ha_myisammrg::append_create_info(String *packet)
{
1205
  const char *current_db;
1206
  size_t db_length;
1207
  THD *thd= current_thd;
1208
  MYRG_TABLE *open_table, *first;
1209

1210 1211
  if (file->merge_insert_method != MERGE_INSERT_DISABLED)
  {
1212
    packet->append(STRING_WITH_LEN(" INSERT_METHOD="));
1213
    packet->append(get_type(&merge_insert_method,file->merge_insert_method-1));
1214
  }
1215 1216 1217 1218 1219 1220
  /*
    There is no sence adding UNION clause in case there is no underlying
    tables specified.
  */
  if (file->open_tables == file->end_table)
    return;
1221
  packet->append(STRING_WITH_LEN(" UNION=("));
1222

1223 1224
  current_db= table->s->db.str;
  db_length=  table->s->db.length;
1225

1226 1227 1228
  for (first=open_table=file->open_tables ;
       open_table != file->end_table ;
       open_table++)
1229
  {
1230
    LEX_STRING db, name;
1231 1232
    LINT_INIT(db.str);

1233
    split_file_name(open_table->table->filename, &db, &name);
1234
    if (open_table != first)
1235
      packet->append(',');
1236 1237 1238 1239 1240 1241 1242 1243 1244
    /* Report database for mapped table if it isn't in current database */
    if (db.length &&
	(db_length != db.length ||
	 strncmp(current_db, db.str, db.length)))
    {
      append_identifier(thd, packet, db.str, db.length);
      packet->append('.');
    }
    append_identifier(thd, packet, name.str, name.length);
1245 1246 1247
  }
  packet->append(')');
}
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258


bool ha_myisammrg::check_if_incompatible_data(HA_CREATE_INFO *info,
					      uint table_changes)
{
  /*
    For myisammrg, we should always re-generate the mapping file as this
    is trivial to do
  */
  return COMPATIBLE_DATA_NO;
}
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
1259

1260

1261 1262 1263 1264
int ha_myisammrg::check(THD* thd, HA_CHECK_OPT* check_opt)
{
  return HA_ADMIN_OK;
}
1265 1266


1267 1268 1269 1270 1271 1272
ha_rows ha_myisammrg::records()
{
  return myrg_records(file);
}


1273 1274 1275 1276 1277 1278
extern int myrg_panic(enum ha_panic_function flag);
int myisammrg_panic(handlerton *hton, ha_panic_function flag)
{
  return myrg_panic(flag);
}

1279
static int myisammrg_init(void *p)
1280
{
1281 1282
  handlerton *myisammrg_hton;

1283 1284
  myisammrg_hton= (handlerton *)p;

1285 1286 1287
  myisammrg_hton->db_type= DB_TYPE_MRG_MYISAM;
  myisammrg_hton->create= myisammrg_create_handler;
  myisammrg_hton->panic= myisammrg_panic;
1288
  myisammrg_hton->flags= HTON_NO_PARTITION;
1289

1290 1291 1292 1293
  return 0;
}

struct st_mysql_storage_engine myisammrg_storage_engine=
1294
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
1295

acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
1296 1297 1298
mysql_declare_plugin(myisammrg)
{
  MYSQL_STORAGE_ENGINE_PLUGIN,
1299 1300
  &myisammrg_storage_engine,
  "MRG_MYISAM",
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
1301
  "MySQL AB",
1302
  "Collection of identical MyISAM tables",
1303
  PLUGIN_LICENSE_GPL,
1304
  myisammrg_init, /* Plugin Init */
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
1305
  NULL, /* Plugin Deinit */
monty@mysql.com's avatar
monty@mysql.com committed
1306
  0x0100, /* 1.0 */
1307 1308 1309
  NULL,                       /* status variables                */
  NULL,                       /* system variables                */
  NULL                        /* config options                  */
acurtis@xiphis.org's avatar
acurtis@xiphis.org committed
1310 1311
}
mysql_declare_plugin_end;