table.cc 164 KB
Newer Older
1
/*
2 3
   Copyright (c) 2000, 2011, Oracle and/or its affiliates.
   Copyright (c) 2008-2011 Monty Program Ab
unknown's avatar
unknown committed
4

unknown's avatar
unknown committed
5 6
   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
unknown's avatar
unknown committed
7
   the Free Software Foundation; version 2 of the License.
unknown's avatar
unknown committed
8

unknown's avatar
unknown committed
9 10 11 12
   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.
unknown's avatar
unknown committed
13

unknown's avatar
unknown committed
14 15
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
16 17
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
*/
unknown's avatar
unknown committed
18 19 20 21 22


/* Some general useful functions */

#include "mysql_priv.h"
23
#include "sql_trigger.h"
24
#include "create_options.h"
unknown's avatar
unknown committed
25
#include <m_ctype.h>
26
#include "my_md5.h"
unknown's avatar
unknown committed
27

28 29 30 31 32 33 34 35 36 37 38 39
/* INFORMATION_SCHEMA name */
LEX_STRING INFORMATION_SCHEMA_NAME= {C_STRING_WITH_LEN("information_schema")};

/* MYSQL_SCHEMA name */
LEX_STRING MYSQL_SCHEMA_NAME= {C_STRING_WITH_LEN("mysql")};

/* GENERAL_LOG name */
LEX_STRING GENERAL_LOG_NAME= {C_STRING_WITH_LEN("general_log")};

/* SLOW_LOG name */
LEX_STRING SLOW_LOG_NAME= {C_STRING_WITH_LEN("slow_log")};

40 41 42 43 44 45
/* 
  Keyword added as a prefix when parsing the defining expression for a
  virtual column read from the column definition saved in the frm file
*/
LEX_STRING parse_vcol_keyword= { C_STRING_WITH_LEN("PARSE_VCOL_EXPR ") };

unknown's avatar
unknown committed
46 47
	/* Functions defined in this file */

unknown's avatar
unknown committed
48 49
void open_table_error(TABLE_SHARE *share, int error, int db_errno,
                      myf errortype, int errarg);
50 51
static int open_binary_frm(THD *thd, TABLE_SHARE *share,
                           uchar *head, File file);
unknown's avatar
unknown committed
52 53
static void fix_type_pointers(const char ***array, TYPELIB *point_to_type,
			      uint types, char **names);
54
static uint find_field(Field **fields, uchar *record, uint start, uint length);
unknown's avatar
unknown committed
55

56
inline bool is_system_table_name(const char *name, uint length);
unknown's avatar
unknown committed
57

58 59
static ulong get_form_pos(File file, uchar *head);

unknown's avatar
unknown committed
60 61 62 63 64 65
/**************************************************************************
  Object_creation_ctx implementation.
**************************************************************************/

Object_creation_ctx *Object_creation_ctx::set_n_backup(THD *thd)
{
66 67
  Object_creation_ctx *backup_ctx;
  DBUG_ENTER("Object_creation_ctx::set_n_backup");
unknown's avatar
unknown committed
68

69
  backup_ctx= create_backup_ctx(thd);
unknown's avatar
unknown committed
70 71
  change_env(thd);

72
  DBUG_RETURN(backup_ctx);
unknown's avatar
unknown committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
}

void Object_creation_ctx::restore_env(THD *thd, Object_creation_ctx *backup_ctx)
{
  if (!backup_ctx)
    return;

  backup_ctx->change_env(thd);

  delete backup_ctx;
}

/**************************************************************************
  Default_object_creation_ctx implementation.
**************************************************************************/

Default_object_creation_ctx::Default_object_creation_ctx(THD *thd)
  : m_client_cs(thd->variables.character_set_client),
    m_connection_cl(thd->variables.collation_connection)
{ }

Default_object_creation_ctx::Default_object_creation_ctx(
  CHARSET_INFO *client_cs, CHARSET_INFO *connection_cl)
  : m_client_cs(client_cs),
    m_connection_cl(connection_cl)
{ }

Object_creation_ctx *
101
Default_object_creation_ctx::create_backup_ctx(THD *thd) const
unknown's avatar
unknown committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
{
  return new Default_object_creation_ctx(thd);
}

void Default_object_creation_ctx::change_env(THD *thd) const
{
  thd->variables.character_set_client= m_client_cs;
  thd->variables.collation_connection= m_connection_cl;

  thd->update_charset();
}

/**************************************************************************
  View_creation_ctx implementation.
**************************************************************************/

View_creation_ctx *View_creation_ctx::create(THD *thd)
{
  View_creation_ctx *ctx= new (thd->mem_root) View_creation_ctx(thd);

  return ctx;
}

/*************************************************************************/

View_creation_ctx * View_creation_ctx::create(THD *thd,
128
                                              TABLE_LIST *view)
unknown's avatar
unknown committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
{
  View_creation_ctx *ctx= new (thd->mem_root) View_creation_ctx(thd);

  /* Throw a warning if there is NULL cs name. */

  if (!view->view_client_cs_name.str ||
      !view->view_connection_cl_name.str)
  {
    push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
                        ER_VIEW_NO_CREATION_CTX,
                        ER(ER_VIEW_NO_CREATION_CTX),
                        (const char *) view->db,
                        (const char *) view->table_name);

    ctx->m_client_cs= system_charset_info;
    ctx->m_connection_cl= system_charset_info;

    return ctx;
  }

  /* Resolve cs names. Throw a warning if there is unknown cs name. */

  bool invalid_creation_ctx;

  invalid_creation_ctx= resolve_charset(view->view_client_cs_name.str,
                                        system_charset_info,
                                        &ctx->m_client_cs);

  invalid_creation_ctx= resolve_collation(view->view_connection_cl_name.str,
                                          system_charset_info,
                                          &ctx->m_connection_cl) ||
                        invalid_creation_ctx;

  if (invalid_creation_ctx)
  {
    sql_print_warning("View '%s'.'%s': there is unknown charset/collation "
                      "names (client: '%s'; connection: '%s').",
                      (const char *) view->db,
                      (const char *) view->table_name,
                      (const char *) view->view_client_cs_name.str,
                      (const char *) view->view_connection_cl_name.str);

    push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
                        ER_VIEW_INVALID_CREATION_CTX,
                        ER(ER_VIEW_INVALID_CREATION_CTX),
                        (const char *) view->db,
                        (const char *) view->table_name);
  }

  return ctx;
}

/*************************************************************************/

unknown's avatar
unknown committed
183 184
/* Get column name from column hash */

185 186
static uchar *get_field_name(Field **buff, size_t *length,
                             my_bool not_used __attribute__((unused)))
unknown's avatar
unknown committed
187
{
188
  *length= (uint) strlen((*buff)->field_name);
189
  return (uchar*) (*buff)->field_name;
unknown's avatar
unknown committed
190 191
}

unknown's avatar
unknown committed
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
/*
  Returns pointer to '.frm' extension of the file name.

  SYNOPSIS
    fn_rext()
    name       file name

  DESCRIPTION
    Checks file name part starting with the rightmost '.' character,
    and returns it if it is equal to '.frm'. 

  TODO
    It is a good idea to get rid of this function modifying the code
    to garantee that the functions presently calling fn_rext() always
    get arguments in the same format: either with '.frm' or without '.frm'.

  RETURN VALUES
    Pointer to the '.frm' extension. If there is no extension,
    or extension is not '.frm', pointer at the end of file name.
*/

char *fn_rext(char *name)
{
  char *res= strrchr(name, '.');
217
  if (res && !strcmp(res, reg_ext))
218 219 220 221
    return res;
  return name + strlen(name);
}

222 223 224 225 226
TABLE_CATEGORY get_table_category(const LEX_STRING *db, const LEX_STRING *name)
{
  DBUG_ASSERT(db != NULL);
  DBUG_ASSERT(name != NULL);

227
  if (is_schema_db(db->str, db->length))
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
  {
    return TABLE_CATEGORY_INFORMATION;
  }

  if ((db->length == MYSQL_SCHEMA_NAME.length) &&
      (my_strcasecmp(system_charset_info,
                    MYSQL_SCHEMA_NAME.str,
                    db->str) == 0))
  {
    if (is_system_table_name(name->str, name->length))
    {
      return TABLE_CATEGORY_SYSTEM;
    }

    if ((name->length == GENERAL_LOG_NAME.length) &&
        (my_strcasecmp(system_charset_info,
                      GENERAL_LOG_NAME.str,
                      name->str) == 0))
    {
      return TABLE_CATEGORY_PERFORMANCE;
    }

    if ((name->length == SLOW_LOG_NAME.length) &&
        (my_strcasecmp(system_charset_info,
                      SLOW_LOG_NAME.str,
                      name->str) == 0))
    {
      return TABLE_CATEGORY_PERFORMANCE;
    }
  }

  return TABLE_CATEGORY_USER;
}

262

unknown's avatar
unknown committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276
/*
  Allocate a setup TABLE_SHARE structure

  SYNOPSIS
    alloc_table_share()
    TABLE_LIST		Take database and table name from there
    key			Table cache key (db \0 table_name \0...)
    key_length		Length of key

  RETURN
    0  Error (out of memory)
    #  Share
*/

277
TABLE_SHARE *alloc_table_share(TABLE_LIST *table_list, char *key,
unknown's avatar
unknown committed
278 279 280 281
                               uint key_length)
{
  MEM_ROOT mem_root;
  TABLE_SHARE *share;
282
  char *key_buff, *path_buff;
283 284
  char path[FN_REFLEN];
  uint path_length;
285 286 287
  DBUG_ENTER("alloc_table_share");
  DBUG_PRINT("enter", ("table: '%s'.'%s'",
                       table_list->db, table_list->table_name));
unknown's avatar
unknown committed
288

289 290
  path_length= build_table_filename(path, sizeof(path) - 1,
                                    table_list->db,
291
                                    table_list->table_name, "", 0);
unknown's avatar
unknown committed
292
  init_sql_alloc(&mem_root, TABLE_ALLOC_BLOCK_SIZE, 0);
293 294 295 296 297
  if (multi_alloc_root(&mem_root,
                       &share, sizeof(*share),
                       &key_buff, key_length,
                       &path_buff, path_length + 1,
                       NULL))
unknown's avatar
unknown committed
298 299 300
  {
    bzero((char*) share, sizeof(*share));

301
    share->set_table_cache_key(key_buff, key, key_length);
unknown's avatar
unknown committed
302

303
    share->path.str= path_buff;
unknown's avatar
unknown committed
304 305
    share->path.length= path_length;
    strmov(share->path.str, path);
306 307
    share->normalized_path.str=    share->path.str;
    share->normalized_path.length= path_length;
unknown's avatar
unknown committed
308 309 310

    share->version=       refresh_version;

311 312 313 314 315 316 317
    /*
      Since alloc_table_share() can be called without any locking (for
      example, ha_create_table... functions), we do not assign a table
      map id here.  Instead we assign a value that is not used
      elsewhere, and then assign a table map id inside open_table()
      under the protection of the LOCK_open mutex.
    */
318
    share->table_map_id= ~0UL;
319 320
    share->cached_row_logging_check= -1;

unknown's avatar
unknown committed
321 322 323 324
    memcpy((char*) &share->mem_root, (char*) &mem_root, sizeof(mem_root));
    pthread_mutex_init(&share->mutex, MY_MUTEX_INIT_FAST);
    pthread_cond_init(&share->cond, NULL);
  }
325
  DBUG_RETURN(share);
unknown's avatar
unknown committed
326 327 328 329 330 331 332 333
}


/*
  Initialize share for temporary tables

  SYNOPSIS
    init_tmp_table_share()
334
    thd         thread handle
unknown's avatar
unknown committed
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
    share	Share to fill
    key		Table_cache_key, as generated from create_table_def_key.
		must start with db name.    
    key_length	Length of key
    table_name	Table name
    path	Path to file (possible in lower case) without .frm

  NOTES
    This is different from alloc_table_share() because temporary tables
    don't have to be shared between threads or put into the table def
    cache, so we can do some things notable simpler and faster

    If table is not put in thd->temporary_tables (happens only when
    one uses OPEN TEMPORARY) then one can specify 'db' as key and
    use key_length= 0 as neither table_cache_key or key_length will be used).
*/

352
void init_tmp_table_share(THD *thd, TABLE_SHARE *share, const char *key,
unknown's avatar
unknown committed
353 354 355 356
                          uint key_length, const char *table_name,
                          const char *path)
{
  DBUG_ENTER("init_tmp_table_share");
357
  DBUG_PRINT("enter", ("table: '%s'.'%s'", key, table_name));
unknown's avatar
unknown committed
358 359 360

  bzero((char*) share, sizeof(*share));
  init_sql_alloc(&share->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0);
361 362
  share->table_category=         TABLE_CATEGORY_TEMPORARY;
  share->tmp_table=              INTERNAL_TMP_TABLE;
unknown's avatar
unknown committed
363 364 365 366 367 368 369 370 371 372 373
  share->db.str=                 (char*) key;
  share->db.length=		 strlen(key);
  share->table_cache_key.str=    (char*) key;
  share->table_cache_key.length= key_length;
  share->table_name.str=         (char*) table_name;
  share->table_name.length=      strlen(table_name);
  share->path.str=               (char*) path;
  share->normalized_path.str=    (char*) path;
  share->path.length= share->normalized_path.length= strlen(path);
  share->frm_version= 		 FRM_VER_TRUE_VARCHAR;

374
  share->cached_row_logging_check= -1;
375

376 377 378 379 380 381
  /*
    table_map_id is also used for MERGE tables to suppress repeated
    compatibility checks.
  */
  share->table_map_id= (ulong) thd->query_id;

unknown's avatar
unknown committed
382 383 384 385
  DBUG_VOID_RETURN;
}


386
/*
unknown's avatar
unknown committed
387 388 389 390 391 392 393 394 395 396 397 398 399
  Free table share and memory used by it

  SYNOPSIS
    free_table_share()
    share		Table share

  NOTES
    share->mutex must be locked when we come here if it's not a temp table
*/

void free_table_share(TABLE_SHARE *share)
{
  MEM_ROOT mem_root;
400 401
  uint idx;
  KEY *key_info;
unknown's avatar
unknown committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  DBUG_ENTER("free_table_share");
  DBUG_PRINT("enter", ("table: %s.%s", share->db.str, share->table_name.str));
  DBUG_ASSERT(share->ref_count == 0);

  /*
    If someone is waiting for this to be deleted, inform it about this.
    Don't do a delete until we know that no one is refering to this anymore.
  */
  if (share->tmp_table == NO_TMP_TABLE)
  {
    /* share->mutex is locked in release_table_share() */
    while (share->waiting_on_cond)
    {
      pthread_cond_broadcast(&share->cond);
      pthread_cond_wait(&share->cond, &share->mutex);
    }
    /* No thread refers to this anymore */
    pthread_mutex_unlock(&share->mutex);
    pthread_mutex_destroy(&share->mutex);
    pthread_cond_destroy(&share->cond);
  }
  hash_free(&share->name_hash);
unknown's avatar
unknown committed
424 425 426
  
  plugin_unlock(NULL, share->db_plugin);
  share->db_plugin= NULL;
unknown's avatar
unknown committed
427

428 429 430 431 432 433 434 435 436 437
  /* Release fulltext parsers */
  key_info= share->key_info;
  for (idx= share->keys; idx; idx--, key_info++)
  {
    if (key_info->flags & HA_USES_PARSER)
    {
      plugin_unlock(NULL, key_info->parser);
      key_info->flags= 0;
    }
  }
438 439 440 441 442
  if (share->ha_data_destroy)
  {
    share->ha_data_destroy(share->ha_data);
    share->ha_data_destroy= NULL;
  }
unknown's avatar
unknown committed
443 444 445 446 447
  /* We must copy mem_root from share because share is allocated through it */
  memcpy((char*) &mem_root, (char*) &share->mem_root, sizeof(mem_root));
  free_root(&mem_root, MYF(0));                 // Free's share
  DBUG_VOID_RETURN;
}
448

unknown's avatar
unknown committed
449

450 451 452 453 454
/**
  Return TRUE if a table name matches one of the system table names.
  Currently these are:

  help_category, help_keyword, help_relation, help_topic,
455
  proc, event
456 457 458 459 460 461 462 463 464 465 466 467 468 469
  time_zone, time_zone_leap_second, time_zone_name, time_zone_transition,
  time_zone_transition_type

  This function trades accuracy for speed, so may return false
  positives. Presumably mysql.* database is for internal purposes only
  and should not contain user tables.
*/

inline bool is_system_table_name(const char *name, uint length)
{
  CHARSET_INFO *ci= system_charset_info;

  return (
          /* mysql.proc table */
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 497
          (length == 4 &&
           my_tolower(ci, name[0]) == 'p' && 
           my_tolower(ci, name[1]) == 'r' &&
           my_tolower(ci, name[2]) == 'o' &&
           my_tolower(ci, name[3]) == 'c') ||

          (length > 4 &&
           (
            /* one of mysql.help* tables */
            (my_tolower(ci, name[0]) == 'h' &&
             my_tolower(ci, name[1]) == 'e' &&
             my_tolower(ci, name[2]) == 'l' &&
             my_tolower(ci, name[3]) == 'p') ||

            /* one of mysql.time_zone* tables */
            (my_tolower(ci, name[0]) == 't' &&
             my_tolower(ci, name[1]) == 'i' &&
             my_tolower(ci, name[2]) == 'm' &&
             my_tolower(ci, name[3]) == 'e') ||

            /* mysql.event table */
            (my_tolower(ci, name[0]) == 'e' &&
             my_tolower(ci, name[1]) == 'v' &&
             my_tolower(ci, name[2]) == 'e' &&
             my_tolower(ci, name[3]) == 'n' &&
             my_tolower(ci, name[4]) == 't')
            )
           )
498 499 500 501
         );
}


502 503 504 505
/**
  Check if a string contains path elements
*/  

Michael Widenius's avatar
Michael Widenius committed
506
static bool has_disabled_path_chars(const char *str)
507 508
{
  for (; *str; str++)
Michael Widenius's avatar
Michael Widenius committed
509 510
  {
    switch (*str) {
511 512 513 514 515 516 517
      case FN_EXTCHAR:
      case '/':
      case '\\':
      case '~':
      case '@':
        return TRUE;
    }
Michael Widenius's avatar
Michael Widenius committed
518
  }
519 520 521 522
  return FALSE;
}


unknown's avatar
unknown committed
523 524 525
/*
  Read table definition from a binary / text based .frm file
  
526
  SYNOPSIS
unknown's avatar
unknown committed
527 528 529 530
  open_table_def()
  thd		Thread handler
  share		Fill this with table definition
  db_flags	Bit mask of the following flags: OPEN_VIEW
531

unknown's avatar
unknown committed
532 533 534 535 536
  NOTES
    This function is called when the table definition is not cached in
    table_def_cache
    The data is returned in 'share', which is alloced by
    alloc_table_share().. The code assumes that share is initialized.
537 538 539

  RETURN VALUES
   0	ok
unknown's avatar
unknown committed
540 541
   1	Error (see open_table_error)
   2    Error (see open_table_error)
542
   3    Wrong data in .frm file
unknown's avatar
unknown committed
543 544
   4    Error (see open_table_error)
   5    Error (see open_table_error: charset unavailable)
545
   6    Unknown .frm version
546
*/
unknown's avatar
unknown committed
547

unknown's avatar
unknown committed
548 549 550 551 552
int open_table_def(THD *thd, TABLE_SHARE *share, uint db_flags)
{
  int error, table_type;
  bool error_given;
  File file;
553
  uchar head[288];
unknown's avatar
unknown committed
554
  char	path[FN_REFLEN];
unknown's avatar
unknown committed
555
  MEM_ROOT **root_ptr, *old_root;
unknown's avatar
unknown committed
556
  DBUG_ENTER("open_table_def");
557 558
  DBUG_PRINT("enter", ("table: '%s'.'%s'  path: '%s'", share->db.str,
                       share->table_name.str, share->normalized_path.str));
unknown's avatar
unknown committed
559

560
  error= 1;
unknown's avatar
unknown committed
561
  error_given= 0;
unknown's avatar
VIEW  
unknown committed
562

unknown's avatar
unknown committed
563 564
  strxmov(path, share->normalized_path.str, reg_ext, NullS);
  if ((file= my_open(path, O_RDONLY | O_SHARE, MYF(0))) < 0)
unknown's avatar
unknown committed
565
  {
566 567 568 569 570 571 572 573 574 575 576
    /*
      We don't try to open 5.0 unencoded name, if
      - non-encoded name contains '@' signs, 
        because '@' can be misinterpreted.
        It is not clear if '@' is escape character in 5.1,
        or a normal character in 5.0.
        
      - non-encoded db or table name contain "#mysql50#" prefix.
        This kind of tables must have been opened only by the
        my_open() above.
    */
577 578
    if (has_disabled_path_chars(share->table_name.str) ||
        has_disabled_path_chars(share->db.str) ||
579 580 581 582
        !strncmp(share->db.str, MYSQL50_TABLE_NAME_PREFIX,
                 MYSQL50_TABLE_NAME_PREFIX_LENGTH) ||
        !strncmp(share->table_name.str, MYSQL50_TABLE_NAME_PREFIX,
                 MYSQL50_TABLE_NAME_PREFIX_LENGTH))
583 584
      goto err_not_open;

585
    /* Try unencoded 5.0 name */
unknown's avatar
unknown committed
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
    uint length;
    strxnmov(path, sizeof(path)-1,
             mysql_data_home, "/", share->db.str, "/",
             share->table_name.str, reg_ext, NullS);
    length= unpack_filename(path, path) - reg_ext_length;
    /*
      The following is a safety test and should never fail
      as the old file name should never be longer than the new one.
    */
    DBUG_ASSERT(length <= share->normalized_path.length);
    /*
      If the old and the new names have the same length,
      then table name does not have tricky characters,
      so no need to check the old file name.
    */
    if (length == share->normalized_path.length ||
        ((file= my_open(path, O_RDONLY | O_SHARE, MYF(0))) < 0))
      goto err_not_open;

    /* Unencoded 5.0 table name found */
    path[length]= '\0'; // Remove .frm extension
    strmov(share->normalized_path.str, path);
    share->normalized_path.length= length;
  }
unknown's avatar
VIEW  
unknown committed
610

611
  error= 4;
612
  if (my_read(file, head, 64, MYF(MY_NABP)))
613
    goto err;
unknown's avatar
VIEW  
unknown committed
614

unknown's avatar
unknown committed
615
  if (head[0] == (uchar) 254 && head[1] == 1)
unknown's avatar
VIEW  
unknown committed
616
  {
unknown's avatar
unknown committed
617 618
    if (head[2] == FRM_VER || head[2] == FRM_VER+1 ||
        (head[2] >= FRM_VER+3 && head[2] <= FRM_VER+4))
619 620 621 622 623 624 625
    {
      /* Open view only */
      if (db_flags & OPEN_VIEW_ONLY)
      {
        error_given= 1;
        goto err;
      }
unknown's avatar
unknown committed
626
      table_type= 1;
627
    }
unknown's avatar
unknown committed
628 629 630 631 632 633
    else
    {
      error= 6;                                 // Unkown .frm version
      goto err;
    }
  }
unknown's avatar
unknown committed
634
  else if (memcmp(head, STRING_WITH_LEN("TYPE=")) == 0)
unknown's avatar
unknown committed
635 636 637 638 639 640 641 642 643 644 645
  {
    error= 5;
    if (memcmp(head+5,"VIEW",4) == 0)
    {
      share->is_view= 1;
      if (db_flags & OPEN_VIEW)
        error= 0;
    }
    goto err;
  }
  else
646
    goto err;
unknown's avatar
VIEW  
unknown committed
647

unknown's avatar
unknown committed
648 649 650 651 652 653 654 655 656
  /* No handling of text based files yet */
  if (table_type == 1)
  {
    root_ptr= my_pthread_getspecific_ptr(MEM_ROOT**, THR_MALLOC);
    old_root= *root_ptr;
    *root_ptr= &share->mem_root;
    error= open_binary_frm(thd, share, head, file);
    *root_ptr= old_root;
    error_given= 1;
unknown's avatar
VIEW  
unknown committed
657 658
  }

659 660
  share->table_category= get_table_category(& share->db, & share->table_name);

unknown's avatar
unknown committed
661 662
  if (!error)
    thd->status_var.opened_shares++;
unknown's avatar
unknown committed
663

unknown's avatar
unknown committed
664 665
err:
  my_close(file, MYF(MY_WME));
unknown's avatar
unknown committed
666

unknown's avatar
unknown committed
667 668
err_not_open:
  if (error && !error_given)
669
  {
unknown's avatar
unknown committed
670 671
    share->error= error;
    open_table_error(share, error, (share->open_errno= my_errno), 0);
672
  }
673

unknown's avatar
unknown committed
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
  DBUG_RETURN(error);
}


/*
  Read data from a binary .frm file from MySQL 3.23 - 5.0 into TABLE_SHARE
*/

static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
                           File file)
{
  int error, errarg= 0;
  uint new_frm_ver, field_pack_length, new_field_pack_flag;
  uint interval_count, interval_parts, read_length, int_length;
  uint db_create_options, keys, key_parts, n_length;
  uint key_info_length, com_length, null_bit_pos;
690
  uint vcol_screen_length;
691
  uint extra_rec_buf_length, options_len;
unknown's avatar
unknown committed
692 693
  uint i,j;
  bool use_hash;
694
  char *keynames, *names, *comment_pos, *vcol_screen_pos;
695
  uchar *record;
696 697
  uchar *disk_buff, *strpos, *null_flags, *null_pos, *options;
  uchar *buff= 0;
unknown's avatar
unknown committed
698 699 700 701 702 703 704
  ulong pos, record_offset, *rec_per_key, rec_buff_length;
  handler *handler_file= 0;
  KEY	*keyinfo;
  KEY_PART_INFO *key_part;
  SQL_CRYPT *crypted=0;
  Field  **field_ptr, *reg_field;
  const char **interval_array;
unknown's avatar
unknown committed
705
  enum legacy_db_type legacy_db_type;
706
  my_bitmap_map *bitmaps;
707
  bool null_bits_are_used;
unknown's avatar
unknown committed
708 709
  DBUG_ENTER("open_binary_frm");

710 711 712
  LINT_INIT(options);
  LINT_INIT(options_len);

unknown's avatar
unknown committed
713
  new_field_pack_flag= head[27];
714
  new_frm_ver= (head[2] - FRM_VER);
715
  field_pack_length= new_frm_ver < 2 ? 11 : 17;
unknown's avatar
unknown committed
716
  disk_buff= 0;
unknown's avatar
unknown committed
717

unknown's avatar
unknown committed
718
  error= 3;
719 720
  /* Position of the form in the form file. */
  if (!(pos= get_form_pos(file, head)))
721
    goto err;                                   /* purecov: inspected */
unknown's avatar
unknown committed
722

723
  share->frm_version= head[2];
724 725 726 727 728 729 730 731 732
  /*
    Check if .frm file created by MySQL 5.0. In this case we want to
    display CHAR fields as CHAR and not as VARCHAR.
    We do it this way as we want to keep the old frm version to enable
    MySQL 4.1 to read these files.
  */
  if (share->frm_version == FRM_VER_TRUE_VARCHAR -1 && head[33] == 5)
    share->frm_version= FRM_VER_TRUE_VARCHAR;

unknown's avatar
unknown committed
733
#ifdef WITH_PARTITION_STORAGE_ENGINE
734 735 736 737
  if (*(head+61) &&
      !(share->default_part_db_type= 
        ha_checktype(thd, (enum legacy_db_type) (uint) *(head+61), 1, 0)))
    goto err;
unknown's avatar
unknown committed
738
  DBUG_PRINT("info", ("default_part_db_type = %u", head[61]));
unknown's avatar
unknown committed
739
#endif
unknown's avatar
unknown committed
740
  legacy_db_type= (enum legacy_db_type) (uint) *(head+3);
unknown's avatar
unknown committed
741 742 743 744 745 746 747 748 749
  DBUG_ASSERT(share->db_plugin == NULL);
  /*
    if the storage engine is dynamic, no point in resolving it by its
    dynamically allocated legacy_db_type. We will resolve it later by name.
  */
  if (legacy_db_type > DB_TYPE_UNKNOWN && 
      legacy_db_type < DB_TYPE_FIRST_DYNAMIC)
    share->db_plugin= ha_lock_engine(NULL, 
                                     ha_checktype(thd, legacy_db_type, 0, 0));
unknown's avatar
unknown committed
750
  share->db_create_options= db_create_options= uint2korr(head+30);
751
  share->db_options_in_use= share->db_create_options;
752
  share->mysql_version= uint4korr(head+51);
unknown's avatar
unknown committed
753
  share->null_field_first= 0;
unknown's avatar
unknown committed
754 755
  if (!head[32])				// New frm file in 3.23
  {
756
    share->avg_row_length= uint4korr(head+34);
757 758
    share->transactional= (ha_choice) (head[39] & 3);
    share->page_checksum= (ha_choice) ((head[39] >> 2) & 3);
759
    share->row_type= (row_type) head[40];
760
    share->table_charset= get_charset((uint) head[38],MYF(0));
unknown's avatar
unknown committed
761
    share->null_field_first= 1;
762 763 764 765
  }
  if (!share->table_charset)
  {
    /* unknown charset in head[38] or pre-3.23 frm */
766 767 768 769 770 771
    if (use_mb(default_charset_info))
    {
      /* Warn that we may be changing the size of character columns */
      sql_print_warning("'%s' had no or invalid character set, "
                        "and default character set is multi-byte, "
                        "so character column sizes may have changed",
772
                        share->path.str);
773
    }
774
    share->table_charset= default_charset_info;
unknown's avatar
unknown committed
775
  }
776
  share->db_record_offset= 1;
unknown's avatar
unknown committed
777
  if (db_create_options & HA_OPTION_LONG_BLOB_PTR)
778
    share->blob_ptr_size= portable_sizeof_char_ptr;
779
  /* Set temporarily a good value for db_low_byte_first */
unknown's avatar
unknown committed
780
  share->db_low_byte_first= test(legacy_db_type != DB_TYPE_ISAM);
unknown's avatar
unknown committed
781
  error=4;
782 783
  share->max_rows= uint4korr(head+18);
  share->min_rows= uint4korr(head+22);
unknown's avatar
unknown committed
784 785

  /* Read keyinformation */
786
  key_info_length= (uint) uint2korr(head+28);
unknown's avatar
unknown committed
787
  VOID(my_seek(file,(ulong) uint2korr(head+6),MY_SEEK_SET,MYF(0)));
788
  if (read_string(file,(uchar**) &disk_buff,key_info_length))
789
    goto err;                                   /* purecov: inspected */
unknown's avatar
unknown committed
790
  if (disk_buff[0] & 0x80)
unknown's avatar
unknown committed
791
  {
792 793
    share->keys=      keys=      (disk_buff[1] << 7) | (disk_buff[0] & 0x7f);
    share->key_parts= key_parts= uint2korr(disk_buff+2);
unknown's avatar
unknown committed
794 795 796
  }
  else
  {
797 798
    share->keys=      keys=      disk_buff[0];
    share->key_parts= key_parts= disk_buff[1];
unknown's avatar
unknown committed
799
  }
800 801
  share->keys_for_keyread.init(0);
  share->keys_in_use.init(keys);
unknown's avatar
unknown committed
802 803

  n_length=keys*sizeof(KEY)+key_parts*sizeof(KEY_PART_INFO);
unknown's avatar
unknown committed
804 805
  if (!(keyinfo = (KEY*) alloc_root(&share->mem_root,
				    n_length + uint2korr(disk_buff+4))))
806
    goto err;                                   /* purecov: inspected */
unknown's avatar
unknown committed
807
  bzero((char*) keyinfo,n_length);
unknown's avatar
unknown committed
808
  share->key_info= keyinfo;
unknown's avatar
unknown committed
809
  key_part= my_reinterpret_cast(KEY_PART_INFO*) (keyinfo+keys);
unknown's avatar
unknown committed
810 811
  strpos=disk_buff+6;

unknown's avatar
unknown committed
812
  if (!(rec_per_key= (ulong*) alloc_root(&share->mem_root,
813
                                         sizeof(ulong)*key_parts)))
814
    goto err;
unknown's avatar
unknown committed
815 816 817

  for (i=0 ; i < keys ; i++, keyinfo++)
  {
818
    if (new_frm_ver >= 3)
819 820 821 822 823
    {
      keyinfo->flags=	   (uint) uint2korr(strpos) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+2);
      keyinfo->key_parts=  (uint) strpos[4];
      keyinfo->algorithm=  (enum ha_key_alg) strpos[5];
824
      keyinfo->block_size= uint2korr(strpos+6);
825 826 827 828 829 830 831 832 833 834
      strpos+=8;
    }
    else
    {
      keyinfo->flags=	 ((uint) strpos[0]) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+1);
      keyinfo->key_parts=  (uint) strpos[3];
      keyinfo->algorithm= HA_KEY_ALG_UNDEF;
      strpos+=4;
    }
unknown's avatar
unknown committed
835

unknown's avatar
unknown committed
836 837 838 839 840 841 842 843 844
    keyinfo->key_part=	 key_part;
    keyinfo->rec_per_key= rec_per_key;
    for (j=keyinfo->key_parts ; j-- ; key_part++)
    {
      *rec_per_key++=0;
      key_part->fieldnr=	(uint16) (uint2korr(strpos) & FIELD_NR_MASK);
      key_part->offset= (uint) uint2korr(strpos+2)-1;
      key_part->key_type=	(uint) uint2korr(strpos+5);
      // key_part->field=	(Field*) 0;	// Will be fixed later
845
      if (new_frm_ver >= 1)
unknown's avatar
unknown committed
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864
      {
	key_part->key_part_flag= *(strpos+4);
	key_part->length=	(uint) uint2korr(strpos+7);
	strpos+=9;
      }
      else
      {
	key_part->length=	*(strpos+4);
	key_part->key_part_flag=0;
	if (key_part->length > 128)
	{
	  key_part->length&=127;		/* purecov: inspected */
	  key_part->key_part_flag=HA_REVERSE_SORT; /* purecov: inspected */
	}
	strpos+=7;
      }
      key_part->store_length=key_part->length;
    }
  }
865 866
  keynames=(char*) key_part;
  strpos+= (strmov(keynames, (char *) strpos) - keynames)+1;
867

868
  share->reclength = uint2korr((head+16));
869
  share->stored_rec_length= share->reclength;
unknown's avatar
unknown committed
870
  if (*(head+26) == 1)
871
    share->system= 1;				/* one-record-database */
unknown's avatar
unknown committed
872 873 874
#ifdef HAVE_CRYPTED_FRM
  else if (*(head+26) == 2)
  {
unknown's avatar
unknown committed
875 876
    crypted= get_crypt_for_frm();
    share->crypted= 1;
unknown's avatar
unknown committed
877 878 879
  }
#endif

880 881 882 883
  record_offset= (ulong) (uint2korr(head+6)+
                          ((uint2korr(head+14) == 0xffff ?
                            uint4korr(head+47) : uint2korr(head+14))));
 
unknown's avatar
unknown committed
884
  if ((n_length= uint4korr(head+55)))
885 886
  {
    /* Read extra data segment */
887
    uchar *next_chunk, *buff_end;
888
    DBUG_PRINT("info", ("extra segment size is %u bytes", n_length));
889
    if (!(next_chunk= buff= (uchar*) my_malloc(n_length+1, MYF(MY_WME))))
890
      goto err;
891
    if (my_pread(file, buff, n_length, record_offset + share->reclength,
892 893
                 MYF(MY_NABP)))
    {
894
      goto free_and_err;
895
    }
896
    share->connect_string.length= uint2korr(buff);
897 898 899 900
    if (!(share->connect_string.str= strmake_root(&share->mem_root,
                                                  (char*) next_chunk + 2,
                                                  share->connect_string.
                                                  length)))
901
    {
902
      goto free_and_err;
903
    }
904
    next_chunk+= share->connect_string.length + 2;
905
    buff_end= buff + n_length;
906 907 908
    if (next_chunk + 2 < buff_end)
    {
      uint str_db_type_length= uint2korr(next_chunk);
909 910 911 912
      LEX_STRING name;
      name.str= (char*) next_chunk + 2;
      name.length= str_db_type_length;

unknown's avatar
unknown committed
913
      plugin_ref tmp_plugin= ha_resolve_by_name(thd, &name);
unknown's avatar
unknown committed
914
      if (tmp_plugin != NULL && !plugin_equals(tmp_plugin, share->db_plugin))
915
      {
unknown's avatar
unknown committed
916 917 918 919 920 921
        if (legacy_db_type > DB_TYPE_UNKNOWN &&
            legacy_db_type < DB_TYPE_FIRST_DYNAMIC &&
            legacy_db_type != ha_legacy_type(
                plugin_data(tmp_plugin, handlerton *)))
        {
          /* bad file, legacy_db_type did not match the name */
922
          goto free_and_err;
unknown's avatar
unknown committed
923
        }
unknown's avatar
unknown committed
924 925 926 927 928 929
        /*
          tmp_plugin is locked with a local lock.
          we unlock the old value of share->db_plugin before
          replacing it with a globally locked version of tmp_plugin
        */
        plugin_unlock(NULL, share->db_plugin);
930
        share->db_plugin= my_plugin_lock(NULL, tmp_plugin);
931 932
        DBUG_PRINT("info", ("setting dbtype to '%.*s' (%d)",
                            str_db_type_length, next_chunk + 2,
unknown's avatar
unknown committed
933
                            ha_legacy_type(share->db_type())));
934
      }
935
#ifdef WITH_PARTITION_STORAGE_ENGINE
936 937
      else if (str_db_type_length == 9 &&
               !strncmp((char *) next_chunk + 2, "partition", 9))
938
      {
939 940 941 942 943 944
        /*
          Use partition handler
          tmp_plugin is locked with a local lock.
          we unlock the old value of share->db_plugin before
          replacing it with a globally locked version of tmp_plugin
        */
945 946 947 948 949 950
        /* Check if the partitioning engine is ready */
        if (!plugin_is_ready(&name, MYSQL_STORAGE_ENGINE_PLUGIN))
        {
          error= 8;
          my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0),
                   "--skip-partition");
951
          goto free_and_err;
952
        }
953 954 955 956 957
        plugin_unlock(NULL, share->db_plugin);
        share->db_plugin= ha_lock_engine(NULL, partition_hton);
        DBUG_PRINT("info", ("setting dbtype to '%.*s' (%d)",
                            str_db_type_length, next_chunk + 2,
                            ha_legacy_type(share->db_type())));
958 959
      }
#endif
960 961 962 963
      else if (!tmp_plugin)
      {
        /* purecov: begin inspected */
        error= 8;
964
        name.str[name.length]= 0;
965
        my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), name.str);
966
        goto free_and_err;
967 968
        /* purecov: end */
      }
969 970
      next_chunk+= str_db_type_length + 2;
    }
unknown's avatar
unknown committed
971
    if (next_chunk + 5 < buff_end)
972
    {
973 974
      uint32 partition_info_len = uint4korr(next_chunk);
#ifdef WITH_PARTITION_STORAGE_ENGINE
975 976
      if ((share->partition_info_buffer_size=
             share->partition_info_len= partition_info_len))
977
      {
978
        if (!(share->partition_info= (char*)
979 980
              memdup_root(&share->mem_root, next_chunk + 4,
                          partition_info_len + 1)))
981
        {
982
          goto free_and_err;
983
        }
984 985 986 987 988
      }
#else
      if (partition_info_len)
      {
        DBUG_PRINT("info", ("WITH_PARTITION_STORAGE_ENGINE is not defined"));
989
        goto free_and_err;
990
      }
991
#endif
unknown's avatar
unknown committed
992
      next_chunk+= 5 + partition_info_len;
993
    }
994
    if (share->mysql_version >= 50110 && next_chunk < buff_end)
995 996 997 998 999 1000 1001
    {
      /* New auto_partitioned indicator introduced in 5.1.11 */
#ifdef WITH_PARTITION_STORAGE_ENGINE
      share->auto_partitioned= *next_chunk;
#endif
      next_chunk++;
    }
unknown's avatar
unknown committed
1002
    keyinfo= share->key_info;
1003 1004 1005 1006 1007 1008 1009
    for (i= 0; i < keys; i++, keyinfo++)
    {
      if (keyinfo->flags & HA_USES_PARSER)
      {
        LEX_STRING parser_name;
        if (next_chunk >= buff_end)
        {
unknown's avatar
unknown committed
1010 1011
          DBUG_PRINT("error",
                     ("fulltext key uses parser that is not defined in .frm"));
1012
          goto free_and_err;
1013
        }
1014 1015
        parser_name.str= (char*) next_chunk;
        parser_name.length= strlen((char*) next_chunk);
1016
        next_chunk+= parser_name.length + 1;
unknown's avatar
unknown committed
1017 1018
        keyinfo->parser= my_plugin_lock_by_name(NULL, &parser_name,
                                                MYSQL_FTPARSER_PLUGIN);
1019 1020 1021
        if (! keyinfo->parser)
        {
          my_error(ER_PLUGIN_IS_NOT_LOADED, MYF(0), parser_name.str);
1022
          goto free_and_err;
1023 1024 1025
        }
      }
    }
Sergei Golubchik's avatar
Sergei Golubchik committed
1026
    DBUG_ASSERT(next_chunk <= buff_end);
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
    if (share->db_create_options & HA_OPTION_TEXT_CREATE_OPTIONS)
    {
      /*
        store options position, but skip till the time we will
        know number of fields
      */
      options_len= uint4korr(next_chunk);
      options= next_chunk + 4;
      next_chunk+= options_len + 4;
    }
Sergei Golubchik's avatar
Sergei Golubchik committed
1037
    DBUG_ASSERT(next_chunk <= buff_end);
1038
  }
1039
  share->key_block_size= uint2korr(head+62);
unknown's avatar
unknown committed
1040 1041

  error=4;
1042
  extra_rec_buf_length= uint2korr(head+59);
unknown's avatar
unknown committed
1043
  rec_buff_length= ALIGN_SIZE(share->reclength + 1 + extra_rec_buf_length);
1044
  share->rec_buff_length= rec_buff_length;
1045 1046
  if (!(record= (uchar *) alloc_root(&share->mem_root,
                                     rec_buff_length)))
1047
    goto free_and_err;                          /* purecov: inspected */
1048 1049
  share->default_values= record;
  if (my_pread(file, record, (size_t) share->reclength,
1050
               record_offset, MYF(MY_NABP)))
1051
    goto free_and_err;                          /* purecov: inspected */
unknown's avatar
unknown committed
1052 1053

  VOID(my_seek(file,pos,MY_SEEK_SET,MYF(0)));
1054
  if (my_read(file, head,288,MYF(MY_NABP)))
1055
    goto free_and_err;
1056
#ifdef HAVE_CRYPTED_FRM
unknown's avatar
unknown committed
1057 1058 1059 1060
  if (crypted)
  {
    crypted->decode((char*) head+256,288-256);
    if (sint2korr(head+284) != 0)		// Should be 0
1061
      goto free_and_err;                        // Wrong password
unknown's avatar
unknown committed
1062
  }
1063
#endif
unknown's avatar
unknown committed
1064

1065 1066 1067 1068 1069 1070 1071 1072
  share->fields= uint2korr(head+258);
  pos= uint2korr(head+260);			/* Length of all screens */
  n_length= uint2korr(head+268);
  interval_count= uint2korr(head+270);
  interval_parts= uint2korr(head+272);
  int_length= uint2korr(head+274);
  share->null_fields= uint2korr(head+282);
  com_length= uint2korr(head+284);
1073 1074 1075
  vcol_screen_length= uint2korr(head+286);
  share->vfields= 0;
  share->stored_fields= share->fields;
1076
  share->comment.length=  (int) (head[46]);
1077
  share->comment.str= strmake_root(&share->mem_root, (char*) head+47,
1078
                                   share->comment.length);
unknown's avatar
unknown committed
1079

1080
  DBUG_PRINT("info",("i_count: %d  i_parts: %d  index: %d  n_length: %d  int_length: %d  com_length: %d  vcol_screen_length: %d", interval_count,interval_parts, share->keys,n_length,int_length, com_length, vcol_screen_length));
1081 1082


unknown's avatar
unknown committed
1083
  if (!(field_ptr = (Field **)
unknown's avatar
unknown committed
1084
	alloc_root(&share->mem_root,
1085
		   (uint) ((share->fields+1)*sizeof(Field*)+
unknown's avatar
unknown committed
1086
			   interval_count*sizeof(TYPELIB)+
1087
			   (share->fields+interval_parts+
1088
			    keys+3)*sizeof(char *)+
1089 1090
			   (n_length+int_length+com_length+
			       vcol_screen_length)))))
1091
    goto free_and_err;                           /* purecov: inspected */
unknown's avatar
unknown committed
1092

unknown's avatar
unknown committed
1093
  share->field= field_ptr;
1094
  read_length=(uint) (share->fields * field_pack_length +
1095 1096
		      pos+ (uint) (n_length+int_length+com_length+
		                   vcol_screen_length));
1097
  if (read_string(file,(uchar**) &disk_buff,read_length))
1098
    goto free_and_err;                           /* purecov: inspected */
1099
#ifdef HAVE_CRYPTED_FRM
unknown's avatar
unknown committed
1100 1101 1102 1103 1104 1105
  if (crypted)
  {
    crypted->decode((char*) disk_buff,read_length);
    delete crypted;
    crypted=0;
  }
1106
#endif
unknown's avatar
unknown committed
1107 1108
  strpos= disk_buff+pos;

1109
  share->intervals= (TYPELIB*) (field_ptr+share->fields+1);
unknown's avatar
unknown committed
1110 1111
  interval_array= (const char **) (share->intervals+interval_count);
  names= (char*) (interval_array+share->fields+interval_parts+keys+3);
unknown's avatar
unknown committed
1112
  if (!interval_count)
1113 1114
    share->intervals= 0;			// For better debugging
  memcpy((char*) names, strpos+(share->fields*field_pack_length),
unknown's avatar
unknown committed
1115
	 (uint) (n_length+int_length));
1116
  comment_pos= names+(n_length+int_length);
1117 1118 1119 1120 1121
  memcpy(comment_pos, disk_buff+read_length-com_length-vcol_screen_length, 
         com_length);
  vcol_screen_pos= names+(n_length+int_length+com_length);
  memcpy(vcol_screen_pos, disk_buff+read_length-vcol_screen_length, 
         vcol_screen_length);
unknown's avatar
unknown committed
1122

unknown's avatar
unknown committed
1123
  fix_type_pointers(&interval_array, &share->fieldnames, 1, &names);
1124
  if (share->fieldnames.count != share->fields)
1125
    goto free_and_err;
unknown's avatar
unknown committed
1126
  fix_type_pointers(&interval_array, share->intervals, interval_count,
unknown's avatar
unknown committed
1127
		    &names);
1128 1129 1130 1131

  {
    /* Set ENUM and SET lengths */
    TYPELIB *interval;
1132 1133
    for (interval= share->intervals;
         interval < share->intervals + interval_count;
1134 1135 1136
         interval++)
    {
      uint count= (uint) (interval->count + 1) * sizeof(uint);
unknown's avatar
unknown committed
1137
      if (!(interval->type_lengths= (uint *) alloc_root(&share->mem_root,
1138
                                                        count)))
1139
        goto free_and_err;
1140
      for (count= 0; count < interval->count; count++)
1141 1142 1143 1144
      {
        char *val= (char*) interval->type_names[count];
        interval->type_lengths[count]= strlen(val);
      }
1145 1146 1147 1148
      interval->type_lengths[count]= 0;
    }
  }

unknown's avatar
unknown committed
1149
  if (keynames)
unknown's avatar
unknown committed
1150
    fix_type_pointers(&interval_array, &share->keynames, 1, &keynames);
unknown's avatar
unknown committed
1151

unknown's avatar
unknown committed
1152 1153
 /* Allocate handler */
  if (!(handler_file= get_new_handler(share, thd->mem_root,
unknown's avatar
unknown committed
1154
                                      share->db_type())))
1155
    goto free_and_err;
1156

1157
  record= share->default_values-1;              /* Fieldstart = 1 */
1158
  null_bits_are_used= share->null_fields != 0;
unknown's avatar
unknown committed
1159
  if (share->null_field_first)
unknown's avatar
unknown committed
1160
  {
unknown's avatar
unknown committed
1161
    null_flags= null_pos= (uchar*) record+1;
unknown's avatar
unknown committed
1162
    null_bit_pos= (db_create_options & HA_OPTION_PACK_RECORD) ? 0 : 1;
1163 1164 1165 1166 1167
    /*
      null_bytes below is only correct under the condition that
      there are no bit fields.  Correct values is set below after the
      table struct is initialized
    */
1168
    share->null_bytes= (share->null_fields + null_bit_pos + 7) / 8;
unknown's avatar
unknown committed
1169
  }
unknown's avatar
unknown committed
1170
#ifndef WE_WANT_TO_SUPPORT_VERY_OLD_FRM_FILES
unknown's avatar
unknown committed
1171 1172
  else
  {
1173
    share->null_bytes= (share->null_fields+7)/8;
unknown's avatar
unknown committed
1174 1175
    null_flags= null_pos= (uchar*) (record + 1 +share->reclength -
                                    share->null_bytes);
unknown's avatar
unknown committed
1176
    null_bit_pos= 0;
unknown's avatar
unknown committed
1177
  }
unknown's avatar
unknown committed
1178
#endif
unknown's avatar
unknown committed
1179

1180
  use_hash= share->fields >= MAX_FIELDS_BEFORE_HASH;
unknown's avatar
unknown committed
1181
  if (use_hash)
1182
    use_hash= !hash_init(&share->name_hash,
unknown's avatar
unknown committed
1183
			 system_charset_info,
1184
			 share->fields,0,0,
unknown's avatar
unknown committed
1185
			 (hash_get_key) get_field_name,0,0);
unknown's avatar
unknown committed
1186

1187
  for (i=0 ; i < share->fields; i++, strpos+=field_pack_length, field_ptr++)
unknown's avatar
unknown committed
1188
  {
1189
    uint pack_flag, interval_nr, unireg_type, recpos, field_length;
1190 1191
    uint vcol_info_length=0;
    uint vcol_expr_length=0;
1192
    enum_field_types field_type;
1193
    CHARSET_INFO *charset=NULL;
unknown's avatar
unknown committed
1194
    Field::geometry_type geom_type= Field::GEOM_GEOMETRY;
1195
    LEX_STRING comment;
1196 1197
    Virtual_column_info *vcol_info= 0;
    bool fld_stored_in_db= TRUE;
unknown's avatar
unknown committed
1198

1199
    if (new_frm_ver >= 3)
1200 1201
    {
      /* new frm file in 4.1 */
1202 1203 1204 1205 1206 1207 1208
      field_length= uint2korr(strpos+3);
      recpos=	    uint3korr(strpos+5);
      pack_flag=    uint2korr(strpos+8);
      unireg_type=  (uint) strpos[10];
      interval_nr=  (uint) strpos[12];
      uint comment_length=uint2korr(strpos+15);
      field_type=(enum_field_types) (uint) strpos[13];
unknown's avatar
unknown committed
1209

1210
      /* charset and geometry_type share the same byte in frm */
1211
      if (field_type == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1212
      {
unknown's avatar
unknown committed
1213
#ifdef HAVE_SPATIAL
unknown's avatar
unknown committed
1214 1215
	geom_type= (Field::geometry_type) strpos[14];
	charset= &my_charset_bin;
unknown's avatar
unknown committed
1216 1217
#else
	error= 4;  // unsupported field type
1218
	goto free_and_err;
unknown's avatar
unknown committed
1219
#endif
unknown's avatar
unknown committed
1220 1221 1222
      }
      else
      {
1223 1224 1225 1226 1227 1228
        if (!strpos[14])
          charset= &my_charset_bin;
        else if (!(charset=get_charset((uint) strpos[14], MYF(0))))
        {
          error= 5; // Unknown or unavailable charset
          errarg= (int) strpos[14];
1229
          goto free_and_err;
1230
        }
unknown's avatar
unknown committed
1231
      }
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243

      if ((uchar)field_type == (uchar)MYSQL_TYPE_VIRTUAL)
      {
        DBUG_ASSERT(interval_nr); // Expect non-null expression
        /* 
          The interval_id byte in the .frm file stores the length of the
          expression statement for a virtual column.
        */
        vcol_info_length= interval_nr;
        interval_nr= 0;
      }

1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
      if (!comment_length)
      {
	comment.str= (char*) "";
	comment.length=0;
      }
      else
      {
	comment.str=    (char*) comment_pos;
	comment.length= comment_length;
	comment_pos+=   comment_length;
      }
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268

      if (vcol_info_length)
      {
        /*
          Get virtual column data stored in the .frm file as follows:
          byte 1      = 1 (always 1 to allow for future extensions)
          byte 2      = sql_type
          byte 3      = flags (as of now, 0 - no flags, 1 - field is physically stored)
          byte 4-...  = virtual column expression (text data)
        */
        vcol_info= new Virtual_column_info();
        if ((uint)vcol_screen_pos[0] != 1)
        {
          error= 4;
1269
          goto free_and_err;
1270 1271 1272 1273 1274 1275 1276 1277
        }
        field_type= (enum_field_types) (uchar) vcol_screen_pos[1];
        fld_stored_in_db= (bool) (uint) vcol_screen_pos[2];
        vcol_expr_length= vcol_info_length-(uint)FRM_VCOL_HEADER_SIZE;
        if (!(vcol_info->expr_str.str=
              (char *)memdup_root(&share->mem_root,
                                  vcol_screen_pos+(uint)FRM_VCOL_HEADER_SIZE,
                                  vcol_expr_length)))
1278
          goto free_and_err;
1279 1280 1281 1282
        vcol_info->expr_str.length= vcol_expr_length;
        vcol_screen_pos+= vcol_info_length;
        share->vfields++;
      }
1283 1284 1285
    }
    else
    {
1286 1287 1288
      field_length= (uint) strpos[3];
      recpos=	    uint2korr(strpos+4),
      pack_flag=    uint2korr(strpos+6);
unknown's avatar
unknown committed
1289
      pack_flag&=   ~FIELDFLAG_NO_DEFAULT;     // Safety for old files
1290 1291 1292
      unireg_type=  (uint) strpos[8];
      interval_nr=  (uint) strpos[10];

1293 1294
      /* old frm file */
      field_type= (enum_field_types) f_packtype(pack_flag);
unknown's avatar
unknown committed
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305
      if (f_is_binary(pack_flag))
      {
        /*
          Try to choose the best 4.1 type:
          - for 4.0 "CHAR(N) BINARY" or "VARCHAR(N) BINARY" 
            try to find a binary collation for character set.
          - for other types (e.g. BLOB) just use my_charset_bin. 
        */
        if (!f_is_blob(pack_flag))
        {
          // 3.23 or 4.0 string
1306
          if (!(charset= get_charset_by_csname(share->table_charset->csname,
unknown's avatar
unknown committed
1307 1308 1309 1310 1311 1312 1313
                                               MY_CS_BINSORT, MYF(0))))
            charset= &my_charset_bin;
        }
        else
          charset= &my_charset_bin;
      }
      else
1314
        charset= share->table_charset;
1315 1316
      bzero((char*) &comment, sizeof(comment));
    }
1317 1318 1319 1320

    if (interval_nr && charset->mbminlen > 1)
    {
      /* Unescape UCS2 intervals from HEX notation */
1321
      TYPELIB *interval= share->intervals + interval_nr - 1;
1322
      unhex_type2(interval);
1323 1324
    }
    
1325
#ifndef TO_BE_DELETED_ON_PRODUCTION
1326
    if (field_type == MYSQL_TYPE_NEWDECIMAL && !share->mysql_version)
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
    {
      /*
        Fix pack length of old decimal values from 5.0.3 -> 5.0.4
        The difference is that in the old version we stored precision
        in the .frm table while we now store the display_length
      */
      uint decimals= f_decimals(pack_flag);
      field_length= my_decimal_precision_to_length(field_length,
                                                   decimals,
                                                   f_is_dec(pack_flag) == 0);
unknown's avatar
unknown committed
1337 1338 1339 1340
      sql_print_error("Found incompatible DECIMAL field '%s' in %s; "
                      "Please do \"ALTER TABLE '%s' FORCE\" to fix it!",
                      share->fieldnames.type_names[i], share->table_name.str,
                      share->table_name.str);
1341 1342
      push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                          ER_CRASHED_ON_USAGE,
unknown's avatar
unknown committed
1343 1344 1345 1346 1347
                          "Found incompatible DECIMAL field '%s' in %s; "
                          "Please do \"ALTER TABLE '%s' FORCE\" to fix it!",
                          share->fieldnames.type_names[i],
                          share->table_name.str,
                          share->table_name.str);
1348 1349 1350 1351
      share->crashed= 1;                        // Marker for CHECK TABLE
    }
#endif

unknown's avatar
unknown committed
1352 1353
    *field_ptr= reg_field=
      make_field(share, record+recpos,
1354
		 (uint32) field_length,
unknown's avatar
unknown committed
1355
		 null_pos, null_bit_pos,
unknown's avatar
unknown committed
1356
		 pack_flag,
1357
		 field_type,
1358
		 charset,
unknown's avatar
unknown committed
1359
		 geom_type,
1360
		 (Field::utype) MTYP_TYPENR(unireg_type),
unknown's avatar
unknown committed
1361
		 (interval_nr ?
1362
		  share->intervals+interval_nr-1 :
unknown's avatar
unknown committed
1363
		  (TYPELIB*) 0),
unknown's avatar
unknown committed
1364
		 share->fieldnames.type_names[i]);
unknown's avatar
unknown committed
1365
    if (!reg_field)				// Not supported field type
1366 1367
    {
      error= 4;
1368
      goto free_and_err;			/* purecov: inspected */
1369
    }
1370

1371
    reg_field->field_index= i;
1372
    reg_field->comment=comment;
1373 1374
    reg_field->vcol_info= vcol_info;
    reg_field->stored_in_db= fld_stored_in_db;
1375
    if (field_type == MYSQL_TYPE_BIT && !f_bit_as_char(pack_flag))
unknown's avatar
unknown committed
1376
    {
1377
      null_bits_are_used= 1;
unknown's avatar
unknown committed
1378
      if ((null_bit_pos+= field_length & 7) > 7)
unknown's avatar
unknown committed
1379
      {
unknown's avatar
unknown committed
1380 1381
        null_pos++;
        null_bit_pos-= 8;
unknown's avatar
unknown committed
1382 1383
      }
    }
unknown's avatar
unknown committed
1384 1385 1386 1387 1388
    if (!(reg_field->flags & NOT_NULL_FLAG))
    {
      if (!(null_bit_pos= (null_bit_pos + 1) & 7))
        null_pos++;
    }
unknown's avatar
unknown committed
1389 1390
    if (f_no_default(pack_flag))
      reg_field->flags|= NO_DEFAULT_VALUE_FLAG;
unknown's avatar
unknown committed
1391

unknown's avatar
unknown committed
1392
    if (reg_field->unireg_check == Field::NEXT_NUMBER)
unknown's avatar
unknown committed
1393 1394
      share->found_next_number_field= field_ptr;
    if (share->timestamp_field == reg_field)
1395
      share->timestamp_field_offset= i;
unknown's avatar
unknown committed
1396

unknown's avatar
unknown committed
1397
    if (use_hash)
unknown's avatar
unknown committed
1398 1399 1400
    {
      if (my_hash_insert(&share->name_hash,
                         (uchar*) field_ptr))
1401 1402 1403 1404 1405 1406 1407
      {
        /*
          Set return code 8 here to indicate that an error has
          occurred but that the error message already has been
          sent (OOM).
        */
        error= 8; 
1408
        goto free_and_err;
1409
      }
unknown's avatar
unknown committed
1410
    }
1411 1412 1413 1414 1415 1416
    if (!reg_field->stored_in_db)
    {
      share->stored_fields--;
      if (share->stored_rec_length>=recpos)
        share->stored_rec_length= recpos-1;
    }
unknown's avatar
unknown committed
1417 1418
  }
  *field_ptr=0;					// End marker
1419 1420 1421
  /* Sanity checks: */
  DBUG_ASSERT(share->fields>=share->stored_fields);
  DBUG_ASSERT(share->reclength>=share->stored_rec_length);
unknown's avatar
unknown committed
1422 1423 1424 1425

  /* Fix key->name and key_part->field */
  if (key_parts)
  {
1426
    uint primary_key=(uint) (find_type((char*) primary_key_name,
1427
				       &share->keynames, 3) - 1);
1428
    longlong ha_option= handler_file->ha_table_flags();
unknown's avatar
unknown committed
1429 1430
    keyinfo= share->key_info;
    key_part= keyinfo->key_part;
unknown's avatar
unknown committed
1431

1432
    for (uint key=0 ; key < share->keys ; key++,keyinfo++)
unknown's avatar
unknown committed
1433
    {
unknown's avatar
unknown committed
1434
      uint usable_parts= 0;
1435
      keyinfo->name=(char*) share->keynames.type_names[key];
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
      keyinfo->name_length= strlen(keyinfo->name);
      keyinfo->cache_name=
        (uchar*) alloc_root(&share->mem_root,
                            share->table_cache_key.length+
                            keyinfo->name_length + 1);
      if (keyinfo->cache_name)           // If not out of memory
      {
        uchar *pos= keyinfo->cache_name;
        memcpy(pos, share->table_cache_key.str, share->table_cache_key.length);
        memcpy(pos + share->table_cache_key.length, keyinfo->name,
               keyinfo->name_length+1);
      }

1449
      /* Fix fulltext keys for old .frm files */
unknown's avatar
unknown committed
1450 1451
      if (share->key_info[key].flags & HA_FULLTEXT)
	share->key_info[key].algorithm= HA_KEY_ALG_FULLTEXT;
1452

unknown's avatar
unknown committed
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
      if (primary_key >= MAX_KEY && (keyinfo->flags & HA_NOSAME))
      {
	/*
	  If the UNIQUE key doesn't have NULL columns and is not a part key
	  declare this as a primary key.
	*/
	primary_key=key;
	for (i=0 ; i < keyinfo->key_parts ;i++)
	{
	  uint fieldnr= key_part[i].fieldnr;
	  if (!fieldnr ||
	      share->field[fieldnr-1]->null_ptr ||
	      share->field[fieldnr-1]->key_length() !=
	      key_part[i].length)
	  {
	    primary_key=MAX_KEY;		// Can't be used
	    break;
	  }
	}
      }

unknown's avatar
unknown committed
1474 1475
      for (i=0 ; i < keyinfo->key_parts ; key_part++,i++)
      {
unknown's avatar
unknown committed
1476
        Field *field;
unknown's avatar
unknown committed
1477
	if (new_field_pack_flag <= 1)
unknown's avatar
unknown committed
1478
	  key_part->fieldnr= (uint16) find_field(share->field,
1479
                                                 share->default_values,
unknown's avatar
unknown committed
1480 1481 1482 1483 1484
                                                 (uint) key_part->offset,
                                                 (uint) key_part->length);
	if (!key_part->fieldnr)
        {
          error= 4;                             // Wrong file
1485
          goto free_and_err;
unknown's avatar
unknown committed
1486 1487
        }
        field= key_part->field= share->field[key_part->fieldnr-1];
unknown's avatar
unknown committed
1488
        key_part->type= field->key_type();
unknown's avatar
unknown committed
1489 1490
        if (field->null_ptr)
        {
1491
          key_part->null_offset=(uint) ((uchar*) field->null_ptr -
unknown's avatar
unknown committed
1492 1493 1494 1495 1496 1497 1498
                                        share->default_values);
          key_part->null_bit= field->null_bit;
          key_part->store_length+=HA_KEY_NULL_LENGTH;
          keyinfo->flags|=HA_NULL_PART_KEY;
          keyinfo->extra_length+= HA_KEY_NULL_LENGTH;
          keyinfo->key_length+= HA_KEY_NULL_LENGTH;
        }
1499
        if (field->type() == MYSQL_TYPE_BLOB ||
1500 1501
            field->real_type() == MYSQL_TYPE_VARCHAR ||
            field->type() == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1502
        {
1503 1504
          if (field->type() == MYSQL_TYPE_BLOB ||
              field->type() == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
            key_part->key_part_flag|= HA_BLOB_PART;
          else
            key_part->key_part_flag|= HA_VAR_LENGTH_PART;
          keyinfo->extra_length+=HA_KEY_BLOB_LENGTH;
          key_part->store_length+=HA_KEY_BLOB_LENGTH;
          keyinfo->key_length+= HA_KEY_BLOB_LENGTH;
        }
        if (field->type() == MYSQL_TYPE_BIT)
          key_part->key_part_flag|= HA_BIT_PART;

        if (i == 0 && key != primary_key)
          field->flags |= (((keyinfo->flags & HA_NOSAME) &&
                           (keyinfo->key_parts == 1)) ?
                           UNIQUE_KEY_FLAG : MULTIPLE_KEY_FLAG);
        if (i == 0)
          field->key_start.set_bit(key);
        if (field->key_length() == key_part->length &&
            !(field->flags & BLOB_FLAG))
        {
          if (handler_file->index_flags(key, i, 0) & HA_KEYREAD_ONLY)
          {
            share->keys_for_keyread.set_bit(key);
            field->part_of_key.set_bit(key);
1528
            field->part_of_key_not_clustered.set_bit(key);
unknown's avatar
unknown committed
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
          }
          if (handler_file->index_flags(key, i, 1) & HA_READ_ORDER)
            field->part_of_sortkey.set_bit(key);
        }
        if (!(key_part->key_part_flag & HA_REVERSE_SORT) &&
            usable_parts == i)
          usable_parts++;			// For FILESORT
        field->flags|= PART_KEY_FLAG;
        if (key == primary_key)
        {
          field->flags|= PRI_KEY_FLAG;
          /*
            If this field is part of the primary key and all keys contains
            the primary key, then we can use any key to find this column
          */
          if (ha_option & HA_PRIMARY_KEY_IN_READ_INDEX)
1545
          {
1546 1547 1548
            if (field->key_length() == key_part->length &&
                !(field->flags & BLOB_FLAG))
              field->part_of_key= share->keys_in_use;
1549
            if (field->part_of_sortkey.is_set(key))
1550 1551
              field->part_of_sortkey= share->keys_in_use;
          }
unknown's avatar
unknown committed
1552 1553 1554
        }
        if (field->key_length() != key_part->length)
        {
1555
#ifndef TO_BE_DELETED_ON_PRODUCTION
1556
          if (field->type() == MYSQL_TYPE_NEWDECIMAL)
unknown's avatar
unknown committed
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582
          {
            /*
              Fix a fatal error in decimal key handling that causes crashes
              on Innodb. We fix it by reducing the key length so that
              InnoDB never gets a too big key when searching.
              This allows the end user to do an ALTER TABLE to fix the
              error.
            */
            keyinfo->key_length-= (key_part->length - field->key_length());
            key_part->store_length-= (uint16)(key_part->length -
                                              field->key_length());
            key_part->length= (uint16)field->key_length();
            sql_print_error("Found wrong key definition in %s; "
                            "Please do \"ALTER TABLE '%s' FORCE \" to fix it!",
                            share->table_name.str,
                            share->table_name.str);
            push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                                ER_CRASHED_ON_USAGE,
                                "Found wrong key definition in %s; "
                                "Please do \"ALTER TABLE '%s' FORCE\" to fix "
                                "it!",
                                share->table_name.str,
                                share->table_name.str);
            share->crashed= 1;                // Marker for CHECK TABLE
            goto to_be_deleted;
          }
1583
#endif
unknown's avatar
unknown committed
1584 1585
          key_part->key_part_flag|= HA_PART_KEY_SEG;
        }
1586 1587 1588

	to_be_deleted:

unknown's avatar
unknown committed
1589 1590 1591 1592 1593 1594
        /*
          If the field can be NULL, don't optimize away the test
          key_part_column = expression from the WHERE clause
          as we need to test for NULL = NULL.
        */
        if (field->real_maybe_null())
1595
          key_part->key_part_flag|= HA_NULL_PART;
1596 1597 1598 1599 1600 1601 1602 1603 1604
        /*
          Sometimes we can compare key parts for equality with memcmp.
          But not always.
        */
        if (!(key_part->key_part_flag & (HA_BLOB_PART | HA_VAR_LENGTH_PART |
                                         HA_BIT_PART)) &&
            key_part->type != HA_KEYTYPE_FLOAT &&
            key_part->type == HA_KEYTYPE_DOUBLE)
          key_part->key_part_flag|= HA_CAN_MEMCMP;
unknown's avatar
unknown committed
1605
      }
unknown's avatar
unknown committed
1606
      keyinfo->usable_key_parts= usable_parts; // Filesort
1607

1608
      set_if_bigger(share->max_key_length,keyinfo->key_length+
1609
                    keyinfo->key_parts);
1610
      share->total_key_length+= keyinfo->key_length;
1611 1612 1613 1614 1615 1616
      /*
        MERGE tables do not have unique indexes. But every key could be
        an unique index on the underlying MyISAM table. (Bug #10400)
      */
      if ((keyinfo->flags & HA_NOSAME) ||
          (ha_option & HA_ANY_INDEX_MAY_BE_UNIQUE))
unknown's avatar
unknown committed
1617
        set_if_bigger(share->max_unique_length,keyinfo->key_length);
unknown's avatar
unknown committed
1618
    }
1619
    if (primary_key < MAX_KEY &&
1620
	(share->keys_in_use.is_set(primary_key)))
unknown's avatar
unknown committed
1621
    {
1622
      share->primary_key= primary_key;
1623 1624 1625 1626
      /*
	If we are using an integer as the primary key then allow the user to
	refer to it as '_rowid'
      */
unknown's avatar
unknown committed
1627
      if (share->key_info[primary_key].key_parts == 1)
unknown's avatar
unknown committed
1628
      {
unknown's avatar
unknown committed
1629
	Field *field= share->key_info[primary_key].key_part[0].field;
unknown's avatar
unknown committed
1630
	if (field && field->result_type() == INT_RESULT)
unknown's avatar
unknown committed
1631 1632 1633 1634 1635
        {
          /* note that fieldnr here (and rowid_field_offset) starts from 1 */
	  share->rowid_field_offset= (share->key_info[primary_key].key_part[0].
                                      fieldnr);
        }
unknown's avatar
unknown committed
1636 1637 1638
      }
    }
    else
1639
      share->primary_key = MAX_KEY; // we do not have a primary key
unknown's avatar
unknown committed
1640
  }
1641
  else
1642
    share->primary_key= MAX_KEY;
1643
  x_free((uchar*) disk_buff);
1644
  disk_buff=0;
unknown's avatar
unknown committed
1645
  if (new_field_pack_flag <= 1)
1646 1647 1648
  {
    /* Old file format with default as not null */
    uint null_length= (share->null_fields+7)/8;
unknown's avatar
unknown committed
1649
    bfill(share->default_values + (null_flags - (uchar*) record),
1650
          null_length, 255);
unknown's avatar
unknown committed
1651 1652
  }

1653 1654 1655
  if (share->db_create_options & HA_OPTION_TEXT_CREATE_OPTIONS)
  {
    DBUG_ASSERT(options_len);
Sergei Golubchik's avatar
Sergei Golubchik committed
1656
    if (engine_table_options_frm_read(options, options_len, share))
1657 1658
      goto free_and_err;
  }
1659
  if (parse_engine_table_options(thd, handler_file->partition_ht(), share))
Sergei Golubchik's avatar
Sergei Golubchik committed
1660
    goto free_and_err;
1661 1662
  my_free(buff, MYF(MY_ALLOW_ZERO_PTR));

unknown's avatar
unknown committed
1663
  if (share->found_next_number_field)
unknown's avatar
unknown committed
1664
  {
unknown's avatar
unknown committed
1665
    reg_field= *share->found_next_number_field;
1666
    if ((int) (share->next_number_index= (uint)
1667 1668
	       find_ref_key(share->key_info, share->keys,
                            share->default_values, reg_field,
1669 1670
			    &share->next_number_key_offset,
                            &share->next_number_keypart)) < 0)
unknown's avatar
unknown committed
1671
    {
1672
      /* Wrong field definition */
1673 1674
      error= 4;
      goto err;
unknown's avatar
unknown committed
1675 1676
    }
    else
unknown's avatar
unknown committed
1677
      reg_field->flags |= AUTO_INCREMENT_FLAG;
unknown's avatar
unknown committed
1678 1679
  }

1680
  if (share->blob_fields)
unknown's avatar
unknown committed
1681 1682
  {
    Field **ptr;
1683
    uint k, *save;
unknown's avatar
unknown committed
1684

1685 1686
    /* Store offsets to blob fields to find them fast */
    if (!(share->blob_field= save=
unknown's avatar
unknown committed
1687
	  (uint*) alloc_root(&share->mem_root,
1688
                             (uint) (share->blob_fields* sizeof(uint)))))
1689
      goto err;
unknown's avatar
unknown committed
1690
    for (k=0, ptr= share->field ; *ptr ; ptr++, k++)
unknown's avatar
unknown committed
1691 1692
    {
      if ((*ptr)->flags & BLOB_FLAG)
1693
	(*save++)= k;
unknown's avatar
unknown committed
1694 1695 1696
    }
  }

1697 1698 1699 1700
  /*
    the correct null_bytes can now be set, since bitfields have been taken
    into account
  */
unknown's avatar
unknown committed
1701
  share->null_bytes= (null_pos - (uchar*) null_flags +
1702
                      (null_bit_pos + 7) / 8);
unknown's avatar
unknown committed
1703
  share->last_null_bit_pos= null_bit_pos;
1704 1705
  share->null_bytes_for_compare= null_bits_are_used ? share->null_bytes : 0;
  share->can_cmp_whole_record= (share->blob_fields == 0 &&
Michael Widenius's avatar
Michael Widenius committed
1706
                                share->varchar_fields == 0);
unknown's avatar
unknown committed
1707

unknown's avatar
unknown committed
1708
  share->db_low_byte_first= handler_file->low_byte_first();
1709 1710 1711
  share->column_bitmap_size= bitmap_buffer_size(share->fields);

  if (!(bitmaps= (my_bitmap_map*) alloc_root(&share->mem_root,
unknown's avatar
unknown committed
1712
                                             share->column_bitmap_size)))
1713 1714 1715 1716
    goto err;
  bitmap_init(&share->all_set, bitmaps, share->fields, FALSE);
  bitmap_set_all(&share->all_set);

unknown's avatar
unknown committed
1717 1718 1719 1720 1721 1722 1723
  delete handler_file;
#ifndef DBUG_OFF
  if (use_hash)
    (void) hash_check(&share->name_hash);
#endif
  DBUG_RETURN (0);

1724 1725
 free_and_err:
  my_free(buff, MYF(MY_ALLOW_ZERO_PTR));
unknown's avatar
unknown committed
1726 1727 1728 1729
 err:
  share->error= error;
  share->open_errno= my_errno;
  share->errarg= errarg;
1730
  x_free((uchar*) disk_buff);
unknown's avatar
unknown committed
1731 1732 1733
  delete crypted;
  delete handler_file;
  hash_free(&share->name_hash);
1734 1735 1736 1737 1738
  if (share->ha_data_destroy)
  {
    share->ha_data_destroy(share->ha_data);
    share->ha_data_destroy= NULL;
  }
unknown's avatar
unknown committed
1739 1740 1741 1742 1743

  open_table_error(share, error, share->open_errno, errarg);
  DBUG_RETURN(error);
} /* open_binary_frm */

1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
/*
  @brief
    Clear GET_FIXED_FIELDS_FLAG in all fields of a table

  @param
    table     The table for whose fields the flags are to be cleared

  @note
    This routine is used for error handling purposes.

  @return
    none
*/

static void clear_field_flag(TABLE *table)
{
  Field **ptr;
  DBUG_ENTER("clear_field_flag");

  for (ptr= table->field; *ptr; ptr++)
    (*ptr)->flags&= (~GET_FIXED_FIELDS_FLAG);
  DBUG_VOID_RETURN;
}


/*
  @brief 
    Perform semantic analysis of the defining expression for a virtual column

  @param
    thd           The thread object
  @param
    table         The table containing the virtual column
  @param
    vcol_field    The virtual field whose defining expression is to be analyzed

  @details
    The function performs semantic analysis of the defining expression for
    the virtual column vcol_field. The expression is used to compute the
    values of this column.

  @note
   The function exploits the fact  that the fix_fields method sets the flag 
   GET_FIXED_FIELDS_FLAG for all fields in the item tree.
   This flag must always be unset before returning from this function
   since it is used for other purposes as well.
 
  @retval
    TRUE           An error occurred, something was wrong with the function
  @retval
    FALSE          Otherwise
*/

bool fix_vcol_expr(THD *thd,
                   TABLE *table,
                   Field *vcol_field)
{
  Virtual_column_info *vcol_info= vcol_field->vcol_info;
  Item* func_expr= vcol_info->expr_item;
  uint dir_length, home_dir_length;
  bool result= TRUE;
  TABLE_LIST tables;
  TABLE_LIST *save_table_list, *save_first_table, *save_last_table;
  int error;
  Name_resolution_context *context;
  const char *save_where;
  char* db_name;
  char db_name_string[FN_REFLEN];
  bool save_use_only_table_context;
  Field **ptr, *field;
  enum_mark_columns save_mark_used_columns= thd->mark_used_columns;
  DBUG_ASSERT(func_expr);
  DBUG_ENTER("fix_vcol_expr");

  /*
    Set-up the TABLE_LIST object to be a list with a single table
    Set the object to zero to create NULL pointers and set alias
    and real name to table name and get database name from file name.
  */

  bzero((void*)&tables, sizeof(TABLE_LIST));
  tables.alias= tables.table_name= (char*) table->s->table_name.str;
  tables.table= table;
  tables.next_local= 0;
  tables.next_name_resolution_table= 0;
  strmov(db_name_string, table->s->normalized_path.str);
  dir_length= dirname_length(db_name_string);
  db_name_string[dir_length - 1]= 0;
  home_dir_length= dirname_length(db_name_string);
  db_name= &db_name_string[home_dir_length];
  tables.db= db_name;

  thd->mark_used_columns= MARK_COLUMNS_NONE;

  context= thd->lex->current_context();
  table->map= 1; //To ensure correct calculation of const item
  table->get_fields_in_item_tree= TRUE;
  save_table_list= context->table_list;
  save_first_table= context->first_name_resolution_table;
  save_last_table= context->last_name_resolution_table;
  context->table_list= &tables;
  context->first_name_resolution_table= &tables;
  context->last_name_resolution_table= NULL;
  func_expr->walk(&Item::change_context_processor, 0, (uchar*) context);
  save_where= thd->where;
  thd->where= "virtual column function";

  /* Save the context before fixing the fields*/
  save_use_only_table_context= thd->lex->use_only_table_context;
  thd->lex->use_only_table_context= TRUE;
  /* Fix fields referenced to by the virtual column function */
  error= func_expr->fix_fields(thd, (Item**)0);
  /* Restore the original context*/
  thd->lex->use_only_table_context= save_use_only_table_context;
  context->table_list= save_table_list;
  context->first_name_resolution_table= save_first_table;
  context->last_name_resolution_table= save_last_table;

  if (unlikely(error))
  {
    DBUG_PRINT("info", 
    ("Field in virtual column expression does not belong to the table"));
    goto end;
  }
  thd->where= save_where;
Igor Babaev's avatar
Igor Babaev committed
1869 1870 1871 1872 1873
  if (unlikely(func_expr->result_type() == ROW_RESULT))
  {
     my_error(ER_ROW_EXPR_FOR_VCOL, MYF(0));
     goto end;
  }
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
#ifdef PARANOID
  /*
    Walk through the Item tree checking if all items are valid
   to be part of the virtual column
  */
  error= func_expr->walk(&Item::check_vcol_func_processor, 0, NULL);
  if (error)
  {
    my_error(ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED, MYF(0), field_name);
    goto end;
  }
#endif
  if (unlikely(func_expr->const_item()))
  {
    my_error(ER_CONST_EXPR_IN_VCOL, MYF(0));
    goto end;
  }
  /* Ensure that this virtual column is not based on another virtual field. */
  ptr= table->field;
  while ((field= *(ptr++))) 
  {
    if ((field->flags & GET_FIXED_FIELDS_FLAG) &&
        (field->vcol_info))
    {
      my_error(ER_VCOL_BASED_ON_VCOL, MYF(0));
      goto end;
    }
  }
  result= FALSE;

end:

  /* Clear GET_FIXED_FIELDS_FLAG for the fields of the table */
  clear_field_flag(table);

  table->get_fields_in_item_tree= FALSE;
  thd->mark_used_columns= save_mark_used_columns;
  table->map= 0; //Restore old value
 
 DBUG_RETURN(result);
}

/*
  @brief
    Unpack the definition of a virtual column from its linear representation

  @parm
    thd                  The thread object
  @param
    table                The table containing the virtual column
  @param
    field                The field for the virtual
  @param  
    vcol_expr            The string representation of the defining expression
  @param[out]
    error_reported       The flag to inform the caller that no other error
                         messages are to be generated

  @details
    The function takes string representation 'vcol_expr' of the defining
    expression for the virtual field 'field' of the table 'table' and
    parses it, building an item object for it. The pointer to this item is
    placed into in field->vcol_info.expr_item. After this the function performs
    semantic analysis of the item by calling the the function fix_vcol_expr.
Igor Babaev's avatar
Igor Babaev committed
1938 1939
    Since the defining expression is part of the table definition the item for
    it is created in table->memroot within the special arena TABLE::expr_arena.
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955

  @note
    Before passing 'vcol_expr" to the parser the function embraces it in 
    parenthesis and prepands it a special keyword.
  
   @retval
    FALSE           If a success
   @retval
    TRUE            Otherwise
*/
bool unpack_vcol_info_from_frm(THD *thd,
                               TABLE *table,
                               Field *field,
                               LEX_STRING *vcol_expr,
                               bool *error_reported)
{
Michael Widenius's avatar
Michael Widenius committed
1956 1957 1958 1959 1960 1961
  bool rc;
  char *vcol_expr_str;
  int str_len;
  CHARSET_INFO *old_character_set_client;
  Query_arena *backup_stmt_arena_ptr;
  Query_arena backup_arena;
1962
  Query_arena *vcol_arena= 0;
Michael Widenius's avatar
Michael Widenius committed
1963
  Parser_state parser_state;
1964 1965 1966
  DBUG_ENTER("unpack_vcol_info_from_frm");
  DBUG_ASSERT(vcol_expr);

1967 1968 1969
  old_character_set_client= thd->variables.character_set_client;
  backup_stmt_arena_ptr= thd->stmt_arena;

1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
  /* 
    Step 1: Construct the input string for the parser.
    The string to be parsed has to be of the following format:
    "PARSE_VCOL_EXPR (<expr_string_from_frm>)".
  */
  
  if (!(vcol_expr_str= (char*) alloc_root(&table->mem_root,
                                          vcol_expr->length + 
                                            parse_vcol_keyword.length + 3)))
  {
    DBUG_RETURN(TRUE);
  }
  memcpy(vcol_expr_str,
         (char*) parse_vcol_keyword.str,
         parse_vcol_keyword.length);
  str_len= parse_vcol_keyword.length;
  memcpy(vcol_expr_str + str_len, "(", 1);
  str_len++;
  memcpy(vcol_expr_str + str_len, 
         (char*) vcol_expr->str, 
         vcol_expr->length);
  str_len+= vcol_expr->length;
  memcpy(vcol_expr_str + str_len, ")", 1);
  str_len++;
  memcpy(vcol_expr_str + str_len, "\0", 1);
  str_len++;
Michael Widenius's avatar
Michael Widenius committed
1996 1997 1998

  if (parser_state.init(thd, vcol_expr_str, str_len))
    goto err;
1999 2000 2001 2002

  /* 
    Step 2: Setup thd for parsing.
  */
Michael Widenius's avatar
Michael Widenius committed
2003
  vcol_arena= table->expr_arena;
Igor Babaev's avatar
Igor Babaev committed
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
  if (!vcol_arena)
  {
    Query_arena expr_arena(&table->mem_root, Query_arena::INITIALIZED);
    if (!(vcol_arena= (Query_arena *) alloc_root(&table->mem_root,
                                                 sizeof(Query_arena))))
      goto err;
    *vcol_arena= expr_arena;
    table->expr_arena= vcol_arena;
  }
  thd->set_n_backup_active_arena(vcol_arena, &backup_arena);
  thd->stmt_arena= vcol_arena;
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034

  thd->lex->parse_vcol_expr= TRUE;

  /* 
    Step 3: Use the parser to build an Item object from vcol_expr_str.
  */
  if (parse_sql(thd, &parser_state, NULL))
  {
    goto err;
  }
  /* From now on use vcol_info generated by the parser. */
  field->vcol_info= thd->lex->vcol_info;

  /* Validate the Item tree. */
  if (fix_vcol_expr(thd, table, field))
  {
    *error_reported= TRUE;
    field->vcol_info= 0;
    goto err;
  }
Michael Widenius's avatar
Michael Widenius committed
2035
  rc= FALSE;
2036 2037 2038 2039 2040 2041 2042 2043
  goto end;

err:
  rc= TRUE;
  thd->lex->parse_vcol_expr= FALSE;
  thd->free_items();
end:
  thd->stmt_arena= backup_stmt_arena_ptr;
Igor Babaev's avatar
Igor Babaev committed
2044 2045
  if (vcol_arena)
    thd->restore_active_arena(vcol_arena, &backup_arena);
2046 2047 2048 2049 2050 2051 2052 2053
  thd->variables.character_set_client= old_character_set_client;

  DBUG_RETURN(rc);
}

/*
  Read data from a binary .frm file from MySQL 3.23 - 5.0 into TABLE_SHARE
*/
unknown's avatar
unknown committed
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081

/*
  Open a table based on a TABLE_SHARE

  SYNOPSIS
    open_table_from_share()
    thd			Thread handler
    share		Table definition
    alias       	Alias for table
    db_stat		open flags (for example HA_OPEN_KEYFILE|
    			HA_OPEN_RNDFILE..) can be 0 (example in
                        ha_example_table)
    prgflag   		READ_ALL etc..
    ha_open_flags	HA_OPEN_ABORT_IF_LOCKED etc..
    outparam       	result table

  RETURN VALUES
   0	ok
   1	Error (see open_table_error)
   2    Error (see open_table_error)
   3    Wrong data in .frm file
   4    Error (see open_table_error)
   5    Error (see open_table_error: charset unavailable)
   7    Table definition has changed in engine
*/

int open_table_from_share(THD *thd, TABLE_SHARE *share, const char *alias,
                          uint db_stat, uint prgflag, uint ha_open_flags,
unknown's avatar
unknown committed
2082
                          TABLE *outparam, bool is_create_table)
unknown's avatar
unknown committed
2083 2084
{
  int error;
2085
  uint records, i, bitmap_size;
unknown's avatar
unknown committed
2086
  bool error_reported= FALSE;
2087
  uchar *record, *bitmaps;
2088
  Field **field_ptr, **vfield_ptr;
2089
  uint8 save_context_analysis_only= thd->lex->context_analysis_only;
unknown's avatar
unknown committed
2090 2091
  DBUG_ENTER("open_table_from_share");
  DBUG_PRINT("enter",("name: '%s.%s'  form: 0x%lx", share->db.str,
unknown's avatar
unknown committed
2092
                      share->table_name.str, (long) outparam));
unknown's avatar
unknown committed
2093

2094 2095 2096
  /* Parsing of partitioning information from .frm needs thd->lex set up. */
  DBUG_ASSERT(thd->lex->is_lex_started);

2097
  thd->lex->context_analysis_only= 0; // not a view
2098

unknown's avatar
unknown committed
2099 2100 2101 2102 2103
  error= 1;
  bzero((char*) outparam, sizeof(*outparam));
  outparam->in_use= thd;
  outparam->s= share;
  outparam->db_stat= db_stat;
2104
  outparam->write_row_record= NULL;
unknown's avatar
unknown committed
2105 2106 2107

  init_sql_alloc(&outparam->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0);

2108
  if (outparam->alias.copy(alias, strlen(alias), table_alias_charset))
unknown's avatar
unknown committed
2109 2110
    goto err;
  outparam->quick_keys.init();
2111
  outparam->covering_keys.init();
2112
  outparam->merge_keys.init();
unknown's avatar
unknown committed
2113 2114 2115
  outparam->keys_in_use_for_query.init();

  /* Allocate handler */
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
  outparam->file= 0;
  if (!(prgflag & OPEN_FRM_FILE_ONLY))
  {
    if (!(outparam->file= get_new_handler(share, &outparam->mem_root,
                                          share->db_type())))
      goto err;
  }
  else
  {
    DBUG_ASSERT(!db_stat);
  }
unknown's avatar
unknown committed
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136

  error= 4;
  outparam->reginfo.lock_type= TL_UNLOCK;
  outparam->current_lock= F_UNLCK;
  records=0;
  if ((db_stat & HA_OPEN_KEYFILE) || (prgflag & DELAYED_OPEN))
    records=1;
  if (prgflag & (READ_ALL+EXTRA_RECORD))
    records++;

2137
  if (!(record= (uchar*) alloc_root(&outparam->mem_root,
unknown's avatar
unknown committed
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
                                   share->rec_buff_length * records)))
    goto err;                                   /* purecov: inspected */

  if (records == 0)
  {
    /* We are probably in hard repair, and the buffers should not be used */
    outparam->record[0]= outparam->record[1]= share->default_values;
  }
  else
  {
    outparam->record[0]= record;
    if (records > 1)
      outparam->record[1]= record+ share->rec_buff_length;
    else
      outparam->record[1]= outparam->record[0];   // Safety
  }

2155
#ifdef HAVE_valgrind
unknown's avatar
unknown committed
2156 2157 2158 2159 2160 2161 2162
  /*
    We need this because when we read var-length rows, we are not updating
    bytes after end of varchar
  */
  if (records > 1)
  {
    memcpy(outparam->record[0], share->default_values, share->rec_buff_length);
2163
    memcpy(outparam->record[1], share->default_values, share->null_bytes);
unknown's avatar
unknown committed
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176
    if (records > 2)
      memcpy(outparam->record[1], share->default_values,
             share->rec_buff_length);
  }
#endif

  if (!(field_ptr = (Field **) alloc_root(&outparam->mem_root,
                                          (uint) ((share->fields+1)*
                                                  sizeof(Field*)))))
    goto err;                                   /* purecov: inspected */

  outparam->field= field_ptr;

2177
  record= (uchar*) outparam->record[0]-1;	/* Fieldstart = 1 */
unknown's avatar
unknown committed
2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
  if (share->null_field_first)
    outparam->null_flags= (uchar*) record+1;
  else
    outparam->null_flags= (uchar*) (record+ 1+ share->reclength -
                                    share->null_bytes);

  /* Setup copy of fields from share, but use the right alias and record */
  for (i=0 ; i < share->fields; i++, field_ptr++)
  {
    if (!((*field_ptr)= share->field[i]->clone(&outparam->mem_root, outparam)))
      goto err;
  }
  (*field_ptr)= 0;                              // End marker

  if (share->found_next_number_field)
    outparam->found_next_number_field=
      outparam->field[(uint) (share->found_next_number_field - share->field)];
  if (share->timestamp_field)
    outparam->timestamp_field= (Field_timestamp*) outparam->field[share->timestamp_field_offset];


  /* Fix key->name and key_part->field */
  if (share->key_parts)
  {
    KEY	*key_info, *key_info_end;
    KEY_PART_INFO *key_part;
    uint n_length;
    n_length= share->keys*sizeof(KEY) + share->key_parts*sizeof(KEY_PART_INFO);
    if (!(key_info= (KEY*) alloc_root(&outparam->mem_root, n_length)))
      goto err;
    outparam->key_info= key_info;
    key_part= (my_reinterpret_cast(KEY_PART_INFO*) (key_info+share->keys));
    
    memcpy(key_info, share->key_info, sizeof(*key_info)*share->keys);
    memcpy(key_part, share->key_info[0].key_part, (sizeof(*key_part) *
                                                   share->key_parts));

    for (key_info_end= key_info + share->keys ;
         key_info < key_info_end ;
         key_info++)
    {
      KEY_PART_INFO *key_part_end;

      key_info->table= outparam;
      key_info->key_part= key_part;

      for (key_part_end= key_part+ key_info->key_parts ;
           key_part < key_part_end ;
           key_part++)
      {
        Field *field= key_part->field= outparam->field[key_part->fieldnr-1];

        if (field->key_length() != key_part->length &&
            !(field->flags & BLOB_FLAG))
        {
          /*
            We are using only a prefix of the column as a key:
            Create a new field for the key part that matches the index
          */
          field= key_part->field=field->new_field(&outparam->mem_root,
unknown's avatar
unknown committed
2238
                                                  outparam, 0);
unknown's avatar
unknown committed
2239 2240 2241 2242 2243 2244
          field->field_length= key_part->length;
        }
      }
    }
  }

2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272
  /*
    Process virtual columns, if any.
  */
  if (!(vfield_ptr = (Field **) alloc_root(&outparam->mem_root,
                                          (uint) ((share->vfields+1)*
                                                  sizeof(Field*)))))
    goto err;

  outparam->vfield= vfield_ptr;
  
  for (field_ptr= outparam->field; *field_ptr; field_ptr++)
  {
    if ((*field_ptr)->vcol_info)
    {
      if (unpack_vcol_info_from_frm(thd,
                                    outparam,
                                    *field_ptr,
                                    &(*field_ptr)->vcol_info->expr_str,
                                    &error_reported))
      {
        error= 4; // in case no error is reported
        goto err;
      }
      *(vfield_ptr++)= *field_ptr;
    }
  }
  *vfield_ptr= 0;                              // End marker

unknown's avatar
unknown committed
2273
#ifdef WITH_PARTITION_STORAGE_ENGINE
2274
  if (share->partition_info_len && outparam->file)
unknown's avatar
unknown committed
2275
  {
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
  /*
    In this execution we must avoid calling thd->change_item_tree since
    we might release memory before statement is completed. We do this
    by changing to a new statement arena. As part of this arena we also
    set the memory root to be the memory root of the table since we
    call the parser and fix_fields which both can allocate memory for
    item objects. We keep the arena to ensure that we can release the
    free_list when closing the table object.
    SEE Bug #21658
  */

    Query_arena *backup_stmt_arena_ptr= thd->stmt_arena;
    Query_arena backup_arena;
    Query_arena part_func_arena(&outparam->mem_root, Query_arena::INITIALIZED);
    thd->set_n_backup_active_arena(&part_func_arena, &backup_arena);
    thd->stmt_arena= &part_func_arena;
2292
    bool tmp;
2293
    bool work_part_info_used;
2294

2295 2296
    tmp= mysql_unpack_partition(thd, share->partition_info,
                                share->partition_info_len,
2297
                                share->part_state,
2298 2299
                                share->part_state_len,
                                outparam, is_create_table,
2300 2301
                                share->default_part_db_type,
                                &work_part_info_used);
2302 2303 2304 2305 2306 2307 2308
    if (tmp)
    {
      thd->stmt_arena= backup_stmt_arena_ptr;
      thd->restore_active_arena(&part_func_arena, &backup_arena);
      goto partititon_err;
    }
    outparam->part_info->is_auto_partitioned= share->auto_partitioned;
2309
    DBUG_PRINT("info", ("autopartitioned: %u", share->auto_partitioned));
2310 2311 2312
    /* we should perform the fix_partition_func in either local or
       caller's arena depending on work_part_info_used value
    */
2313
    if (!work_part_info_used)
2314
      tmp= fix_partition_func(thd, outparam, is_create_table);
2315 2316
    thd->stmt_arena= backup_stmt_arena_ptr;
    thd->restore_active_arena(&part_func_arena, &backup_arena);
2317
    if (!tmp)
2318 2319 2320 2321
    {
      if (work_part_info_used)
        tmp= fix_partition_func(thd, outparam, is_create_table);
    }
2322
    outparam->part_info->item_free_list= part_func_arena.free_list;
2323
partititon_err:
2324
    if (tmp)
2325 2326 2327 2328 2329 2330 2331 2332 2333 2334
    {
      if (is_create_table)
      {
        /*
          During CREATE/ALTER TABLE it is ok to receive errors here.
          It is not ok if it happens during the opening of an frm
          file as part of a normal query.
        */
        error_reported= TRUE;
      }
unknown's avatar
unknown committed
2335
      goto err;
2336
    }
unknown's avatar
unknown committed
2337 2338 2339
  }
#endif

2340 2341
  /* Check virtual columns against table's storage engine. */
  if (share->vfields && 
Sergei Golubchik's avatar
Sergei Golubchik committed
2342 2343
        !(outparam->file && 
          (outparam->file->ha_table_flags() & HA_CAN_VIRTUAL_COLUMNS)))
2344
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
2345 2346
    my_error(ER_UNSUPPORTED_ENGINE_FOR_VIRTUAL_COLUMNS, MYF(0),
             plugin_name(share->db_plugin)->str);
2347 2348 2349 2350
    error_reported= TRUE;
    goto err;
  }

2351 2352 2353
  /* Allocate bitmaps */

  bitmap_size= share->column_bitmap_size;
2354
  if (!(bitmaps= (uchar*) alloc_root(&outparam->mem_root, bitmap_size*4)))
2355 2356 2357 2358 2359
    goto err;
  bitmap_init(&outparam->def_read_set,
              (my_bitmap_map*) bitmaps, share->fields, FALSE);
  bitmap_init(&outparam->def_write_set,
              (my_bitmap_map*) (bitmaps+bitmap_size), share->fields, FALSE);
Igor Babaev's avatar
Igor Babaev committed
2360
  bitmap_init(&outparam->def_vcol_set,
2361
              (my_bitmap_map*) (bitmaps+bitmap_size*2), share->fields, FALSE);
Igor Babaev's avatar
Igor Babaev committed
2362
  bitmap_init(&outparam->tmp_set,
2363
              (my_bitmap_map*) (bitmaps+bitmap_size*3), share->fields, FALSE);
2364 2365
  outparam->default_column_bitmaps();

2366
  /* The table struct is now initialized;  Open the table */
unknown's avatar
unknown committed
2367
  error= 2;
2368 2369
  if (db_stat)
  {
2370 2371
    int ha_err;
    if ((ha_err= (outparam->file->
unknown's avatar
unknown committed
2372
                  ha_open(outparam, share->normalized_path.str,
2373 2374 2375 2376 2377 2378 2379 2380
                          (db_stat & HA_READ_ONLY ? O_RDONLY : O_RDWR),
                          (db_stat & HA_OPEN_TEMPORARY ? HA_OPEN_TMP_TABLE :
                           ((db_stat & HA_WAIT_IF_LOCKED) ||
                            (specialflag & SPECIAL_WAIT_IF_LOCKED)) ?
                           HA_OPEN_WAIT_IF_LOCKED :
                           (db_stat & (HA_ABORT_IF_LOCKED | HA_GET_INFO)) ?
                          HA_OPEN_ABORT_IF_LOCKED :
                           HA_OPEN_IGNORE_IF_LOCKED) | ha_open_flags))))
2381 2382
    {
      /* Set a flag if the table is crashed and it can be auto. repaired */
2383
      share->crashed= ((ha_err == HA_ERR_CRASHED_ON_USAGE) &&
2384 2385
                       outparam->file->auto_repair() &&
                       !(ha_open_flags & HA_OPEN_FOR_REPAIR));
2386

2387
      switch (ha_err)
2388
      {
2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
        case HA_ERR_NO_SUCH_TABLE:
	  /*
            The table did not exists in storage engine, use same error message
            as if the .frm file didn't exist
          */
	  error= 1;
	  my_errno= ENOENT;
          break;
        case EMFILE:
	  /*
            Too many files opened, use same error message as if the .frm
            file can't open
           */
          DBUG_PRINT("error", ("open file: %s failed, too many files opened (errno: %d)", 
		  share->normalized_path.str, ha_err));
	  error= 1;
	  my_errno= EMFILE;
          break;
        default:
          outparam->file->print_error(ha_err, MYF(0));
          error_reported= TRUE;
          if (ha_err == HA_ERR_TABLE_DEF_CHANGED)
            error= 7;
          break;
2413
      }
2414
      goto err;                                 /* purecov: inspected */
2415 2416 2417
    }
  }

2418
#if defined(HAVE_valgrind) && !defined(DBUG_OFF)
2419 2420 2421
  bzero((char*) bitmaps, bitmap_size*3);
#endif

unknown's avatar
unknown committed
2422 2423
  outparam->no_replicate= outparam->file &&
                          test(outparam->file->ha_table_flags() &
2424
                               HA_HAS_OWN_BINLOGGING);
2425
  thd->status_var.opened_tables++;
2426

2427
  thd->lex->context_analysis_only= save_context_analysis_only;
unknown's avatar
unknown committed
2428 2429
  DBUG_RETURN (0);

2430
 err:
2431
  if (! error_reported)
unknown's avatar
unknown committed
2432
    open_table_error(share, error, my_errno, 0);
2433
  delete outparam->file;
2434
#ifdef WITH_PARTITION_STORAGE_ENGINE
unknown's avatar
unknown committed
2435 2436
  if (outparam->part_info)
    free_items(outparam->part_info->item_free_list);
2437
#endif
unknown's avatar
unknown committed
2438
  outparam->file= 0;				// For easier error checking
2439
  outparam->db_stat=0;
2440
  thd->lex->context_analysis_only= save_context_analysis_only;
2441
  free_root(&outparam->mem_root, MYF(0));       // Safe to call on bzero'd root
2442
  outparam->alias.free();
unknown's avatar
unknown committed
2443
  DBUG_RETURN (error);
unknown's avatar
unknown committed
2444
}
unknown's avatar
unknown committed
2445

2446 2447 2448 2449 2450 2451 2452 2453 2454

/*
  Free information allocated by openfrm

  SYNOPSIS
    closefrm()
    table		TABLE object to free
    free_share		Is 1 if we also want to free table_share
*/
unknown's avatar
unknown committed
2455

unknown's avatar
unknown committed
2456
int closefrm(register TABLE *table, bool free_share)
unknown's avatar
unknown committed
2457 2458 2459
{
  int error=0;
  DBUG_ENTER("closefrm");
2460
  DBUG_PRINT("enter", ("table: 0x%lx", (long) table));
2461

unknown's avatar
unknown committed
2462
  if (table->db_stat)
2463 2464 2465
  {
    if (table->s->deleting)
      table->file->extra(HA_EXTRA_PREPARE_FOR_DROP);
unknown's avatar
unknown committed
2466
    error=table->file->close();
2467
  }
2468
  table->alias.free();
Igor Babaev's avatar
Igor Babaev committed
2469 2470
  if (table->expr_arena)
    table->expr_arena->free_items();
2471
  if (table->field)
unknown's avatar
unknown committed
2472 2473
  {
    for (Field **ptr=table->field ; *ptr ; ptr++)
2474
    {
unknown's avatar
unknown committed
2475
      delete *ptr;
2476
    }
2477
    table->field= 0;
unknown's avatar
unknown committed
2478 2479
  }
  delete table->file;
unknown's avatar
unknown committed
2480
  table->file= 0;				/* For easier errorchecking */
2481
#ifdef WITH_PARTITION_STORAGE_ENGINE
unknown's avatar
unknown committed
2482
  if (table->part_info)
2483
  {
unknown's avatar
unknown committed
2484
    free_items(table->part_info->item_free_list);
unknown's avatar
unknown committed
2485
    table->part_info->item_free_list= 0;
unknown's avatar
unknown committed
2486
    table->part_info= 0;
2487 2488
  }
#endif
unknown's avatar
unknown committed
2489 2490 2491 2492 2493 2494 2495
  if (free_share)
  {
    if (table->s->tmp_table == NO_TMP_TABLE)
      release_table_share(table->s, RELEASE_NORMAL);
    else
      free_table_share(table->s);
  }
2496
  free_root(&table->mem_root, MYF(0));
unknown's avatar
unknown committed
2497 2498 2499 2500 2501 2502 2503 2504
  DBUG_RETURN(error);
}


/* Deallocate temporary blob storage */

void free_blobs(register TABLE *table)
{
2505 2506 2507 2508 2509
  uint *ptr, *end;
  for (ptr= table->s->blob_field, end=ptr + table->s->blob_fields ;
       ptr != end ;
       ptr++)
    ((Field_blob*) table->field[*ptr])->free();
unknown's avatar
unknown committed
2510 2511 2512
}


2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534
/**
  Reclaim temporary blob storage which is bigger than 
  a threshold.
 
  @param table A handle to the TABLE object containing blob fields
  @param size The threshold value.
 
*/

void free_field_buffers_larger_than(TABLE *table, uint32 size)
{
  uint *ptr, *end;
  for (ptr= table->s->blob_field, end=ptr + table->s->blob_fields ;
       ptr != end ;
       ptr++)
  {
    Field_blob *blob= (Field_blob*) table->field[*ptr];
    if (blob->get_field_buffer_size() > size)
        blob->free();
  }
}

2535 2536 2537 2538
/**
  Find where a form starts.

  @param head The start of the form file.
unknown's avatar
unknown committed
2539

2540 2541 2542 2543
  @remark If formname is NULL then only formnames is read.

  @retval The form position.
*/
unknown's avatar
unknown committed
2544

2545
static ulong get_form_pos(File file, uchar *head)
unknown's avatar
unknown committed
2546
{
2547 2548
  uchar *pos, *buf;
  uint names, length;
unknown's avatar
unknown committed
2549 2550 2551
  ulong ret_value=0;
  DBUG_ENTER("get_form_pos");

2552
  names= uint2korr(head+8);
2553

2554 2555
  if (!(names= uint2korr(head+8)))
    DBUG_RETURN(0);
unknown's avatar
unknown committed
2556

2557
  length= uint2korr(head+4);
unknown's avatar
unknown committed
2558

2559 2560 2561 2562 2563 2564
  my_seek(file, 64L, MY_SEEK_SET, MYF(0));

  if (!(buf= (uchar*) my_malloc(length+names*4, MYF(MY_WME))))
    DBUG_RETURN(0);

  if (my_read(file, buf, length+names*4, MYF(MY_NABP)))
unknown's avatar
unknown committed
2565
  {
2566 2567
    x_free(buf);
    DBUG_RETURN(0);
unknown's avatar
unknown committed
2568
  }
2569 2570 2571 2572 2573 2574

  pos= buf+length;
  ret_value= uint4korr(pos);

  my_free(buf, MYF(0));

unknown's avatar
unknown committed
2575 2576 2577 2578
  DBUG_RETURN(ret_value);
}


2579 2580
/*
  Read string from a file with malloc
unknown's avatar
unknown committed
2581

2582 2583 2584 2585 2586
  NOTES:
    We add an \0 at end of the read string to make reading of C strings easier
*/

int read_string(File file, uchar**to, size_t length)
unknown's avatar
unknown committed
2587 2588 2589
{
  DBUG_ENTER("read_string");

2590 2591 2592
  x_free(*to);
  if (!(*to= (uchar*) my_malloc(length+1,MYF(MY_WME))) ||
      my_read(file, *to, length,MYF(MY_NABP)))
unknown's avatar
unknown committed
2593
  {
2594 2595 2596
    x_free(*to);                              /* purecov: inspected */
    *to= 0;                                   /* purecov: inspected */
    DBUG_RETURN(1);                           /* purecov: inspected */
unknown's avatar
unknown committed
2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609
  }
  *((char*) *to+length)= '\0';
  DBUG_RETURN (0);
} /* read_string */


	/* Add a new form to a form file */

ulong make_new_entry(File file, uchar *fileinfo, TYPELIB *formnames,
		     const char *newname)
{
  uint i,bufflength,maxlength,n_length,length,names;
  ulong endpos,newpos;
2610
  uchar buff[IO_SIZE];
unknown's avatar
unknown committed
2611 2612 2613
  uchar *pos;
  DBUG_ENTER("make_new_entry");

unknown's avatar
unknown committed
2614
  length=(uint) strlen(newname)+1;
unknown's avatar
unknown committed
2615 2616 2617 2618 2619 2620 2621 2622 2623
  n_length=uint2korr(fileinfo+4);
  maxlength=uint2korr(fileinfo+6);
  names=uint2korr(fileinfo+8);
  newpos=uint4korr(fileinfo+10);

  if (64+length+n_length+(names+1)*4 > maxlength)
  {						/* Expand file */
    newpos+=IO_SIZE;
    int4store(fileinfo+10,newpos);
unknown's avatar
unknown committed
2624
    endpos=(ulong) my_seek(file,0L,MY_SEEK_END,MYF(0));/* Copy from file-end */
unknown's avatar
unknown committed
2625 2626 2627 2628 2629
    bufflength= (uint) (endpos & (IO_SIZE-1));	/* IO_SIZE is a power of 2 */

    while (endpos > maxlength)
    {
      VOID(my_seek(file,(ulong) (endpos-bufflength),MY_SEEK_SET,MYF(0)));
2630
      if (my_read(file, buff, bufflength, MYF(MY_NABP+MY_WME)))
unknown's avatar
unknown committed
2631 2632 2633
	DBUG_RETURN(0L);
      VOID(my_seek(file,(ulong) (endpos-bufflength+IO_SIZE),MY_SEEK_SET,
		   MYF(0)));
2634
      if ((my_write(file, buff,bufflength,MYF(MY_NABP+MY_WME))))
unknown's avatar
unknown committed
2635 2636 2637 2638 2639
	DBUG_RETURN(0);
      endpos-=bufflength; bufflength=IO_SIZE;
    }
    bzero(buff,IO_SIZE);			/* Null new block */
    VOID(my_seek(file,(ulong) maxlength,MY_SEEK_SET,MYF(0)));
2640
    if (my_write(file,buff,bufflength,MYF(MY_NABP+MY_WME)))
unknown's avatar
unknown committed
2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
	DBUG_RETURN(0L);
    maxlength+=IO_SIZE;				/* Fix old ref */
    int2store(fileinfo+6,maxlength);
    for (i=names, pos= (uchar*) *formnames->type_names+n_length-1; i-- ;
	 pos+=4)
    {
      endpos=uint4korr(pos)+IO_SIZE;
      int4store(pos,endpos);
    }
  }

  if (n_length == 1 )
  {						/* First name */
    length++;
2655
    VOID(strxmov((char*) buff,"/",newname,"/",NullS));
unknown's avatar
unknown committed
2656 2657
  }
  else
2658
    VOID(strxmov((char*) buff,newname,"/",NullS)); /* purecov: inspected */
unknown's avatar
unknown committed
2659
  VOID(my_seek(file,63L+(ulong) n_length,MY_SEEK_SET,MYF(0)));
2660 2661
  if (my_write(file, buff, (size_t) length+1,MYF(MY_NABP+MY_WME)) ||
      (names && my_write(file,(uchar*) (*formnames->type_names+n_length-1),
unknown's avatar
unknown committed
2662
			 names*4, MYF(MY_NABP+MY_WME))) ||
2663
      my_write(file, fileinfo+10, 4,MYF(MY_NABP+MY_WME)))
unknown's avatar
unknown committed
2664 2665 2666 2667
    DBUG_RETURN(0L); /* purecov: inspected */

  int2store(fileinfo+8,names+1);
  int2store(fileinfo+4,n_length+length);
2668
  VOID(my_chsize(file, newpos, 0, MYF(MY_WME)));/* Append file with '\0' */
unknown's avatar
unknown committed
2669 2670 2671 2672 2673 2674
  DBUG_RETURN(newpos);
} /* make_new_entry */


	/* error message when opening a form file */

unknown's avatar
unknown committed
2675
void open_table_error(TABLE_SHARE *share, int error, int db_errno, int errarg)
unknown's avatar
unknown committed
2676 2677 2678
{
  int err_no;
  char buff[FN_REFLEN];
2679
  myf errortype= ME_ERROR+ME_WAITTANG;          // Write fatals error to log
unknown's avatar
unknown committed
2680
  DBUG_ENTER("open_table_error");
unknown's avatar
unknown committed
2681 2682

  switch (error) {
unknown's avatar
unknown committed
2683
  case 7:
unknown's avatar
unknown committed
2684
  case 1:
2685 2686 2687 2688 2689
    /*
      Test if file didn't exists. We have to also test for EINVAL as this
      may happen on windows when opening a file with a not legal file name
    */
    if (db_errno == ENOENT || db_errno == EINVAL)
unknown's avatar
unknown committed
2690 2691
      my_error(ER_NO_SUCH_TABLE, MYF(0), share->db.str, share->table_name.str);
    else
unknown's avatar
unknown committed
2692
    {
unknown's avatar
unknown committed
2693
      strxmov(buff, share->normalized_path.str, reg_ext, NullS);
2694 2695
      my_error((db_errno == EMFILE) ? ER_CANT_OPEN_FILE : ER_FILE_NOT_FOUND,
               errortype, buff, db_errno);
unknown's avatar
unknown committed
2696 2697 2698 2699
    }
    break;
  case 2:
  {
unknown's avatar
unknown committed
2700 2701 2702
    handler *file= 0;
    const char *datext= "";
    
unknown's avatar
unknown committed
2703
    if (share->db_type() != NULL)
unknown's avatar
unknown committed
2704 2705
    {
      if ((file= get_new_handler(share, current_thd->mem_root,
unknown's avatar
unknown committed
2706
                                 share->db_type())))
unknown's avatar
unknown committed
2707 2708 2709 2710 2711 2712
      {
        if (!(datext= *file->bas_ext()))
          datext= "";
      }
    }
    err_no= (db_errno == ENOENT) ? ER_FILE_NOT_FOUND : (db_errno == EAGAIN) ?
unknown's avatar
unknown committed
2713
      ER_FILE_USED : ER_CANT_OPEN_FILE;
unknown's avatar
unknown committed
2714 2715 2716
    strxmov(buff, share->normalized_path.str, datext, NullS);
    my_error(err_no,errortype, buff, db_errno);
    delete file;
unknown's avatar
unknown committed
2717 2718
    break;
  }
2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
  case 5:
  {
    const char *csname= get_charset_name((uint) errarg);
    char tmp[10];
    if (!csname || csname[0] =='?')
    {
      my_snprintf(tmp, sizeof(tmp), "#%d", errarg);
      csname= tmp;
    }
    my_printf_error(ER_UNKNOWN_COLLATION,
                    "Unknown collation '%s' in table '%-.64s' definition", 
unknown's avatar
unknown committed
2730
                    MYF(0), csname, share->table_name.str);
unknown's avatar
unknown committed
2731 2732
    break;
  }
2733
  case 6:
unknown's avatar
unknown committed
2734
    strxmov(buff, share->normalized_path.str, reg_ext, NullS);
2735 2736
    my_printf_error(ER_NOT_FORM_FILE,
                    "Table '%-.64s' was created with a different version "
unknown's avatar
unknown committed
2737 2738
                    "of MySQL and cannot be read", 
                    MYF(0), buff);
2739
    break;
2740 2741
  case 8:
    break;
unknown's avatar
unknown committed
2742 2743
  default:				/* Better wrong error than none */
  case 4:
unknown's avatar
unknown committed
2744
    strxmov(buff, share->normalized_path.str, reg_ext, NullS);
2745
    my_error(ER_NOT_FORM_FILE, errortype, buff);
unknown's avatar
unknown committed
2746 2747 2748
    break;
  }
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
2749
} /* open_table_error */
unknown's avatar
unknown committed
2750 2751 2752 2753


	/*
	** fix a str_type to a array type
2754
	** typeparts separated with some char. differents types are separated
unknown's avatar
unknown committed
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778
	** with a '\0'
	*/

static void
fix_type_pointers(const char ***array, TYPELIB *point_to_type, uint types,
		  char **names)
{
  char *type_name, *ptr;
  char chr;

  ptr= *names;
  while (types--)
  {
    point_to_type->name=0;
    point_to_type->type_names= *array;

    if ((chr= *ptr))			/* Test if empty type */
    {
      while ((type_name=strchr(ptr+1,chr)) != NullS)
      {
	*((*array)++) = ptr+1;
	*type_name= '\0';		/* End string */
	ptr=type_name;
      }
unknown's avatar
unknown committed
2779
      ptr+=2;				/* Skip end mark and last 0 */
unknown's avatar
unknown committed
2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791
    }
    else
      ptr++;
    point_to_type->count= (uint) (*array - point_to_type->type_names);
    point_to_type++;
    *((*array)++)= NullS;		/* End of type */
  }
  *names=ptr;				/* Update end */
  return;
} /* fix_type_pointers */


2792
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings)
unknown's avatar
unknown committed
2793
{
2794
  TYPELIB *result= (TYPELIB*) alloc_root(mem_root, sizeof(TYPELIB));
unknown's avatar
unknown committed
2795 2796 2797 2798
  if (!result)
    return 0;
  result->count=strings.elements;
  result->name="";
2799
  uint nbytes= (sizeof(char*) + sizeof(uint)) * (result->count + 1);
2800
  if (!(result->type_names= (const char**) alloc_root(mem_root, nbytes)))
unknown's avatar
unknown committed
2801
    return 0;
2802
  result->type_lengths= (uint*) (result->type_names + result->count + 1);
unknown's avatar
unknown committed
2803 2804 2805
  List_iterator<String> it(strings);
  String *tmp;
  for (uint i=0; (tmp=it++) ; i++)
2806 2807 2808 2809 2810 2811
  {
    result->type_names[i]= tmp->ptr();
    result->type_lengths[i]= tmp->length();
  }
  result->type_names[result->count]= 0;		// End marker
  result->type_lengths[result->count]= 0;
unknown's avatar
unknown committed
2812 2813 2814 2815
  return result;
}


2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
/*
 Search after a field with given start & length
 If an exact field isn't found, return longest field with starts
 at right position.
 
 NOTES
   This is needed because in some .frm fields 'fieldnr' was saved wrong

 RETURN
   0  error
   #  field number +1
*/
unknown's avatar
unknown committed
2828

2829
static uint find_field(Field **fields, uchar *record, uint start, uint length)
unknown's avatar
unknown committed
2830 2831
{
  Field **field;
unknown's avatar
unknown committed
2832
  uint i, pos;
unknown's avatar
unknown committed
2833

unknown's avatar
unknown committed
2834 2835
  pos= 0;
  for (field= fields, i=1 ; *field ; i++,field++)
unknown's avatar
unknown committed
2836
  {
2837
    if ((*field)->offset(record) == start)
unknown's avatar
unknown committed
2838 2839 2840
    {
      if ((*field)->key_length() == length)
	return (i);
unknown's avatar
unknown committed
2841
      if (!pos || fields[pos-1]->pack_length() <
unknown's avatar
unknown committed
2842
	  (*field)->pack_length())
unknown's avatar
unknown committed
2843
	pos= i;
unknown's avatar
unknown committed
2844 2845 2846 2847 2848 2849
    }
  }
  return (pos);
}


2850
	/* Check that the integer is in the internal */
unknown's avatar
unknown committed
2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871

int set_zone(register int nr, int min_zone, int max_zone)
{
  if (nr<=min_zone)
    return (min_zone);
  if (nr>=max_zone)
    return (max_zone);
  return (nr);
} /* set_zone */

	/* Adjust number to next larger disk buffer */

ulong next_io_size(register ulong pos)
{
  reg2 ulong offset;
  if ((offset= pos & (IO_SIZE-1)))
    return pos-offset+IO_SIZE;
  return pos;
} /* next_io_size */


2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884
/*
  Store an SQL quoted string.

  SYNOPSIS  
    append_unescaped()
    res		result String
    pos		string to be quoted
    length	it's length

  NOTE
    This function works correctly with utf8 or single-byte charset strings.
    May fail with some multibyte charsets though.
*/
2885

2886
void append_unescaped(String *res, const char *pos, uint length)
unknown's avatar
unknown committed
2887
{
2888 2889 2890 2891
  const char *end= pos+length;
  res->append('\'');

  for (; pos != end ; pos++)
unknown's avatar
unknown committed
2892
  {
unknown's avatar
unknown committed
2893
#if defined(USE_MB) && MYSQL_VERSION_ID < 40100
unknown's avatar
unknown committed
2894 2895 2896 2897 2898 2899 2900 2901 2902 2903
    uint mblen;
    if (use_mb(default_charset_info) &&
        (mblen= my_ismbchar(default_charset_info, pos, end)))
    {
      res->append(pos, mblen);
      pos+= mblen;
      continue;
    }
#endif

unknown's avatar
unknown committed
2904 2905 2906 2907 2908 2909 2910 2911 2912 2913
    switch (*pos) {
    case 0:				/* Must be escaped for 'mysql' */
      res->append('\\');
      res->append('0');
      break;
    case '\n':				/* Must be escaped for logs */
      res->append('\\');
      res->append('n');
      break;
    case '\r':
2914
      res->append('\\');		/* This gives better readability */
unknown's avatar
unknown committed
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929
      res->append('r');
      break;
    case '\\':
      res->append('\\');		/* Because of the sql syntax */
      res->append('\\');
      break;
    case '\'':
      res->append('\'');		/* Because of the sql syntax */
      res->append('\'');
      break;
    default:
      res->append(*pos);
      break;
    }
  }
2930
  res->append('\'');
unknown's avatar
unknown committed
2931 2932
}

2933

unknown's avatar
unknown committed
2934 2935
	/* Create a .frm file */

unknown's avatar
unknown committed
2936
File create_frm(THD *thd, const char *name, const char *db,
unknown's avatar
unknown committed
2937
                const char *table, uint reclength, uchar *fileinfo,
unknown's avatar
unknown committed
2938
  		HA_CREATE_INFO *create_info, uint keys)
unknown's avatar
unknown committed
2939 2940 2941
{
  register File file;
  ulong length;
2942
  uchar fill[IO_SIZE];
2943
  int create_flags= O_RDWR | O_TRUNC;
2944
  DBUG_ENTER("create_frm");
2945 2946 2947

  if (create_info->options & HA_LEX_CREATE_TMP_TABLE)
    create_flags|= O_EXCL | O_NOFOLLOW;
unknown's avatar
unknown committed
2948

unknown's avatar
unknown committed
2949
  /* Fix this when we have new .frm files;  Current limit is 4G rows (QQ) */
2950 2951 2952 2953
  if (create_info->max_rows > UINT_MAX32)
    create_info->max_rows= UINT_MAX32;
  if (create_info->min_rows > UINT_MAX32)
    create_info->min_rows= UINT_MAX32;
2954

2955
  if ((file= my_create(name, CREATE_MODE, create_flags, MYF(0))) >= 0)
unknown's avatar
unknown committed
2956
  {
2957
    ulong key_length, tmp_key_length;
2958
    uint tmp;
unknown's avatar
unknown committed
2959
    bzero((char*) fileinfo,64);
2960 2961 2962 2963 2964
    /* header */
    fileinfo[0]=(uchar) 254;
    fileinfo[1]= 1;
    fileinfo[2]= FRM_VER+3+ test(create_info->varchar);

unknown's avatar
unknown committed
2965 2966
    fileinfo[3]= (uchar) ha_legacy_type(
          ha_checktype(thd,ha_legacy_type(create_info->db_type),0,0));
unknown's avatar
unknown committed
2967 2968
    fileinfo[4]=1;
    int2store(fileinfo+6,IO_SIZE);		/* Next block starts here */
2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981
    /*
      Keep in sync with pack_keys() in unireg.cc
      For each key:
      8 bytes for the key header
      9 bytes for each key-part (MAX_REF_PARTS)
      NAME_LEN bytes for the name
      1 byte for the NAMES_SEP_CHAR (before the name)
      For all keys:
      6 bytes for the header
      1 byte for the NAMES_SEP_CHAR (after the last name)
      9 extra bytes (padding for safety? alignment?)
    */
    key_length= keys * (8 + MAX_REF_PARTS * 9 + NAME_LEN + 1) + 16;
2982 2983
    length= next_io_size((ulong) (IO_SIZE+key_length+reclength+
                                  create_info->extra_size));
unknown's avatar
unknown committed
2984
    int4store(fileinfo+10,length);
2985 2986
    tmp_key_length= (key_length < 0xffff) ? key_length : 0xffff;
    int2store(fileinfo+14,tmp_key_length);
unknown's avatar
unknown committed
2987 2988 2989
    int2store(fileinfo+16,reclength);
    int4store(fileinfo+18,create_info->max_rows);
    int4store(fileinfo+22,create_info->min_rows);
2990
    /* fileinfo[26] is set in mysql_create_frm() */
unknown's avatar
unknown committed
2991
    fileinfo[27]=2;				// Use long pack-fields
2992
    /* fileinfo[28 & 29] is set to key_info_length in mysql_create_frm() */
unknown's avatar
unknown committed
2993 2994 2995
    create_info->table_options|=HA_OPTION_LONG_BLOB_PTR; // Use portable blob pointers
    int2store(fileinfo+30,create_info->table_options);
    fileinfo[32]=0;				// No filename anymore
2996
    fileinfo[33]=5;                             // Mark for 5.0 frm file
unknown's avatar
unknown committed
2997
    int4store(fileinfo+34,create_info->avg_row_length);
2998 2999
    fileinfo[38]= (create_info->default_table_charset ?
		   create_info->default_table_charset->number : 0);
3000 3001
    fileinfo[39]= (uchar) ((uint) create_info->transactional |
                           ((uint) create_info->page_checksum << 2));
unknown's avatar
unknown committed
3002
    fileinfo[40]= (uchar) create_info->row_type;
3003
    /* Next few bytes where for RAID support */
3004 3005 3006 3007 3008 3009
    fileinfo[41]= 0;
    fileinfo[42]= 0;
    fileinfo[43]= 0;
    fileinfo[44]= 0;
    fileinfo[45]= 0;
    fileinfo[46]= 0;
3010 3011 3012
    int4store(fileinfo+47, key_length);
    tmp= MYSQL_VERSION_ID;          // Store to avoid warning from int4store
    int4store(fileinfo+51, tmp);
unknown's avatar
unknown committed
3013
    int4store(fileinfo+55, create_info->extra_size);
3014 3015 3016 3017 3018
    /*
      59-60 is reserved for extra_rec_buf_length,
      61 for default_part_db_type
    */
    int2store(fileinfo+62, create_info->key_block_size);
unknown's avatar
unknown committed
3019 3020 3021
    bzero(fill,IO_SIZE);
    for (; length > IO_SIZE ; length-= IO_SIZE)
    {
3022
      if (my_write(file,fill, IO_SIZE, MYF(MY_WME | MY_NABP)))
unknown's avatar
unknown committed
3023 3024 3025
      {
	VOID(my_close(file,MYF(0)));
	VOID(my_delete(name,MYF(0)));
3026
	DBUG_RETURN(-1);
unknown's avatar
unknown committed
3027 3028 3029
      }
    }
  }
3030 3031 3032 3033 3034 3035 3036
  else
  {
    if (my_errno == ENOENT)
      my_error(ER_BAD_DB_ERROR,MYF(0),db);
    else
      my_error(ER_CANT_CREATE_TABLE,MYF(0),table,my_errno);
  }
3037
  DBUG_RETURN(file);
unknown's avatar
unknown committed
3038 3039 3040 3041 3042
} /* create_frm */


void update_create_info_from_table(HA_CREATE_INFO *create_info, TABLE *table)
{
3043
  TABLE_SHARE *share= table->s;
3044
  DBUG_ENTER("update_create_info_from_table");
3045 3046 3047 3048 3049 3050 3051

  create_info->max_rows= share->max_rows;
  create_info->min_rows= share->min_rows;
  create_info->table_options= share->db_create_options;
  create_info->avg_row_length= share->avg_row_length;
  create_info->row_type= share->row_type;
  create_info->default_table_charset= share->table_charset;
3052
  create_info->table_charset= 0;
3053
  create_info->comment= share->comment;
3054 3055
  create_info->transactional= share->transactional;
  create_info->page_checksum= share->page_checksum;
3056
  create_info->option_list= share->option_list;
3057

3058
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3059
}
unknown's avatar
unknown committed
3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070

int
rename_file_ext(const char * from,const char * to,const char * ext)
{
  char from_b[FN_REFLEN],to_b[FN_REFLEN];
  VOID(strxmov(from_b,from,ext,NullS));
  VOID(strxmov(to_b,to,ext,NullS));
  return (my_rename(from_b,to_b,MYF(MY_WME)));
}


unknown's avatar
unknown committed
3071 3072 3073 3074 3075 3076 3077 3078 3079 3080
/*
  Allocate string field in MEM_ROOT and return it as String

  SYNOPSIS
    get_field()
    mem   	MEM_ROOT for allocating
    field 	Field for retrieving of string
    res         result String

  RETURN VALUES
3081 3082
    1   string is empty
    0	all ok
unknown's avatar
unknown committed
3083 3084 3085 3086
*/

bool get_field(MEM_ROOT *mem, Field *field, String *res)
{
3087
  char buff[MAX_FIELD_WIDTH], *to;
unknown's avatar
unknown committed
3088
  String str(buff,sizeof(buff),&my_charset_bin);
3089 3090
  uint length;

3091
  field->val_str(&str);
3092
  if (!(length= str.length()))
3093 3094
  {
    res->length(0);
3095
    return 1;
3096 3097 3098
  }
  if (!(to= strmake_root(mem, str.ptr(), length)))
    length= 0;                                  // Safety fix
3099 3100
  res->set(to, length, ((Field_str*)field)->charset());
  return 0;
unknown's avatar
unknown committed
3101 3102
}

3103

unknown's avatar
unknown committed
3104
/*
3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
  Allocate string field in MEM_ROOT and return it as NULL-terminated string

  SYNOPSIS
    get_field()
    mem   	MEM_ROOT for allocating
    field 	Field for retrieving of string

  RETURN VALUES
    NullS  string is empty
    #      pointer to NULL-terminated string value of field
unknown's avatar
unknown committed
3115 3116
*/

3117
char *get_field(MEM_ROOT *mem, Field *field)
unknown's avatar
unknown committed
3118
{
unknown's avatar
unknown committed
3119
  char buff[MAX_FIELD_WIDTH], *to;
3120
  String str(buff,sizeof(buff),&my_charset_bin);
3121 3122
  uint length;

3123
  field->val_str(&str);
unknown's avatar
unknown committed
3124
  length= str.length();
unknown's avatar
unknown committed
3125
  if (!length || !(to= (char*) alloc_root(mem,length+1)))
unknown's avatar
unknown committed
3126 3127 3128 3129 3130 3131
    return NullS;
  memcpy(to,str.ptr(),(uint) length);
  to[length]=0;
  return to;
}

3132 3133 3134 3135 3136
/*
  DESCRIPTION
    given a buffer with a key value, and a map of keyparts
    that are present in this value, returns the length of the value
*/
3137
uint calculate_key_len(TABLE *table, uint key, const uchar *buf,
unknown's avatar
unknown committed
3138
                       key_part_map keypart_map)
3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155
{
  /* works only with key prefixes */
  DBUG_ASSERT(((keypart_map + 1) & keypart_map) == 0);

  KEY *key_info= table->s->key_info+key;
  KEY_PART_INFO *key_part= key_info->key_part;
  KEY_PART_INFO *end_key_part= key_part + key_info->key_parts;
  uint length= 0;

  while (key_part < end_key_part && keypart_map)
  {
    length+= key_part->store_length;
    keypart_map >>= 1;
    key_part++;
  }
  return length;
}
3156 3157 3158 3159 3160 3161

/*
  Check if database name is valid

  SYNPOSIS
    check_db_name()
3162
    org_name		Name of database and length
3163 3164 3165 3166 3167 3168 3169 3170 3171

  NOTES
    If lower_case_table_names is set then database is converted to lower case

  RETURN
    0	ok
    1   error
*/

3172
bool check_db_name(LEX_STRING *org_name)
unknown's avatar
unknown committed
3173
{
3174
  char *name= org_name->str;
3175
  uint name_length= org_name->length;
3176
  bool check_for_path_chars;
3177

3178 3179 3180 3181 3182 3183
  if ((check_for_path_chars= check_mysql50_prefix(name)))
  {
    name+= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
    name_length-= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
  }

3184 3185 3186
  if (!name_length || name_length > NAME_LEN)
    return 1;

unknown's avatar
unknown committed
3187
  if (lower_case_table_names && name != any_db)
3188
    my_casedn_str(files_charset_info, name);
3189

3190
  return check_table_name(name, name_length, check_for_path_chars);
unknown's avatar
unknown committed
3191 3192
}

3193

unknown's avatar
unknown committed
3194 3195
/*
  Allow anything as a table name, as long as it doesn't contain an
3196
  ' ' at the end
unknown's avatar
unknown committed
3197 3198 3199
  returns 1 on error
*/

3200
bool check_table_name(const char *name, uint length, bool check_for_path_chars)
unknown's avatar
unknown committed
3201
{
3202
  uint name_length= 0;  // name length in symbols
unknown's avatar
unknown committed
3203
  const char *end= name+length;
3204 3205 3206 3207 3208 3209 3210 3211 3212


  if (!check_for_path_chars &&
      (check_for_path_chars= check_mysql50_prefix(name)))
  {
    name+= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
    length-= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
  }

unknown's avatar
unknown committed
3213 3214
  if (!length || length > NAME_LEN)
    return 1;
unknown's avatar
unknown committed
3215
#if defined(USE_MB) && defined(USE_MB_IDENT)
3216
  bool last_char_is_space= FALSE;
unknown's avatar
unknown committed
3217 3218 3219 3220
#else
  if (name[length-1]==' ')
    return 1;
#endif
unknown's avatar
unknown committed
3221 3222 3223 3224

  while (name != end)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
3225
    last_char_is_space= my_isspace(system_charset_info, *name);
3226
    if (use_mb(system_charset_info))
unknown's avatar
unknown committed
3227
    {
3228
      int len=my_ismbchar(system_charset_info, name, end);
unknown's avatar
unknown committed
3229 3230
      if (len)
      {
Michael Widenius's avatar
Michael Widenius committed
3231
        name+= len;
3232
        name_length++;
unknown's avatar
unknown committed
3233 3234 3235
        continue;
      }
    }
3236
#endif
3237 3238 3239
    if (check_for_path_chars &&
        (*name == '/' || *name == '\\' || *name == '~' || *name == FN_EXTCHAR))
      return 1;
unknown's avatar
unknown committed
3240
    name++;
3241
    name_length++;
unknown's avatar
unknown committed
3242
  }
unknown's avatar
unknown committed
3243
#if defined(USE_MB) && defined(USE_MB_IDENT)
3244
  return (last_char_is_space || name_length > NAME_CHAR_LEN) ;
3245
#else
unknown's avatar
unknown committed
3246
  return 0;
3247
#endif
unknown's avatar
unknown committed
3248 3249
}

unknown's avatar
unknown committed
3250

unknown's avatar
unknown committed
3251 3252
bool check_column_name(const char *name)
{
3253
  uint name_length= 0;  // name length in symbols
unknown's avatar
unknown committed
3254
  bool last_char_is_space= TRUE;
3255
  
unknown's avatar
unknown committed
3256 3257 3258
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
3259
    last_char_is_space= my_isspace(system_charset_info, *name);
3260
    if (use_mb(system_charset_info))
unknown's avatar
unknown committed
3261
    {
3262
      int len=my_ismbchar(system_charset_info, name, 
3263
                          name+system_charset_info->mbmaxlen);
unknown's avatar
unknown committed
3264 3265 3266
      if (len)
      {
        name += len;
3267
        name_length++;
unknown's avatar
unknown committed
3268 3269 3270
        continue;
      }
    }
unknown's avatar
unknown committed
3271
#else
3272
    last_char_is_space= *name==' ';
unknown's avatar
unknown committed
3273 3274 3275 3276
#endif
    if (*name == NAMES_SEP_CHAR)
      return 1;
    name++;
3277
    name_length++;
unknown's avatar
unknown committed
3278
  }
unknown's avatar
unknown committed
3279
  /* Error if empty or too long column name */
3280
  return last_char_is_space || (uint) name_length > NAME_CHAR_LEN;
unknown's avatar
unknown committed
3281 3282
}

3283

3284
/**
3285 3286
  Checks whether a table is intact. Should be done *just* after the table has
  been opened.
3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298

  @param[in] table             The table to check
  @param[in] table_f_count     Expected number of columns in the table
  @param[in] table_def         Expected structure of the table (column name
                               and type)

  @retval  FALSE  OK
  @retval  TRUE   There was an error. An error message is output
                  to the error log.  We do not push an error
                  message into the error stack because this
                  function is currently only called at start up,
                  and such errors never reach the user.
3299 3300
*/

3301 3302
bool
Table_check_intact::check(TABLE *table, const TABLE_FIELD_DEF *table_def)
3303 3304 3305
{
  uint i;
  my_bool error= FALSE;
3306
  const TABLE_FIELD_TYPE *field_def= table_def->field;
3307
  DBUG_ENTER("table_check_intact");
3308
  DBUG_PRINT("info",("table: %s  expected_count: %d",
3309
                     table->alias.c_ptr(), table_def->count));
3310

3311 3312 3313
  /* Whether the table definition has already been validated. */
  if (table->s->table_field_def_cache == table_def)
    DBUG_RETURN(FALSE);
3314

3315
  if (table->s->fields != table_def->count)
3316
  {
3317 3318 3319 3320
    DBUG_PRINT("info", ("Column count has changed, checking the definition"));

    /* previous MySQL version */
    if (MYSQL_VERSION_ID > table->s->mysql_version)
3321
    {
3322 3323
      report_error(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE,
                   ER(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE),
3324
                   table->alias.c_ptr(), table_def->count, table->s->fields,
Michael Widenius's avatar
Michael Widenius committed
3325
                   (int) table->s->mysql_version, MYSQL_VERSION_ID);
3326 3327 3328 3329
      DBUG_RETURN(TRUE);
    }
    else if (MYSQL_VERSION_ID == table->s->mysql_version)
    {
3330
      report_error(ER_COL_COUNT_DOESNT_MATCH_CORRUPTED,
3331 3332
                   ER(ER_COL_COUNT_DOESNT_MATCH_CORRUPTED),
                   table->alias.c_ptr(),
3333
                   table_def->count, table->s->fields);
3334 3335 3336 3337 3338 3339 3340 3341 3342 3343
      DBUG_RETURN(TRUE);
    }
    /*
      Something has definitely changed, but we're running an older
      version of MySQL with new system tables.
      Let's check column definitions. If a column was added at
      the end of the table, then we don't care much since such change
      is backward compatible.
    */
  }
3344
  char buffer[1024];
3345
  for (i=0 ; i < table_def->count; i++, field_def++)
3346 3347 3348
  {
    String sql_type(buffer, sizeof(buffer), system_charset_info);
    sql_type.length(0);
3349 3350
    /* Allocate min 256 characters at once */
    sql_type.extra_allocation(256);
3351 3352 3353
    if (i < table->s->fields)
    {
      Field *field= table->field[i];
3354

3355 3356
      if (strncmp(field->field_name, field_def->name.str,
                  field_def->name.length))
3357
      {
3358
        /*
3359 3360 3361
          Name changes are not fatal, we use ordinal numbers to access columns.
          Still this can be a sign of a tampered table, output an error
          to the error log.
3362
        */
3363 3364
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected column '%s' at position %d, found '%s'.",
3365 3366
                     table->s->db.str, table->alias.c_ptr(),
                     field_def->name.str, i,
3367
                     field->field_name);
3368
      }
3369
      field->sql_type(sql_type);
3370
      /*
3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
        Generally, if column types don't match, then something is
        wrong.

        However, we only compare column definitions up to the
        length of the original definition, since we consider the
        following definitions compatible:

        1. DATETIME and DATETIM
        2. INT(11) and INT(11
        3. SET('one', 'two') and SET('one', 'two', 'more')

        For SETs or ENUMs, if the same prefix is there it's OK to
        add more elements - they will get higher ordinal numbers and
        the new table definition is backward compatible with the
        original one.
       */
3387 3388
      if (strncmp(sql_type.c_ptr_safe(), field_def->type.str,
                  field_def->type.length - 1))
3389
      {
3390 3391
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected column '%s' at position %d to have type "
3392 3393
                     "%s, found type %s.", table->s->db.str,
                     table->alias.c_ptr(),
3394 3395
                     field_def->name.str, i, field_def->type.str,
                     sql_type.c_ptr_safe());
3396
        error= TRUE;
3397
      }
3398
      else if (field_def->cset.str && !field->has_charset())
3399
      {
3400 3401 3402
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected the type of column '%s' at position %d "
                     "to have character set '%s' but the type has no "
3403 3404
                     "character set.", table->s->db.str,
                     table->alias.c_ptr(),
3405
                     field_def->name.str, i, field_def->cset.str);
3406 3407
        error= TRUE;
      }
3408 3409
      else if (field_def->cset.str &&
               strcmp(field->charset()->csname, field_def->cset.str))
3410
      {
3411 3412 3413
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected the type of column '%s' at position %d "
                     "to have character set '%s' but found "
3414 3415
                     "character set '%s'.", table->s->db.str,
                     table->alias.c_ptr(),
3416 3417
                     field_def->name.str, i, field_def->cset.str,
                     field->charset()->csname);
3418
        error= TRUE;
3419 3420
      }
    }
3421 3422
    else
    {
3423 3424 3425
      report_error(0, "Incorrect definition of table %s.%s: "
                   "expected column '%s' at position %d to have type %s "
                   " but the column is not found.",
3426
                   table->s->db.str, table->alias.c_ptr(),
3427
                   field_def->name.str, i, field_def->type.str);
3428 3429
      error= TRUE;
    }
3430
  }
3431 3432 3433 3434

  if (! error)
    table->s->table_field_def_cache= table_def;

3435
  DBUG_RETURN(error);
3436 3437 3438
}


3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495
/*
  Create Item_field for each column in the table.

  SYNPOSIS
    st_table::fill_item_list()
      item_list          a pointer to an empty list used to store items

  DESCRIPTION
    Create Item_field object for each column in the table and
    initialize it with the corresponding Field. New items are
    created in the current THD memory root.

  RETURN VALUE
    0                    success
    1                    out of memory
*/

bool st_table::fill_item_list(List<Item> *item_list) const
{
  /*
    All Item_field's created using a direct pointer to a field
    are fixed in Item_field constructor.
  */
  for (Field **ptr= field; *ptr; ptr++)
  {
    Item_field *item= new Item_field(*ptr);
    if (!item || item_list->push_back(item))
      return TRUE;
  }
  return FALSE;
}

/*
  Reset an existing list of Item_field items to point to the
  Fields of this table.

  SYNPOSIS
    st_table::fill_item_list()
      item_list          a non-empty list with Item_fields

  DESCRIPTION
    This is a counterpart of fill_item_list used to redirect
    Item_fields to the fields of a newly created table.
    The caller must ensure that number of items in the item_list
    is the same as the number of columns in the table.
*/

void st_table::reset_item_list(List<Item> *item_list) const
{
  List_iterator_fast<Item> it(*item_list);
  for (Field **ptr= field; *ptr; ptr++)
  {
    Item_field *item_field= (Item_field*) it++;
    DBUG_ASSERT(item_field != 0);
    item_field->reset_field(*ptr);
  }
}
unknown's avatar
unknown committed
3496

unknown's avatar
VIEW  
unknown committed
3497 3498 3499 3500
/*
  calculate md5 of query

  SYNOPSIS
3501
    TABLE_LIST::calc_md5()
unknown's avatar
VIEW  
unknown committed
3502 3503
    buffer	buffer for md5 writing
*/
3504

3505
void  TABLE_LIST::calc_md5(char *buffer)
unknown's avatar
VIEW  
unknown committed
3506
{
3507
  uchar digest[16];
3508
  MY_MD5_HASH(digest, (uchar *) select_stmt.str, select_stmt.length);
unknown's avatar
VIEW  
unknown committed
3509 3510 3511 3512 3513 3514 3515 3516 3517
  sprintf((char *) buffer,
	    "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
	    digest[0], digest[1], digest[2], digest[3],
	    digest[4], digest[5], digest[6], digest[7],
	    digest[8], digest[9], digest[10], digest[11],
	    digest[12], digest[13], digest[14], digest[15]);
}


3518 3519
/**
   @brief Set underlying table for table place holder of view.
unknown's avatar
VIEW  
unknown committed
3520

3521
   @details
unknown's avatar
unknown committed
3522

3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538
   Replace all views that only use one table with the table itself.  This
   allows us to treat the view as a simple table and even update it (it is a
   kind of optimization).

   @note 

   This optimization is potentially dangerous as it makes views
   masquerade as base tables: Views don't have the pointer TABLE_LIST::table
   set to non-@c NULL.

   We may have the case where a view accesses tables not normally accessible
   in the current Security_context (only in the definer's
   Security_context). According to the table's GRANT_INFO (TABLE::grant),
   access is fulfilled, but this is implicitly meant in the definer's security
   context. Hence we must never look at only a TABLE's GRANT_INFO without
   looking at the one of the referring TABLE_LIST.
unknown's avatar
VIEW  
unknown committed
3539
*/
3540

3541
void TABLE_LIST::set_underlying_merge()
unknown's avatar
VIEW  
unknown committed
3542
{
unknown's avatar
unknown committed
3543 3544
  TABLE_LIST *tbl;

3545
  if ((tbl= merge_underlying_list))
unknown's avatar
merge  
unknown committed
3546
  {
unknown's avatar
unknown committed
3547
    /* This is a view. Process all tables of view */
3548
    DBUG_ASSERT(view && effective_algorithm == VIEW_ALGORITHM_MERGE);
unknown's avatar
unknown committed
3549 3550
    do
    {
3551
      if (tbl->merge_underlying_list)          // This is a view
unknown's avatar
unknown committed
3552
      {
3553 3554
        DBUG_ASSERT(tbl->view &&
                    tbl->effective_algorithm == VIEW_ALGORITHM_MERGE);
unknown's avatar
unknown committed
3555 3556 3557 3558
        /*
          This is the only case where set_ancestor is called on an object
          that may not be a view (in which case ancestor is 0)
        */
3559
        tbl->merge_underlying_list->set_underlying_merge();
unknown's avatar
unknown committed
3560 3561 3562
      }
    } while ((tbl= tbl->next_local));

unknown's avatar
unknown committed
3563
    if (!multitable_view)
unknown's avatar
unknown committed
3564
    {
3565 3566
      table= merge_underlying_list->table;
      schema_table= merge_underlying_list->schema_table;
unknown's avatar
unknown committed
3567
    }
unknown's avatar
merge  
unknown committed
3568
  }
3569 3570 3571
}


unknown's avatar
VIEW  
unknown committed
3572 3573 3574 3575
/*
  setup fields of placeholder of merged VIEW

  SYNOPSIS
3576
    TABLE_LIST::setup_underlying()
3577
    thd		    - thread handler
3578

3579 3580
  DESCRIPTION
    It is:
3581
    - preparing translation table for view columns
3582 3583
    If there are underlying view(s) procedure first will be called for them.

unknown's avatar
VIEW  
unknown committed
3584
  RETURN
unknown's avatar
unknown committed
3585 3586
    FALSE - OK
    TRUE  - error
unknown's avatar
VIEW  
unknown committed
3587
*/
3588

3589
bool TABLE_LIST::setup_underlying(THD *thd)
unknown's avatar
VIEW  
unknown committed
3590
{
3591
  DBUG_ENTER("TABLE_LIST::setup_underlying");
3592 3593

  if (!field_translation && merge_underlying_list)
3594
  {
3595 3596 3597 3598 3599 3600 3601
    Field_translator *transl;
    SELECT_LEX *select= &view->select_lex;
    Item *item;
    TABLE_LIST *tbl;
    List_iterator_fast<Item> it(select->item_list);
    uint field_count= 0;

3602
    if (check_stack_overrun(thd, STACK_MIN_SIZE, (uchar*) &field_count))
3603
    {
unknown's avatar
unknown committed
3604
      DBUG_RETURN(TRUE);
3605
    }
unknown's avatar
VIEW  
unknown committed
3606

3607
    for (tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3608
    {
3609 3610
      if (tbl->merge_underlying_list &&
          tbl->setup_underlying(thd))
3611 3612 3613 3614
      {
        DBUG_RETURN(TRUE);
      }
    }
unknown's avatar
unknown committed
3615

3616 3617 3618
    /* Create view fields translation table */

    if (!(transl=
unknown's avatar
unknown committed
3619
          (Field_translator*)(thd->stmt_arena->
3620 3621
                              alloc(select->item_list.elements *
                                    sizeof(Field_translator)))))
unknown's avatar
VIEW  
unknown committed
3622
    {
3623
      DBUG_RETURN(TRUE);
3624
    }
3625 3626

    while ((item= it++))
3627
    {
3628 3629
      transl[field_count].name= item->name;
      transl[field_count++].item= item;
3630
    }
3631 3632 3633
    field_translation= transl;
    field_translation_end= transl + field_count;
    /* TODO: use hash for big number of fields */
3634

3635 3636
    /* full text function moving to current select */
    if (view->select_lex.ftfunc_list->elements)
3637
    {
3638 3639 3640 3641 3642 3643
      Item_func_match *ifm;
      SELECT_LEX *current_select= thd->lex->current_select;
      List_iterator_fast<Item_func_match>
        li(*(view->select_lex.ftfunc_list));
      while ((ifm= li++))
        current_select->ftfunc_list->push_front(ifm);
unknown's avatar
VIEW  
unknown committed
3644 3645
    }
  }
3646 3647
  DBUG_RETURN(FALSE);
}
unknown's avatar
VIEW  
unknown committed
3648

unknown's avatar
unknown committed
3649

3650 3651
/*
  Prepare where expression of view
3652

3653
  SYNOPSIS
3654
    TABLE_LIST::prep_where()
3655 3656 3657 3658
    thd             - thread handler
    conds           - condition of this JOIN
    no_where_clause - do not build WHERE or ON outer qwery do not need it
                      (it is INSERT), we do not need conds if this flag is set
unknown's avatar
unknown committed
3659

3660 3661
  NOTE: have to be called befor CHECK OPTION preparation, because it makes
  fix_fields for view WHERE clause
unknown's avatar
VIEW  
unknown committed
3662

3663 3664 3665 3666
  RETURN
    FALSE - OK
    TRUE  - error
*/
unknown's avatar
VIEW  
unknown committed
3667

3668
bool TABLE_LIST::prep_where(THD *thd, Item **conds,
3669 3670
                               bool no_where_clause)
{
3671
  DBUG_ENTER("TABLE_LIST::prep_where");
3672

3673
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3674
  {
3675 3676 3677 3678
    if (tbl->view && tbl->prep_where(thd, conds, no_where_clause))
    {
      DBUG_RETURN(TRUE);
    }
3679
  }
3680

3681 3682 3683
  if (where)
  {
    if (!where->fixed && where->fix_fields(thd, &where))
unknown's avatar
VIEW  
unknown committed
3684
    {
3685
      DBUG_RETURN(TRUE);
unknown's avatar
VIEW  
unknown committed
3686
    }
unknown's avatar
unknown committed
3687 3688 3689 3690 3691

    /*
      check that it is not VIEW in which we insert with INSERT SELECT
      (in this case we can't add view WHERE condition to main SELECT_LEX)
    */
3692
    if (!no_where_clause && !where_processed)
unknown's avatar
VIEW  
unknown committed
3693
    {
3694
      TABLE_LIST *tbl= this;
unknown's avatar
unknown committed
3695 3696
      Query_arena *arena= thd->stmt_arena, backup;
      arena= thd->activate_stmt_arena_if_needed(&backup);  // For easier test
3697

unknown's avatar
unknown committed
3698 3699
      /* Go up to join tree and try to find left join */
      for (; tbl; tbl= tbl->embedding)
unknown's avatar
unknown committed
3700
      {
unknown's avatar
unknown committed
3701 3702 3703 3704
        if (tbl->outer_join)
        {
          /*
            Store WHERE condition to ON expression for outer join, because
3705
            we can't use WHERE to correctly execute left joins on VIEWs and
unknown's avatar
unknown committed
3706 3707 3708
            this expression will not be moved to WHERE condition (i.e. will
            be clean correctly for PS/SP)
          */
3709 3710
          tbl->on_expr= and_conds(tbl->on_expr,
                                  where->copy_andor_structure(thd));
unknown's avatar
unknown committed
3711 3712
          break;
        }
unknown's avatar
unknown committed
3713
      }
unknown's avatar
unknown committed
3714
      if (tbl == 0)
3715
        *conds= and_conds(*conds, where->copy_andor_structure(thd));
3716
      if (arena)
unknown's avatar
unknown committed
3717
        thd->restore_active_arena(arena, &backup);
3718
      where_processed= TRUE;
unknown's avatar
VIEW  
unknown committed
3719 3720
    }
  }
3721

3722 3723 3724 3725
  DBUG_RETURN(FALSE);
}


unknown's avatar
unknown committed
3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766
/*
  Merge ON expressions for a view

  SYNOPSIS
    merge_on_conds()
    thd             thread handle
    table           table for the VIEW
    is_cascaded     TRUE <=> merge ON expressions from underlying views

  DESCRIPTION
    This function returns the result of ANDing the ON expressions
    of the given view and all underlying views. The ON expressions
    of the underlying views are added only if is_cascaded is TRUE.

  RETURN
    Pointer to the built expression if there is any.
    Otherwise and in the case of a failure NULL is returned.
*/

static Item *
merge_on_conds(THD *thd, TABLE_LIST *table, bool is_cascaded)
{
  DBUG_ENTER("merge_on_conds");

  Item *cond= NULL;
  DBUG_PRINT("info", ("alias: %s", table->alias));
  if (table->on_expr)
    cond= table->on_expr->copy_andor_structure(thd);
  if (!table->nested_join)
    DBUG_RETURN(cond);
  List_iterator<TABLE_LIST> li(table->nested_join->join_list);
  while (TABLE_LIST *tbl= li++)
  {
    if (tbl->view && !is_cascaded)
      continue;
    cond= and_conds(cond, merge_on_conds(thd, tbl, is_cascaded));
  }
  DBUG_RETURN(cond);
}


3767 3768 3769 3770
/*
  Prepare check option expression of table

  SYNOPSIS
3771
    TABLE_LIST::prep_check_option()
3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
    thd             - thread handler
    check_opt_type  - WITH CHECK OPTION type (VIEW_CHECK_NONE,
                      VIEW_CHECK_LOCAL, VIEW_CHECK_CASCADED)
                      we use this parameter instead of direct check of
                      effective_with_check to change type of underlying
                      views to VIEW_CHECK_CASCADED if outer view have
                      such option and prevent processing of underlying
                      view check options if outer view have just
                      VIEW_CHECK_LOCAL option.

  NOTE
unknown's avatar
unknown committed
3783 3784
    This method builds check option condition to use it later on
    every call (usual execution or every SP/PS call).
3785
    This method have to be called after WHERE preparation
3786
    (TABLE_LIST::prep_where)
unknown's avatar
VIEW  
unknown committed
3787

3788 3789 3790 3791 3792
  RETURN
    FALSE - OK
    TRUE  - error
*/

3793
bool TABLE_LIST::prep_check_option(THD *thd, uint8 check_opt_type)
3794
{
3795
  DBUG_ENTER("TABLE_LIST::prep_check_option");
unknown's avatar
unknown committed
3796
  bool is_cascaded= check_opt_type == VIEW_CHECK_CASCADED;
3797

3798
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3799
  {
3800
    /* see comment of check_opt_type parameter */
unknown's avatar
unknown committed
3801 3802 3803
    if (tbl->view && tbl->prep_check_option(thd, (is_cascaded ?
                                                  VIEW_CHECK_CASCADED :
                                                  VIEW_CHECK_NONE)))
3804
      DBUG_RETURN(TRUE);
3805
  }
unknown's avatar
VIEW  
unknown committed
3806

unknown's avatar
unknown committed
3807
  if (check_opt_type && !check_option_processed)
3808
  {
unknown's avatar
unknown committed
3809 3810 3811
    Query_arena *arena= thd->stmt_arena, backup;
    arena= thd->activate_stmt_arena_if_needed(&backup);  // For easier test

3812 3813 3814
    if (where)
    {
      DBUG_ASSERT(where->fixed);
unknown's avatar
unknown committed
3815
      check_option= where->copy_andor_structure(thd);
3816
    }
unknown's avatar
unknown committed
3817
    if (is_cascaded)
3818
    {
3819
      for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3820 3821
      {
        if (tbl->check_option)
unknown's avatar
unknown committed
3822
          check_option= and_conds(check_option, tbl->check_option);
3823 3824
      }
    }
unknown's avatar
unknown committed
3825 3826 3827 3828 3829 3830 3831
    check_option= and_conds(check_option,
                            merge_on_conds(thd, this, is_cascaded));

    if (arena)
      thd->restore_active_arena(arena, &backup);
    check_option_processed= TRUE;

3832 3833 3834 3835 3836 3837
  }

  if (check_option)
  {
    const char *save_where= thd->where;
    thd->where= "check option";
3838 3839
    if ((!check_option->fixed &&
         check_option->fix_fields(thd, &check_option)) ||
3840 3841 3842 3843 3844
        check_option->check_cols(1))
    {
      DBUG_RETURN(TRUE);
    }
    thd->where= save_where;
3845
  }
3846 3847 3848
  DBUG_RETURN(FALSE);
}

3849

3850
/**
3851 3852 3853 3854 3855 3856
  Hide errors which show view underlying table information. 
  There are currently two mechanisms at work that handle errors for views,
  this one and a more general mechanism based on an Internal_error_handler,
  see Show_create_error_handler. The latter handles errors encountered during
  execution of SHOW CREATE VIEW, while the machanism using this method is
  handles SELECT from views. The two methods should not clash.
3857

3858
  @param[in,out]  thd     thread handler
unknown's avatar
VIEW  
unknown committed
3859

3860
  @pre This method can be called only if there is an error.
3861 3862
*/

3863
void TABLE_LIST::hide_view_error(THD *thd)
3864
{
3865
  if (thd->killed || thd->get_internal_handler())
3866
    return;
3867
  /* Hide "Unknown column" or "Unknown function" error */
3868 3869 3870 3871
  DBUG_ASSERT(thd->is_error());

  if (thd->main_da.sql_errno() == ER_BAD_FIELD_ERROR ||
      thd->main_da.sql_errno() == ER_SP_DOES_NOT_EXIST ||
3872
      thd->main_da.sql_errno() == ER_FUNC_INEXISTENT_NAME_COLLISION ||
3873 3874 3875 3876 3877
      thd->main_da.sql_errno() == ER_PROCACCESS_DENIED_ERROR ||
      thd->main_da.sql_errno() == ER_COLUMNACCESS_DENIED_ERROR ||
      thd->main_da.sql_errno() == ER_TABLEACCESS_DENIED_ERROR ||
      thd->main_da.sql_errno() == ER_TABLE_NOT_LOCKED ||
      thd->main_da.sql_errno() == ER_NO_SUCH_TABLE)
3878
  {
3879
    TABLE_LIST *top= top_table();
3880
    thd->clear_error();
3881
    my_error(ER_VIEW_INVALID, MYF(0), top->view_db.str, top->view_name.str);
3882
  }
3883
  else if (thd->main_da.sql_errno() == ER_NO_DEFAULT_FOR_FIELD)
3884
  {
3885
    TABLE_LIST *top= top_table();
3886 3887
    thd->clear_error();
    // TODO: make correct error message
3888 3889
    my_error(ER_NO_DEFAULT_FOR_VIEW_FIELD, MYF(0),
             top->view_db.str, top->view_name.str);
3890
  }
unknown's avatar
VIEW  
unknown committed
3891 3892 3893
}


3894 3895 3896 3897 3898
/*
  Find underlying base tables (TABLE_LIST) which represent given
  table_to_find (TABLE)

  SYNOPSIS
3899
    TABLE_LIST::find_underlying_table()
3900 3901 3902 3903 3904 3905 3906
    table_to_find table to find

  RETURN
    0  table is not found
    found table reference
*/

3907
TABLE_LIST *TABLE_LIST::find_underlying_table(TABLE *table_to_find)
3908 3909
{
  /* is this real table and table which we are looking for? */
3910
  if (table == table_to_find && merge_underlying_list == 0)
3911 3912
    return this;

3913
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3914 3915 3916 3917 3918 3919 3920 3921
  {
    TABLE_LIST *result;
    if ((result= tbl->find_underlying_table(table_to_find)))
      return result;
  }
  return 0;
}

unknown's avatar
unknown committed
3922
/*
3923
  cleanup items belonged to view fields translation table
unknown's avatar
unknown committed
3924 3925

  SYNOPSIS
3926
    TABLE_LIST::cleanup_items()
unknown's avatar
unknown committed
3927 3928
*/

3929
void TABLE_LIST::cleanup_items()
unknown's avatar
unknown committed
3930 3931 3932 3933
{
  if (!field_translation)
    return;

3934 3935 3936
  for (Field_translator *transl= field_translation;
       transl < field_translation_end;
       transl++)
3937
    transl->item->walk(&Item::cleanup_processor, 0, 0);
unknown's avatar
unknown committed
3938 3939 3940
}


unknown's avatar
unknown committed
3941 3942 3943 3944
/*
  check CHECK OPTION condition

  SYNOPSIS
3945
    TABLE_LIST::view_check_option()
unknown's avatar
unknown committed
3946 3947 3948 3949 3950 3951 3952 3953
    ignore_failure ignore check option fail

  RETURN
    VIEW_CHECK_OK     OK
    VIEW_CHECK_ERROR  FAILED
    VIEW_CHECK_SKIP   FAILED, but continue
*/

3954
int TABLE_LIST::view_check_option(THD *thd, bool ignore_failure)
unknown's avatar
unknown committed
3955 3956 3957
{
  if (check_option && check_option->val_int() == 0)
  {
3958
    TABLE_LIST *main_view= top_table();
unknown's avatar
unknown committed
3959 3960 3961 3962
    if (ignore_failure)
    {
      push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                          ER_VIEW_CHECK_FAILED, ER(ER_VIEW_CHECK_FAILED),
3963
                          main_view->view_db.str, main_view->view_name.str);
unknown's avatar
unknown committed
3964 3965
      return(VIEW_CHECK_SKIP);
    }
3966 3967 3968
    my_error(ER_VIEW_CHECK_FAILED, MYF(0), main_view->view_db.str,
             main_view->view_name.str);
    return(VIEW_CHECK_ERROR);
unknown's avatar
unknown committed
3969 3970 3971 3972 3973
  }
  return(VIEW_CHECK_OK);
}


3974
/*
3975
  Find table in underlying tables by mask and check that only this
unknown's avatar
unknown committed
3976
  table belong to given mask
3977 3978

  SYNOPSIS
3979
    TABLE_LIST::check_single_table()
3980
    table_arg	reference on variable where to store found table
3981 3982 3983
		(should be 0 on call, to find table, or point to table for
		unique test)
    map         bit mask of tables
3984
    view_arg    view for which we are looking table
3985 3986

  RETURN
unknown's avatar
unknown committed
3987 3988
    FALSE table not found or found only one
    TRUE  found several tables
3989 3990
*/

3991
bool TABLE_LIST::check_single_table(TABLE_LIST **table_arg,
3992
                                       table_map map,
3993
                                       TABLE_LIST *view_arg)
3994
{
3995
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
3996 3997 3998 3999 4000
  {
    if (tbl->table)
    {
      if (tbl->table->map & map)
      {
4001
	if (*table_arg)
unknown's avatar
unknown committed
4002
	  return TRUE;
4003 4004
        *table_arg= tbl;
        tbl->check_option= view_arg->check_option;
4005 4006
      }
    }
4007
    else if (tbl->check_single_table(table_arg, map, view_arg))
unknown's avatar
unknown committed
4008
      return TRUE;
4009
  }
unknown's avatar
unknown committed
4010
  return FALSE;
4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025
}


/*
  Set insert_values buffer

  SYNOPSIS
    set_insert_values()
    mem_root   memory pool for allocating

  RETURN
    FALSE - OK
    TRUE  - out of memory
*/

4026
bool TABLE_LIST::set_insert_values(MEM_ROOT *mem_root)
4027 4028 4029 4030
{
  if (table)
  {
    if (!table->insert_values &&
4031
        !(table->insert_values= (uchar *)alloc_root(mem_root,
4032
                                                   table->s->rec_buff_length)))
4033 4034 4035 4036
      return TRUE;
  }
  else
  {
4037 4038
    DBUG_ASSERT(view && merge_underlying_list);
    for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
4039 4040 4041 4042 4043 4044 4045
      if (tbl->set_insert_values(mem_root))
        return TRUE;
  }
  return FALSE;
}


unknown's avatar
unknown committed
4046 4047 4048 4049
/*
  Test if this is a leaf with respect to name resolution.

  SYNOPSIS
4050
    TABLE_LIST::is_leaf_for_name_resolution()
unknown's avatar
unknown committed
4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061

  DESCRIPTION
    A table reference is a leaf with respect to name resolution if
    it is either a leaf node in a nested join tree (table, view,
    schema table, subquery), or an inner node that represents a
    NATURAL/USING join, or a nested join with materialized join
    columns.

  RETURN
    TRUE if a leaf, FALSE otherwise.
*/
4062
bool TABLE_LIST::is_leaf_for_name_resolution()
unknown's avatar
unknown committed
4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073
{
  return (view || is_natural_join || is_join_columns_complete ||
          !nested_join);
}


/*
  Retrieve the first (left-most) leaf in a nested join tree with
  respect to name resolution.

  SYNOPSIS
4074
    TABLE_LIST::first_leaf_for_name_resolution()
unknown's avatar
unknown committed
4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086

  DESCRIPTION
    Given that 'this' is a nested table reference, recursively walk
    down the left-most children of 'this' until we reach a leaf
    table reference with respect to name resolution.

  IMPLEMENTATION
    The left-most child of a nested table reference is the last element
    in the list of children because the children are inserted in
    reverse order.

  RETURN
4087
    If 'this' is a nested table reference - the left-most child of
unknown's avatar
unknown committed
4088
      the tree rooted in 'this',
4089
    else return 'this'
unknown's avatar
unknown committed
4090 4091
*/

4092
TABLE_LIST *TABLE_LIST::first_leaf_for_name_resolution()
unknown's avatar
unknown committed
4093
{
4094 4095 4096
  TABLE_LIST *cur_table_ref;
  NESTED_JOIN *cur_nested_join;
  LINT_INIT(cur_table_ref);
unknown's avatar
unknown committed
4097

4098
  if (is_leaf_for_name_resolution())
unknown's avatar
unknown committed
4099
    return this;
4100
  DBUG_ASSERT(nested_join);
unknown's avatar
unknown committed
4101

4102 4103 4104
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
unknown's avatar
unknown committed
4105 4106 4107 4108
  {
    List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
    cur_table_ref= it++;
    /*
4109 4110 4111 4112
      If the current nested join is a RIGHT JOIN, the operands in
      'join_list' are in reverse order, thus the first operand is
      already at the front of the list. Otherwise the first operand
      is in the end of the list of join operands.
unknown's avatar
unknown committed
4113 4114 4115
    */
    if (!(cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
4116
      TABLE_LIST *next;
unknown's avatar
unknown committed
4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131
      while ((next= it++))
        cur_table_ref= next;
    }
    if (cur_table_ref->is_leaf_for_name_resolution())
      break;
  }
  return cur_table_ref;
}


/*
  Retrieve the last (right-most) leaf in a nested join tree with
  respect to name resolution.

  SYNOPSIS
4132
    TABLE_LIST::last_leaf_for_name_resolution()
unknown's avatar
unknown committed
4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149

  DESCRIPTION
    Given that 'this' is a nested table reference, recursively walk
    down the right-most children of 'this' until we reach a leaf
    table reference with respect to name resolution.

  IMPLEMENTATION
    The right-most child of a nested table reference is the first
    element in the list of children because the children are inserted
    in reverse order.

  RETURN
    - If 'this' is a nested table reference - the right-most child of
      the tree rooted in 'this',
    - else - 'this'
*/

4150
TABLE_LIST *TABLE_LIST::last_leaf_for_name_resolution()
unknown's avatar
unknown committed
4151 4152
{
  TABLE_LIST *cur_table_ref= this;
4153
  NESTED_JOIN *cur_nested_join;
unknown's avatar
unknown committed
4154

4155
  if (is_leaf_for_name_resolution())
unknown's avatar
unknown committed
4156
    return this;
4157
  DBUG_ASSERT(nested_join);
unknown's avatar
unknown committed
4158

4159 4160 4161
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
unknown's avatar
unknown committed
4162
  {
4163
    cur_table_ref= cur_nested_join->join_list.head();
unknown's avatar
unknown committed
4164
    /*
4165 4166 4167
      If the current nested is a RIGHT JOIN, the operands in
      'join_list' are in reverse order, thus the last operand is in the
      end of the list.
unknown's avatar
unknown committed
4168 4169 4170 4171
    */
    if ((cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
      List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
4172
      TABLE_LIST *next;
unknown's avatar
unknown committed
4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183
      cur_table_ref= it++;
      while ((next= it++))
        cur_table_ref= next;
    }
    if (cur_table_ref->is_leaf_for_name_resolution())
      break;
  }
  return cur_table_ref;
}


4184 4185 4186 4187 4188 4189 4190 4191
/*
  Register access mode which we need for underlying tables

  SYNOPSIS
    register_want_access()
    want_access          Acess which we require
*/

4192
void TABLE_LIST::register_want_access(ulong want_access)
4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207
{
  /* Remove SHOW_VIEW_ACL, because it will be checked during making view */
  want_access&= ~SHOW_VIEW_ACL;
  if (belong_to_view)
  {
    grant.want_privilege= want_access;
    if (table)
      table->grant.want_privilege= want_access;
  }
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
    tbl->register_want_access(want_access);
}


/*
unknown's avatar
unknown committed
4208
  Load security context information for this view
4209 4210

  SYNOPSIS
4211
    TABLE_LIST::prepare_view_securety_context()
4212 4213 4214 4215 4216 4217 4218 4219
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
4220
bool TABLE_LIST::prepare_view_securety_context(THD *thd)
4221
{
4222
  DBUG_ENTER("TABLE_LIST::prepare_view_securety_context");
4223 4224 4225 4226 4227 4228 4229
  DBUG_PRINT("enter", ("table: %s", alias));

  DBUG_ASSERT(!prelocking_placeholder && view);
  if (view_suid)
  {
    DBUG_PRINT("info", ("This table is suid view => load contest"));
    DBUG_ASSERT(view && view_sctx);
4230 4231
    if (acl_getroot(view_sctx, definer.user.str, definer.host.str,
                                definer.host.str, thd->db))
4232
    {
4233 4234
      if ((thd->lex->sql_command == SQLCOM_SHOW_CREATE) ||
          (thd->lex->sql_command == SQLCOM_SHOW_FIELDS))
4235 4236 4237 4238 4239 4240 4241 4242
      {
        push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, 
                            ER_NO_SUCH_USER, 
                            ER(ER_NO_SUCH_USER),
                            definer.user.str, definer.host.str);
      }
      else
      {
4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254
        if (thd->security_ctx->master_access & SUPER_ACL)
        {
          my_error(ER_NO_SUCH_USER, MYF(0), definer.user.str, definer.host.str);

        }
        else
        {
           my_error(ER_ACCESS_DENIED_ERROR, MYF(0),
                    thd->security_ctx->priv_user,
                    thd->security_ctx->priv_host,
                    (thd->password ?  ER(ER_YES) : ER(ER_NO)));
        }
4255 4256
        DBUG_RETURN(TRUE);
      }
4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267
    }
  }
  DBUG_RETURN(FALSE);
}
#endif


/*
  Find security context of current view

  SYNOPSIS
4268
    TABLE_LIST::find_view_security_context()
4269 4270 4271 4272 4273
    thd                  [in] thread handler

*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
4274
Security_context *TABLE_LIST::find_view_security_context(THD *thd)
4275 4276 4277
{
  Security_context *sctx;
  TABLE_LIST *upper_view= this;
4278
  DBUG_ENTER("TABLE_LIST::find_view_security_context");
4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306

  DBUG_ASSERT(view);
  while (upper_view && !upper_view->view_suid)
  {
    DBUG_ASSERT(!upper_view->prelocking_placeholder);
    upper_view= upper_view->referencing_view;
  }
  if (upper_view)
  {
    DBUG_PRINT("info", ("Securety context of view %s will be used",
                        upper_view->alias));
    sctx= upper_view->view_sctx;
    DBUG_ASSERT(sctx);
  }
  else
  {
    DBUG_PRINT("info", ("Current global context will be used"));
    sctx= thd->security_ctx;
  }
  DBUG_RETURN(sctx);
}
#endif


/*
  Prepare security context and load underlying tables priveleges for view

  SYNOPSIS
4307
    TABLE_LIST::prepare_security()
4308 4309 4310 4311 4312 4313 4314
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

4315
bool TABLE_LIST::prepare_security(THD *thd)
4316 4317 4318
{
  List_iterator_fast<TABLE_LIST> tb(*view_tables);
  TABLE_LIST *tbl;
4319
  DBUG_ENTER("TABLE_LIST::prepare_security");
4320 4321 4322 4323 4324 4325 4326 4327 4328 4329
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  Security_context *save_security_ctx= thd->security_ctx;

  DBUG_ASSERT(!prelocking_placeholder);
  if (prepare_view_securety_context(thd))
    DBUG_RETURN(TRUE);
  thd->security_ctx= find_view_security_context(thd);
  while ((tbl= tb++))
  {
    DBUG_ASSERT(tbl->referencing_view);
4330
    char *local_db, *local_table_name;
4331 4332
    if (tbl->view)
    {
4333 4334
      local_db= tbl->view_db.str;
      local_table_name= tbl->view_name.str;
4335 4336 4337
    }
    else
    {
4338 4339
      local_db= tbl->db;
      local_table_name= tbl->table_name;
4340
    }
4341 4342
    fill_effective_table_privileges(thd, &tbl->grant, local_db,
                                    local_table_name);
4343 4344 4345 4346 4347 4348 4349 4350
    if (tbl->table)
      tbl->table->grant= grant;
  }
  thd->security_ctx= save_security_ctx;
#else
  while ((tbl= tb++))
    tbl->grant.privilege= ~NO_ACCESS;
#endif
unknown's avatar
unknown committed
4351
  DBUG_RETURN(FALSE);
4352 4353 4354
}


unknown's avatar
unknown committed
4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365
Natural_join_column::Natural_join_column(Field_translator *field_param,
                                         TABLE_LIST *tab)
{
  DBUG_ASSERT(tab->field_translation);
  view_field= field_param;
  table_field= NULL;
  table_ref= tab;
  is_common= FALSE;
}


4366
Natural_join_column::Natural_join_column(Item_field *field_param,
unknown's avatar
unknown committed
4367 4368
                                         TABLE_LIST *tab)
{
4369
  DBUG_ASSERT(tab->table == field_param->field->table);
unknown's avatar
unknown committed
4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383
  table_field= field_param;
  view_field= NULL;
  table_ref= tab;
  is_common= FALSE;
}


const char *Natural_join_column::name()
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
    return view_field->name;
  }
4384 4385

  return table_field->field_name;
unknown's avatar
unknown committed
4386 4387 4388 4389 4390 4391 4392 4393
}


Item *Natural_join_column::create_item(THD *thd)
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
4394 4395
    return create_view_field(thd, table_ref, &view_field->item,
                             view_field->name);
unknown's avatar
unknown committed
4396
  }
4397
  return table_field;
unknown's avatar
unknown committed
4398 4399 4400 4401 4402 4403 4404 4405 4406 4407
}


Field *Natural_join_column::field()
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
    return NULL;
  }
4408
  return table_field->field;
unknown's avatar
unknown committed
4409 4410 4411 4412 4413
}


const char *Natural_join_column::table_name()
{
4414
  DBUG_ASSERT(table_ref);
unknown's avatar
unknown committed
4415 4416 4417 4418 4419 4420 4421 4422
  return table_ref->alias;
}


const char *Natural_join_column::db_name()
{
  if (view_field)
    return table_ref->view_db.str;
4423

4424 4425 4426 4427 4428
  /*
    Test that TABLE_LIST::db is the same as st_table_share::db to
    ensure consistency. An exception are I_S schema tables, which
    are inconsistent in this respect.
  */
4429
  DBUG_ASSERT(!strcmp(table_ref->db,
4430
                      table_ref->table->s->db.str) ||
4431
              (table_ref->schema_table &&
4432
               table_ref->table->s->db.str[0] == 0));
4433
  return table_ref->db;
unknown's avatar
unknown committed
4434 4435 4436 4437 4438 4439 4440
}


GRANT_INFO *Natural_join_column::grant()
{
  if (view_field)
    return &(table_ref->grant);
4441
  return &(table_ref->table->grant);
unknown's avatar
unknown committed
4442 4443 4444
}


unknown's avatar
VIEW  
unknown committed
4445 4446
void Field_iterator_view::set(TABLE_LIST *table)
{
unknown's avatar
unknown committed
4447
  DBUG_ASSERT(table->field_translation);
4448
  view= table;
unknown's avatar
VIEW  
unknown committed
4449
  ptr= table->field_translation;
4450
  array_end= table->field_translation_end;
unknown's avatar
VIEW  
unknown committed
4451 4452 4453 4454 4455 4456 4457 4458 4459
}


const char *Field_iterator_table::name()
{
  return (*ptr)->field_name;
}


4460
Item *Field_iterator_table::create_item(THD *thd)
unknown's avatar
VIEW  
unknown committed
4461
{
4462 4463 4464 4465 4466 4467 4468 4469
  SELECT_LEX *select= thd->lex->current_select;

  Item_field *item= new Item_field(thd, &select->context, *ptr);
  if (item && thd->variables.sql_mode & MODE_ONLY_FULL_GROUP_BY &&
      !thd->lex->in_sum_func && select->cur_pos_in_select_list != UNDEF_POS)
  {
    select->non_agg_fields.push_back(item);
    item->marker= select->cur_pos_in_select_list;
4470
    select->set_non_agg_field_used(true);
4471 4472
  }
  return item;
unknown's avatar
VIEW  
unknown committed
4473 4474 4475 4476 4477
}


const char *Field_iterator_view::name()
{
4478
  return ptr->name;
unknown's avatar
VIEW  
unknown committed
4479 4480 4481
}


4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496
Item *Field_iterator_view::create_item(THD *thd)
{
  return create_view_field(thd, view, &ptr->item, ptr->name);
}

Item *create_view_field(THD *thd, TABLE_LIST *view, Item **field_ref,
                        const char *name)
{
  bool save_wrapper= thd->lex->select_lex.no_wrap_view_item;
  Item *field= *field_ref;
  DBUG_ENTER("create_view_field");

  if (view->schema_table_reformed)
  {
    /*
4497 4498 4499
      Translation table items are always Item_fields and already fixed
      ('mysql_schema_table' function). So we can return directly the
      field. This case happens only for 'show & where' commands.
4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516
    */
    DBUG_ASSERT(field && field->fixed);
    DBUG_RETURN(field);
  }

  DBUG_ASSERT(field);
  thd->lex->current_select->no_wrap_view_item= TRUE;
  if (!field->fixed)
  {
    if (field->fix_fields(thd, field_ref))
    {
      thd->lex->current_select->no_wrap_view_item= save_wrapper;
      DBUG_RETURN(0);
    }
    field= *field_ref;
  }
  thd->lex->current_select->no_wrap_view_item= save_wrapper;
4517
  if (save_wrapper)
4518 4519 4520
  {
    DBUG_RETURN(field);
  }
4521
  Item *item= new Item_direct_view_ref(view, field_ref, name);
4522 4523 4524 4525
  DBUG_RETURN(item);
}


unknown's avatar
unknown committed
4526 4527 4528
void Field_iterator_natural_join::set(TABLE_LIST *table_ref)
{
  DBUG_ASSERT(table_ref->join_columns);
4529 4530
  column_ref_it.init(*(table_ref->join_columns));
  cur_column_ref= column_ref_it++;
unknown's avatar
unknown committed
4531 4532 4533
}


4534 4535
void Field_iterator_natural_join::next()
{
4536
  cur_column_ref= column_ref_it++;
4537 4538
  DBUG_ASSERT(!cur_column_ref || ! cur_column_ref->table_field ||
              cur_column_ref->table_ref->table ==
4539
              cur_column_ref->table_field->field->table);
4540 4541 4542
}


unknown's avatar
unknown committed
4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557
void Field_iterator_table_ref::set_field_iterator()
{
  DBUG_ENTER("Field_iterator_table_ref::set_field_iterator");
  /*
    If the table reference we are iterating over is a natural join, or it is
    an operand of a natural join, and TABLE_LIST::join_columns contains all
    the columns of the join operand, then we pick the columns from
    TABLE_LIST::join_columns, instead of the  orginial container of the
    columns of the join operator.
  */
  if (table_ref->is_join_columns_complete)
  {
    /* Necesary, but insufficient conditions. */
    DBUG_ASSERT(table_ref->is_natural_join ||
                table_ref->nested_join ||
4558 4559 4560 4561 4562 4563 4564 4565 4566 4567
                (table_ref->join_columns &&
                 /* This is a merge view. */
                 ((table_ref->field_translation &&
                   table_ref->join_columns->elements ==
                   (ulong)(table_ref->field_translation_end -
                           table_ref->field_translation)) ||
                  /* This is stored table or a tmptable view. */
                  (!table_ref->field_translation &&
                   table_ref->join_columns->elements ==
                   table_ref->table->s->fields))));
unknown's avatar
unknown committed
4568 4569
    field_it= &natural_join_it;
    DBUG_PRINT("info",("field_it for '%s' is Field_iterator_natural_join",
unknown's avatar
unknown committed
4570
                       table_ref->alias));
unknown's avatar
unknown committed
4571 4572 4573 4574 4575 4576 4577 4578
  }
  /* This is a merge view, so use field_translation. */
  else if (table_ref->field_translation)
  {
    DBUG_ASSERT(table_ref->view &&
                table_ref->effective_algorithm == VIEW_ALGORITHM_MERGE);
    field_it= &view_field_it;
    DBUG_PRINT("info", ("field_it for '%s' is Field_iterator_view",
unknown's avatar
unknown committed
4579
                        table_ref->alias));
unknown's avatar
unknown committed
4580 4581 4582 4583 4584 4585 4586
  }
  /* This is a base table or stored view. */
  else
  {
    DBUG_ASSERT(table_ref->table || table_ref->view);
    field_it= &table_field_it;
    DBUG_PRINT("info", ("field_it for '%s' is Field_iterator_table",
unknown's avatar
unknown committed
4587
                        table_ref->alias));
unknown's avatar
unknown committed
4588
  }
4589
  field_it->set(table_ref);
unknown's avatar
unknown committed
4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621
  DBUG_VOID_RETURN;
}


void Field_iterator_table_ref::set(TABLE_LIST *table)
{
  DBUG_ASSERT(table);
  first_leaf= table->first_leaf_for_name_resolution();
  last_leaf=  table->last_leaf_for_name_resolution();
  DBUG_ASSERT(first_leaf && last_leaf);
  table_ref= first_leaf;
  set_field_iterator();
}


void Field_iterator_table_ref::next()
{
  /* Move to the next field in the current table reference. */
  field_it->next();
  /*
    If all fields of the current table reference are exhausted, move to
    the next leaf table reference.
  */
  if (field_it->end_of_fields() && table_ref != last_leaf)
  {
    table_ref= table_ref->next_name_resolution_table;
    DBUG_ASSERT(table_ref);
    set_field_iterator();
  }
}


4622
const char *Field_iterator_table_ref::get_table_name()
unknown's avatar
unknown committed
4623 4624 4625 4626 4627
{
  if (table_ref->view)
    return table_ref->view_name.str;
  else if (table_ref->is_natural_join)
    return natural_join_it.column_ref()->table_name();
4628 4629

  DBUG_ASSERT(!strcmp(table_ref->table_name,
unknown's avatar
unknown committed
4630
                      table_ref->table->s->table_name.str));
4631
  return table_ref->table_name;
unknown's avatar
unknown committed
4632 4633 4634
}


4635
const char *Field_iterator_table_ref::get_db_name()
unknown's avatar
unknown committed
4636 4637 4638 4639 4640
{
  if (table_ref->view)
    return table_ref->view_db.str;
  else if (table_ref->is_natural_join)
    return natural_join_it.column_ref()->db_name();
4641

4642 4643 4644 4645 4646
  /*
    Test that TABLE_LIST::db is the same as st_table_share::db to
    ensure consistency. An exception are I_S schema tables, which
    are inconsistent in this respect.
  */
4647
  DBUG_ASSERT(!strcmp(table_ref->db, table_ref->table->s->db.str) ||
4648
              (table_ref->schema_table &&
4649
               table_ref->table->s->db.str[0] == 0));
4650

4651
  return table_ref->db;
unknown's avatar
unknown committed
4652 4653 4654 4655 4656 4657 4658 4659 4660
}


GRANT_INFO *Field_iterator_table_ref::grant()
{
  if (table_ref->view)
    return &(table_ref->grant);
  else if (table_ref->is_natural_join)
    return natural_join_it.column_ref()->grant();
4661
  return &(table_ref->table->grant);
unknown's avatar
unknown committed
4662 4663 4664 4665 4666 4667 4668 4669 4670
}


/*
  Create new or return existing column reference to a column of a
  natural/using join.

  SYNOPSIS
    Field_iterator_table_ref::get_or_create_column_ref()
unknown's avatar
unknown committed
4671 4672
    parent_table_ref  the parent table reference over which the
                      iterator is iterating
unknown's avatar
unknown committed
4673 4674

  DESCRIPTION
unknown's avatar
unknown committed
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695
    Create a new natural join column for the current field of the
    iterator if no such column was created, or return an already
    created natural join column. The former happens for base tables or
    views, and the latter for natural/using joins. If a new field is
    created, then the field is added to 'parent_table_ref' if it is
    given, or to the original table referene of the field if
    parent_table_ref == NULL.

  NOTES
    This method is designed so that when a Field_iterator_table_ref
    walks through the fields of a table reference, all its fields
    are created and stored as follows:
    - If the table reference being iterated is a stored table, view or
      natural/using join, store all natural join columns in a list
      attached to that table reference.
    - If the table reference being iterated is a nested join that is
      not natural/using join, then do not materialize its result
      fields. This is OK because for such table references
      Field_iterator_table_ref iterates over the fields of the nested
      table references (recursively). In this way we avoid the storage
      of unnecessay copies of result columns of nested joins.
unknown's avatar
unknown committed
4696 4697

  RETURN
4698 4699
    #     Pointer to a column of a natural join (or its operand)
    NULL  No memory to allocate the column
unknown's avatar
unknown committed
4700 4701 4702
*/

Natural_join_column *
4703
Field_iterator_table_ref::get_or_create_column_ref(THD *thd, TABLE_LIST *parent_table_ref)
unknown's avatar
unknown committed
4704
{
4705
  Natural_join_column *nj_col;
unknown's avatar
unknown committed
4706 4707 4708 4709
  bool is_created= TRUE;
  uint field_count;
  TABLE_LIST *add_table_ref= parent_table_ref ?
                             parent_table_ref : table_ref;
4710
  LINT_INIT(field_count);
unknown's avatar
unknown committed
4711

unknown's avatar
unknown committed
4712
  if (field_it == &table_field_it)
4713 4714
  {
    /* The field belongs to a stored table. */
4715
    Field *tmp_field= table_field_it.field();
4716 4717 4718 4719 4720
    Item_field *tmp_item=
      new Item_field(thd, &thd->lex->current_select->context, tmp_field);
    if (!tmp_item)
      return NULL;
    nj_col= new Natural_join_column(tmp_item, table_ref);
unknown's avatar
unknown committed
4721
    field_count= table_ref->table->s->fields;
4722 4723 4724 4725 4726 4727
  }
  else if (field_it == &view_field_it)
  {
    /* The field belongs to a merge view or information schema table. */
    Field_translator *translated_field= view_field_it.field_translator();
    nj_col= new Natural_join_column(translated_field, table_ref);
unknown's avatar
unknown committed
4728 4729
    field_count= table_ref->field_translation_end -
                 table_ref->field_translation;
4730 4731 4732 4733 4734 4735 4736 4737
  }
  else
  {
    /*
      The field belongs to a NATURAL join, therefore the column reference was
      already created via one of the two constructor calls above. In this case
      we just return the already created column reference.
    */
unknown's avatar
unknown committed
4738 4739
    DBUG_ASSERT(table_ref->is_join_columns_complete);
    is_created= FALSE;
4740 4741 4742
    nj_col= natural_join_it.column_ref();
    DBUG_ASSERT(nj_col);
  }
4743
  DBUG_ASSERT(!nj_col->table_field ||
4744
              nj_col->table_ref->table == nj_col->table_field->field->table);
unknown's avatar
unknown committed
4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774

  /*
    If the natural join column was just created add it to the list of
    natural join columns of either 'parent_table_ref' or to the table
    reference that directly contains the original field.
  */
  if (is_created)
  {
    /* Make sure not all columns were materialized. */
    DBUG_ASSERT(!add_table_ref->is_join_columns_complete);
    if (!add_table_ref->join_columns)
    {
      /* Create a list of natural join columns on demand. */
      if (!(add_table_ref->join_columns= new List<Natural_join_column>))
        return NULL;
      add_table_ref->is_join_columns_complete= FALSE;
    }
    add_table_ref->join_columns->push_back(nj_col);
    /*
      If new fields are added to their original table reference, mark if
      all fields were added. We do it here as the caller has no easy way
      of knowing when to do it.
      If the fields are being added to parent_table_ref, then the caller
      must take care to mark when all fields are created/added.
    */
    if (!parent_table_ref &&
        add_table_ref->join_columns->elements == field_count)
      add_table_ref->is_join_columns_complete= TRUE;
  }

4775
  return nj_col;
unknown's avatar
unknown committed
4776 4777 4778
}


4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808
/*
  Return an existing reference to a column of a natural/using join.

  SYNOPSIS
    Field_iterator_table_ref::get_natural_column_ref()

  DESCRIPTION
    The method should be called in contexts where it is expected that
    all natural join columns are already created, and that the column
    being retrieved is a Natural_join_column.

  RETURN
    #     Pointer to a column of a natural join (or its operand)
    NULL  No memory to allocate the column
*/

Natural_join_column *
Field_iterator_table_ref::get_natural_column_ref()
{
  Natural_join_column *nj_col;

  DBUG_ASSERT(field_it == &natural_join_it);
  /*
    The field belongs to a NATURAL join, therefore the column reference was
    already created via one of the two constructor calls above. In this case
    we just return the already created column reference.
  */
  nj_col= natural_join_it.column_ref();
  DBUG_ASSERT(nj_col &&
              (!nj_col->table_field ||
4809
               nj_col->table_ref->table == nj_col->table_field->field->table));
4810 4811 4812
  return nj_col;
}

4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824
/*****************************************************************************
  Functions to handle column usage bitmaps (read_set, write_set etc...)
*****************************************************************************/

/* Reset all columns bitmaps */

void st_table::clear_column_bitmaps()
{
  /*
    Reset column read/write usage. It's identical to:
    bitmap_clear_all(&table->def_read_set);
    bitmap_clear_all(&table->def_write_set);
Igor Babaev's avatar
Igor Babaev committed
4825
    bitmap_clear_all(&table->def_vcol_set);
4826
  */
Igor Babaev's avatar
Igor Babaev committed
4827 4828
  bzero((char*) def_read_set.bitmap, s->column_bitmap_size*3);
  column_bitmaps_set(&def_read_set, &def_write_set, &def_vcol_set);
4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870
}


/*
  Tell handler we are going to call position() and rnd_pos() later.
  
  NOTES:
  This is needed for handlers that uses the primary key to find the
  row. In this case we have to extend the read bitmap with the primary
  key fields.
*/

void st_table::prepare_for_position()
{
  DBUG_ENTER("st_table::prepare_for_position");

  if ((file->ha_table_flags() & HA_PRIMARY_KEY_IN_READ_INDEX) &&
      s->primary_key < MAX_KEY)
  {
    mark_columns_used_by_index_no_reset(s->primary_key, read_set);
    /* signal change */
    file->column_bitmaps_signal();
  }
  DBUG_VOID_RETURN;
}


/*
  Mark that only fields from one key is used

  NOTE:
    This changes the bitmap to use the tmp bitmap
    After this, you can't access any other columns in the table until
    bitmaps are reset, for example with st_table::clear_column_bitmaps()
    or st_table::restore_column_maps_after_mark_index()
*/

void st_table::mark_columns_used_by_index(uint index)
{
  MY_BITMAP *bitmap= &tmp_set;
  DBUG_ENTER("st_table::mark_columns_used_by_index");

4871
  enable_keyread();
4872 4873 4874 4875 4876 4877 4878
  bitmap_clear_all(bitmap);
  mark_columns_used_by_index_no_reset(index, bitmap);
  column_bitmaps_set(bitmap, bitmap);
  DBUG_VOID_RETURN;
}


4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891
/*
  Add fields used by a specified index to the table's read_set.

  NOTE:
    The original state can be restored with
    restore_column_maps_after_mark_index().
*/

void st_table::add_read_columns_used_by_index(uint index)
{
  MY_BITMAP *bitmap= &tmp_set;
  DBUG_ENTER("st_table::add_read_columns_used_by_index");

Michael Widenius's avatar
Michael Widenius committed
4892
  enable_keyread();
4893 4894 4895 4896 4897 4898 4899
  bitmap_copy(bitmap, read_set);
  mark_columns_used_by_index_no_reset(index, bitmap);
  column_bitmaps_set(bitmap, write_set);
  DBUG_VOID_RETURN;
}


4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914
/*
  Restore to use normal column maps after key read

  NOTES
    This reverse the change done by mark_columns_used_by_index

  WARNING
    For this to work, one must have the normal table maps in place
    when calling mark_columns_used_by_index
*/

void st_table::restore_column_maps_after_mark_index()
{
  DBUG_ENTER("st_table::restore_column_maps_after_mark_index");

4915
  disable_keyread();
4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932
  default_column_bitmaps();
  file->column_bitmaps_signal();
  DBUG_VOID_RETURN;
}


/*
  mark columns used by key, but don't reset other fields
*/

void st_table::mark_columns_used_by_index_no_reset(uint index,
                                                   MY_BITMAP *bitmap)
{
  KEY_PART_INFO *key_part= key_info[index].key_part;
  KEY_PART_INFO *key_part_end= (key_part +
                                key_info[index].key_parts);
  for (;key_part != key_part_end; key_part++)
4933
  {
4934
    bitmap_set_bit(bitmap, key_part->fieldnr-1);
4935 4936 4937 4938 4939 4940
    if (key_part->field->vcol_info &&
        key_part->field->vcol_info->expr_item)
      key_part->field->vcol_info->
               expr_item->walk(&Item::register_field_in_bitmap, 
                               1, (uchar *) bitmap);
  }
4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960
}


/*
  Mark auto-increment fields as used fields in both read and write maps

  NOTES
    This is needed in insert & update as the auto-increment field is
    always set and sometimes read.
*/

void st_table::mark_auto_increment_column()
{
  DBUG_ASSERT(found_next_number_field);
  /*
    We must set bit in read set as update_auto_increment() is using the
    store() to check overflow of auto_increment values
  */
  bitmap_set_bit(read_set, found_next_number_field->field_index);
  bitmap_set_bit(write_set, found_next_number_field->field_index);
4961
  if (s->next_number_keypart)
4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987
    mark_columns_used_by_index_no_reset(s->next_number_index, read_set);
  file->column_bitmaps_signal();
}


/*
  Mark columns needed for doing an delete of a row

  DESCRIPTON
    Some table engines don't have a cursor on the retrieve rows
    so they need either to use the primary key or all columns to
    be able to delete a row.

    If the engine needs this, the function works as follows:
    - If primary key exits, mark the primary key columns to be read.
    - If not, mark all columns to be read

    If the engine has HA_REQUIRES_KEY_COLUMNS_FOR_DELETE, we will
    mark all key columns as 'to-be-read'. This allows the engine to
    loop over the given record to find all keys and doesn't have to
    retrieve the row again.
*/

void st_table::mark_columns_needed_for_delete()
{
  if (triggers)
4988
    triggers->mark_fields_used(TRG_EVENT_DELETE);
4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038
  if (file->ha_table_flags() & HA_REQUIRES_KEY_COLUMNS_FOR_DELETE)
  {
    Field **reg_field;
    for (reg_field= field ; *reg_field ; reg_field++)
    {
      if ((*reg_field)->flags & PART_KEY_FLAG)
        bitmap_set_bit(read_set, (*reg_field)->field_index);
    }
    file->column_bitmaps_signal();
  }
  if (file->ha_table_flags() & HA_PRIMARY_KEY_REQUIRED_FOR_DELETE)
  {
    /*
      If the handler has no cursor capabilites, we have to read either
      the primary key, the hidden primary key or all columns to be
      able to do an delete
    */
    if (s->primary_key == MAX_KEY)
      file->use_hidden_primary_key();
    else
    {
      mark_columns_used_by_index_no_reset(s->primary_key, read_set);
      file->column_bitmaps_signal();
    }
  }
}


/*
  Mark columns needed for doing an update of a row

  DESCRIPTON
    Some engines needs to have all columns in an update (to be able to
    build a complete row). If this is the case, we mark all not
    updated columns to be read.

    If this is no the case, we do like in the delete case and mark
    if neeed, either the primary key column or all columns to be read.
    (see mark_columns_needed_for_delete() for details)

    If the engine has HA_REQUIRES_KEY_COLUMNS_FOR_DELETE, we will
    mark all USED key columns as 'to-be-read'. This allows the engine to
    loop over the given record to find all changed keys and doesn't have to
    retrieve the row again.
*/

void st_table::mark_columns_needed_for_update()
{
  DBUG_ENTER("mark_columns_needed_for_update");
  if (triggers)
5039
    triggers->mark_fields_used(TRG_EVENT_UPDATE);
5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066
  if (file->ha_table_flags() & HA_REQUIRES_KEY_COLUMNS_FOR_DELETE)
  {
    /* Mark all used key columns for read */
    Field **reg_field;
    for (reg_field= field ; *reg_field ; reg_field++)
    {
      /* Merge keys is all keys that had a column refered to in the query */
      if (merge_keys.is_overlapping((*reg_field)->part_of_key))
        bitmap_set_bit(read_set, (*reg_field)->field_index);
    }
    file->column_bitmaps_signal();
  }
  if (file->ha_table_flags() & HA_PRIMARY_KEY_REQUIRED_FOR_DELETE)
  {
    /*
      If the handler has no cursor capabilites, we have to read either
      the primary key, the hidden primary key or all columns to be
      able to do an update
    */
    if (s->primary_key == MAX_KEY)
      file->use_hidden_primary_key();
    else
    {
      mark_columns_used_by_index_no_reset(s->primary_key, read_set);
      file->column_bitmaps_signal();
    }
  }
5067
  /* Mark all virtual columns needed for update */
Igor Babaev's avatar
Igor Babaev committed
5068
  mark_virtual_columns_for_write(FALSE);
5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083
  DBUG_VOID_RETURN;
}


/*
  Mark columns the handler needs for doing an insert

  For now, this is used to mark fields used by the trigger
  as changed.
*/

void st_table::mark_columns_needed_for_insert()
{
  if (triggers)
  {
5084 5085 5086 5087 5088 5089 5090 5091
    /*
      We don't need to mark columns which are used by ON DELETE and
      ON UPDATE triggers, which may be invoked in case of REPLACE or
      INSERT ... ON DUPLICATE KEY UPDATE, since before doing actual
      row replacement or update write_record() will mark all table
      fields as used.
    */
    triggers->mark_fields_used(TRG_EVENT_INSERT);
5092 5093 5094
  }
  if (found_next_number_field)
    mark_auto_increment_column();
5095
  /* Mark virtual columns for insert */
Igor Babaev's avatar
Igor Babaev committed
5096
  mark_virtual_columns_for_write(TRUE);
5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121
}


/*
   @brief Mark a column as virtual used by the query

   @param field           the field for the column to be marked

   @details
     The function marks the column for 'field' as virtual (computed)
     in the bitmap vcol_set.
     If the column is marked for the first time the expression to compute
     the column is traversed and all columns that are occurred there are
     marked in the read_set of the table.

   @retval
     TRUE       if column is marked for the first time
   @retval
     FALSE      otherwise
*/

bool st_table::mark_virtual_col(Field *field)
{
  bool res;
  DBUG_ASSERT(field->vcol_info);
Igor Babaev's avatar
Igor Babaev committed
5122
  if (!(res= bitmap_fast_test_and_set(vcol_set, field->field_index)))
5123 5124 5125 5126 5127 5128
  {
    Item *vcol_item= field->vcol_info->expr_item;
    DBUG_ASSERT(vcol_item);
    vcol_item->walk(&Item::register_field_in_read_map, 1, (uchar *) 0);
  }
  return res;
5129 5130
}

5131

5132 5133
/* 
  @brief Mark virtual columns for update/insert commands
Igor Babaev's avatar
Igor Babaev committed
5134 5135
    
  @param insert_fl    <-> virtual columns are marked for insert command 
5136 5137 5138 5139

  @details
    The function marks virtual columns used in a update/insert commands
    in the vcol_set bitmap.
Igor Babaev's avatar
Igor Babaev committed
5140 5141
    For an insert command a virtual column is always marked in write_set if
    it is a stored column.
5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159
    If a virtual column is from  write_set it is always marked in vcol_set.
    If a stored virtual column is not from write_set but it is computed
    through columns from write_set it is also marked in vcol_set, and,
    besides, it is added to write_set. 

  @return       void

  @note
    Let table t1 have columns a,b,c and let column c be a stored virtual 
    column computed through columns a and b. Then for the query
      UPDATE t1 SET a=1
    column c will be placed into vcol_set and into write_set while
    column b will be placed into read_set.
    If column c was a virtual column, but not a stored virtual column
    then it would not be added to any of the sets. Column b would not
    be added to read_set either.           
*/

Igor Babaev's avatar
Igor Babaev committed
5160
void st_table::mark_virtual_columns_for_write(bool insert_fl)
5161 5162 5163 5164
{
  Field **vfield_ptr, *tmp_vfield;
  bool bitmap_updated= FALSE;

Igor Babaev's avatar
Igor Babaev committed
5165 5166 5167
  if (!vfield)
    return;

5168 5169 5170 5171 5172 5173 5174
  for (vfield_ptr= vfield; *vfield_ptr; vfield_ptr++)
  {
    tmp_vfield= *vfield_ptr;
    if (bitmap_is_set(write_set, tmp_vfield->field_index))
      bitmap_updated= mark_virtual_col(tmp_vfield);
    else if (tmp_vfield->stored_in_db)
    {
Igor Babaev's avatar
Igor Babaev committed
5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189
      bool mark_fl= insert_fl;
      if (!mark_fl)
      {
        MY_BITMAP *save_read_set;
        Item *vcol_item= tmp_vfield->vcol_info->expr_item;
        DBUG_ASSERT(vcol_item);
        bitmap_clear_all(&tmp_set);
        save_read_set= read_set;
        read_set= &tmp_set;
        vcol_item->walk(&Item::register_field_in_read_map, 1, (uchar *) 0);
        read_set= save_read_set;
        bitmap_intersect(&tmp_set, write_set);
        mark_fl= !bitmap_is_clear_all(&tmp_set);
      }
      if (mark_fl)
5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200
      {
        bitmap_set_bit(write_set, tmp_vfield->field_index);
        mark_virtual_col(tmp_vfield);
        bitmap_updated= TRUE;
      }
    } 
  }
  if (bitmap_updated)
    file->column_bitmaps_signal();
}

5201 5202 5203 5204 5205 5206 5207
/**
  @brief Check if this is part of a MERGE table with attached children.

  @return       status
    @retval     TRUE            children are attached
    @retval     FALSE           no MERGE part or children not attached

5208
  @details
5209 5210 5211 5212 5213 5214 5215 5216 5217 5218
    A MERGE table consists of a parent TABLE and zero or more child
    TABLEs. Each of these TABLEs is called a part of a MERGE table.
*/

bool st_table::is_children_attached(void)
{
  return((child_l && children_attached) ||
         (parent && parent->children_attached));
}

5219 5220 5221 5222
/*
  Cleanup this table for re-execution.

  SYNOPSIS
5223
    TABLE_LIST::reinit_before_use()
5224 5225
*/

5226
void TABLE_LIST::reinit_before_use(THD *thd)
5227 5228 5229 5230 5231 5232
{
  /*
    Reset old pointers to TABLEs: they are not valid since the tables
    were closed in the end of previous prepare or execute call.
  */
  table= 0;
5233
  /* Reset is_schema_table_processed value(needed for I_S tables */
5234
  schema_table_state= NOT_PROCESSED;
5235 5236

  TABLE_LIST *embedded; /* The table at the current level of nesting. */
5237
  TABLE_LIST *parent_embedding= this; /* The parent nested table reference. */
5238 5239
  do
  {
5240
    embedded= parent_embedding;
5241 5242
    if (embedded->prep_on_expr)
      embedded->on_expr= embedded->prep_on_expr->copy_andor_structure(thd);
5243
    parent_embedding= embedded->embedding;
5244
  }
5245 5246
  while (parent_embedding &&
         parent_embedding->nested_join->join_list.head() == embedded);
5247 5248
}

unknown's avatar
unknown committed
5249 5250 5251 5252
/*
  Return subselect that contains the FROM list this table is taken from

  SYNOPSIS
5253
    TABLE_LIST::containing_subselect()
unknown's avatar
unknown committed
5254 5255 5256 5257 5258 5259 5260 5261
 
  RETURN
    Subselect item for the subquery that contains the FROM list
    this table is taken from if there is any
    0 - otherwise

*/

5262
Item_subselect *TABLE_LIST::containing_subselect()
unknown's avatar
unknown committed
5263 5264 5265
{    
  return (select_lex ? select_lex->master_unit()->item : 0);
}
5266

5267 5268 5269 5270 5271 5272 5273 5274 5275
/*
  Compiles the tagged hints list and fills up the bitmasks.

  SYNOPSIS
    process_index_hints()
      table         the TABLE to operate on.

  DESCRIPTION
    The parser collects the index hints for each table in a "tagged list" 
5276
    (TABLE_LIST::index_hints). Using the information in this tagged list
5277 5278
    this function sets the members st_table::keys_in_use_for_query, 
    st_table::keys_in_use_for_group_by, st_table::keys_in_use_for_order_by,
5279 5280
    st_table::force_index, st_table::force_index_order, 
    st_table::force_index_group and st_table::covering_keys.
5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318

    Current implementation of the runtime does not allow mixing FORCE INDEX
    and USE INDEX, so this is checked here. Then the FORCE INDEX list 
    (if non-empty) is appended to the USE INDEX list and a flag is set.

    Multiple hints of the same kind are processed so that each clause 
    is applied to what is computed in the previous clause.
    For example:
        USE INDEX (i1) USE INDEX (i2)
    is equivalent to
        USE INDEX (i1,i2)
    and means "consider only i1 and i2".
        
    Similarly
        USE INDEX () USE INDEX (i1)
    is equivalent to
        USE INDEX (i1)
    and means "consider only the index i1"

    It is OK to have the same index several times, e.g. "USE INDEX (i1,i1)" is
    not an error.
        
    Different kind of hints (USE/FORCE/IGNORE) are processed in the following
    order:
      1. All indexes in USE (or FORCE) INDEX are added to the mask.
      2. All IGNORE INDEX

    e.g. "USE INDEX i1, IGNORE INDEX i1, USE INDEX i1" will not use i1 at all
    as if we had "USE INDEX i1, USE INDEX i1, IGNORE INDEX i1".

    As an optimization if there is a covering index, and we have 
    IGNORE INDEX FOR GROUP/ORDER, and this index is used for the JOIN part, 
    then we have to ignore the IGNORE INDEX FROM GROUP/ORDER.

  RETURN VALUE
    FALSE                no errors found
    TRUE                 found and reported an error.
*/
5319
bool TABLE_LIST::process_index_hints(TABLE *tbl)
5320 5321
{
  /* initialize the result variables */
5322 5323
  tbl->keys_in_use_for_query= tbl->keys_in_use_for_group_by= 
    tbl->keys_in_use_for_order_by= tbl->s->keys_in_use;
5324 5325 5326 5327 5328 5329 5330

  /* index hint list processing */
  if (index_hints)
  {
    key_map index_join[INDEX_HINT_FORCE + 1];
    key_map index_order[INDEX_HINT_FORCE + 1];
    key_map index_group[INDEX_HINT_FORCE + 1];
unknown's avatar
unknown committed
5331
    Index_hint *hint;
5332 5333 5334
    int type;
    bool have_empty_use_join= FALSE, have_empty_use_order= FALSE, 
         have_empty_use_group= FALSE;
unknown's avatar
unknown committed
5335
    List_iterator <Index_hint> iter(*index_hints);
5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374

    /* initialize temporary variables used to collect hints of each kind */
    for (type= INDEX_HINT_IGNORE; type <= INDEX_HINT_FORCE; type++)
    {
      index_join[type].clear_all();
      index_order[type].clear_all();
      index_group[type].clear_all();
    }

    /* iterate over the hints list */
    while ((hint= iter++))
    {
      uint pos;

      /* process empty USE INDEX () */
      if (hint->type == INDEX_HINT_USE && !hint->key_name.str)
      {
        if (hint->clause & INDEX_HINT_MASK_JOIN)
        {
          index_join[hint->type].clear_all();
          have_empty_use_join= TRUE;
        }
        if (hint->clause & INDEX_HINT_MASK_ORDER)
        {
          index_order[hint->type].clear_all();
          have_empty_use_order= TRUE;
        }
        if (hint->clause & INDEX_HINT_MASK_GROUP)
        {
          index_group[hint->type].clear_all();
          have_empty_use_group= TRUE;
        }
        continue;
      }

      /* 
        Check if an index with the given name exists and get his offset in 
        the keys bitmask for the table 
      */
5375 5376
      if (tbl->s->keynames.type_names == 0 ||
          (pos= find_type(&tbl->s->keynames, hint->key_name.str,
5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407
                          hint->key_name.length, 1)) <= 0)
      {
        my_error(ER_KEY_DOES_NOT_EXITS, MYF(0), hint->key_name.str, alias);
        return 1;
      }

      pos--;

      /* add to the appropriate clause mask */
      if (hint->clause & INDEX_HINT_MASK_JOIN)
        index_join[hint->type].set_bit (pos);
      if (hint->clause & INDEX_HINT_MASK_ORDER)
        index_order[hint->type].set_bit (pos);
      if (hint->clause & INDEX_HINT_MASK_GROUP)
        index_group[hint->type].set_bit (pos);
    }

    /* cannot mix USE INDEX and FORCE INDEX */
    if ((!index_join[INDEX_HINT_FORCE].is_clear_all() ||
         !index_order[INDEX_HINT_FORCE].is_clear_all() ||
         !index_group[INDEX_HINT_FORCE].is_clear_all()) &&
        (!index_join[INDEX_HINT_USE].is_clear_all() ||  have_empty_use_join ||
         !index_order[INDEX_HINT_USE].is_clear_all() || have_empty_use_order ||
         !index_group[INDEX_HINT_USE].is_clear_all() || have_empty_use_group))
    {
      my_error(ER_WRONG_USAGE, MYF(0), index_hint_type_name[INDEX_HINT_USE],
               index_hint_type_name[INDEX_HINT_FORCE]);
      return 1;
    }

    /* process FORCE INDEX as USE INDEX with a flag */
5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424
    if (!index_order[INDEX_HINT_FORCE].is_clear_all())
    {
      tbl->force_index_order= TRUE;
      index_order[INDEX_HINT_USE].merge(index_order[INDEX_HINT_FORCE]);
    }

    if (!index_group[INDEX_HINT_FORCE].is_clear_all())
    {
      tbl->force_index_group= TRUE;
      index_group[INDEX_HINT_USE].merge(index_group[INDEX_HINT_FORCE]);
    }

    /*
      TODO: get rid of tbl->force_index (on if any FORCE INDEX is specified) and
      create tbl->force_index_join instead.
      Then use the correct force_index_XX instead of the global one.
    */
5425
    if (!index_join[INDEX_HINT_FORCE].is_clear_all() ||
5426
        tbl->force_index_group || tbl->force_index_order)
5427
    {
5428
      tbl->force_index= TRUE;
5429 5430 5431 5432 5433
      index_join[INDEX_HINT_USE].merge(index_join[INDEX_HINT_FORCE]);
    }

    /* apply USE INDEX */
    if (!index_join[INDEX_HINT_USE].is_clear_all() || have_empty_use_join)
5434
      tbl->keys_in_use_for_query.intersect(index_join[INDEX_HINT_USE]);
5435
    if (!index_order[INDEX_HINT_USE].is_clear_all() || have_empty_use_order)
5436
      tbl->keys_in_use_for_order_by.intersect (index_order[INDEX_HINT_USE]);
5437
    if (!index_group[INDEX_HINT_USE].is_clear_all() || have_empty_use_group)
5438
      tbl->keys_in_use_for_group_by.intersect (index_group[INDEX_HINT_USE]);
5439 5440

    /* apply IGNORE INDEX */
5441 5442 5443
    tbl->keys_in_use_for_query.subtract (index_join[INDEX_HINT_IGNORE]);
    tbl->keys_in_use_for_order_by.subtract (index_order[INDEX_HINT_IGNORE]);
    tbl->keys_in_use_for_group_by.subtract (index_group[INDEX_HINT_IGNORE]);
5444 5445 5446
  }

  /* make sure covering_keys don't include indexes disabled with a hint */
5447
  tbl->covering_keys.intersect(tbl->keys_in_use_for_query);
5448 5449 5450
  return 0;
}

5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468

size_t max_row_length(TABLE *table, const uchar *data)
{
  TABLE_SHARE *table_s= table->s;
  size_t length= table_s->reclength + 2 * table_s->fields;
  uint *const beg= table_s->blob_field;
  uint *const end= beg + table_s->blob_fields;

  for (uint *ptr= beg ; ptr != end ; ++ptr)
  {
    Field_blob* const blob= (Field_blob*) table->field[*ptr];
    length+= blob->get_length((const uchar*)
                              (data + blob->offset(table->record[0]))) +
      HA_KEY_BLOB_LENGTH;
  }
  return length;
}

5469 5470 5471
/*
  @brief Compute values for virtual columns used in query

Igor Babaev's avatar
Igor Babaev committed
5472
  @param  thd              Thread handle
5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488
  @param  table            The TABLE object
  @param  for_write        Requests to compute only fields needed for write   
  
  @details
    The function computes the values of the virtual columns of the table and
    stores them in the table record buffer.
    Only fields from vcol_set are computed, and, when the flag for_write is not
    set to TRUE, a virtual field is computed only if it's not stored.
    The flag for_write is set to TRUE for row insert/update operations. 
 
  @retval
    0    Success
  @retval
    >0   Error occurred when storing a virtual field value
*/

Igor Babaev's avatar
Igor Babaev committed
5489
int update_virtual_fields(THD *thd, TABLE *table, bool for_write)
5490 5491 5492
{
  DBUG_ENTER("update_virtual_fields");
  Field **vfield_ptr, *vfield;
5493
  int error __attribute__ ((unused))= 0;
5494 5495 5496
  if (!table || !table->vfield)
    DBUG_RETURN(0);

Igor Babaev's avatar
Igor Babaev committed
5497
  thd->reset_arena_for_cached_items(table->expr_arena);
5498 5499 5500 5501 5502 5503
  /* Iterate over virtual fields in the table */
  for (vfield_ptr= table->vfield; *vfield_ptr; vfield_ptr++)
  {
    vfield= (*vfield_ptr);
    DBUG_ASSERT(vfield->vcol_info && vfield->vcol_info->expr_item);
    /* Only update those fields that are marked in the vcol_set bitmap */
Igor Babaev's avatar
Igor Babaev committed
5504
    if (bitmap_is_set(table->vcol_set, vfield->field_index) &&
5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515
        (for_write || !vfield->stored_in_db))
    {
      /* Compute the actual value of the virtual fields */
      error= vfield->vcol_info->expr_item->save_in_field(vfield, 0);
      DBUG_PRINT("info", ("field '%s' - updated", vfield->field_name));
    }
    else
    {
      DBUG_PRINT("info", ("field '%s' - skipped", vfield->field_name));
    }
  }
Igor Babaev's avatar
Igor Babaev committed
5516
  thd->reset_arena_for_cached_items(0);
5517 5518 5519
  DBUG_RETURN(0);
}

unknown's avatar
unknown committed
5520 5521 5522 5523
/*****************************************************************************
** Instansiate templates
*****************************************************************************/

5524
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
unknown's avatar
unknown committed
5525 5526 5527
template class List<String>;
template class List_iterator<String>;
#endif