table.cc 204 KB
Newer Older
Kent Boortz's avatar
Kent Boortz committed
1
/*
Sergei Golubchik's avatar
Sergei Golubchik committed
2
   Copyright (c) 2000, 2011, Oracle and/or its affiliates.
3
   Copyright (c) 2008, 2013, 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
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA */
unknown's avatar
unknown committed
17 18 19 20


/* Some general useful functions */

Mats Kindahl's avatar
Mats Kindahl committed
21
#include "my_global.h"                          /* NO_EMBEDDED_ACCESS_CHECKS */
22 23 24 25 26 27
#include "sql_priv.h"
#include "unireg.h"                    // REQUIRED: for other includes
#include "table.h"
#include "key.h"                                // find_ref_key
#include "sql_table.h"                          // build_table_filename,
                                                // primary_key_name
28
#include "sql_trigger.h"
29 30 31 32 33
#include "sql_parse.h"                          // free_items
#include "strfunc.h"                            // unhex_type2
#include "sql_partition.h"       // mysql_unpack_partition,
                                 // fix_partition_func, partition_info
#include "sql_acl.h"             // *_ACL, acl_getroot_no_password
34
#include "sql_base.h"
35
#include "create_options.h"
unknown's avatar
unknown committed
36
#include <m_ctype.h>
37
#include "my_md5.h"
unknown's avatar
unknown committed
38
#include "my_bit.h"
39
#include "sql_select.h"
Sergei Golubchik's avatar
Sergei Golubchik committed
40
#include "sql_derived.h"
41
#include "sql_statistics.h"
42
#include "discover.h"
43
#include "mdl.h"                 // MDL_wait_for_graph_visitor
unknown's avatar
unknown committed
44

45 46 47
/* INFORMATION_SCHEMA name */
LEX_STRING INFORMATION_SCHEMA_NAME= {C_STRING_WITH_LEN("information_schema")};

Marc Alff's avatar
Marc Alff committed
48 49 50
/* PERFORMANCE_SCHEMA name */
LEX_STRING PERFORMANCE_SCHEMA_DB_NAME= {C_STRING_WITH_LEN("performance_schema")};

51 52 53 54 55 56 57 58 59
/* 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")};

60 61 62 63 64 65
/* 
  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
66 67 68 69
	/* Functions defined in this file */

static void fix_type_pointers(const char ***array, TYPELIB *point_to_type,
			      uint types, char **names);
70
static uint find_field(Field **fields, uchar *record, uint start, uint length);
unknown's avatar
unknown committed
71

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

unknown's avatar
unknown committed
74 75 76 77 78 79
/**************************************************************************
  Object_creation_ctx implementation.
**************************************************************************/

Object_creation_ctx *Object_creation_ctx::set_n_backup(THD *thd)
{
80 81
  Object_creation_ctx *backup_ctx;
  DBUG_ENTER("Object_creation_ctx::set_n_backup");
unknown's avatar
unknown committed
82

83
  backup_ctx= create_backup_ctx(thd);
unknown's avatar
unknown committed
84 85
  change_env(thd);

86
  DBUG_RETURN(backup_ctx);
unknown's avatar
unknown committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
}

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 *
115
Default_object_creation_ctx::create_backup_ctx(THD *thd) const
unknown's avatar
unknown committed
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
{
  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,
142
                                              TABLE_LIST *view)
unknown's avatar
unknown committed
143 144 145 146 147 148 149 150
{
  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)
  {
151
    push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
unknown's avatar
unknown committed
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 183 184
                        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);

185
    push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
unknown's avatar
unknown committed
186 187 188 189 190 191 192 193 194 195 196
                        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
197 198
/* Get column name from column hash */

199 200
static uchar *get_field_name(Field **buff, size_t *length,
                             my_bool not_used __attribute__((unused)))
unknown's avatar
unknown committed
201
{
202
  *length= (uint) strlen((*buff)->field_name);
203
  return (uchar*) (*buff)->field_name;
unknown's avatar
unknown committed
204 205
}

unknown's avatar
unknown committed
206

207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
/*
  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, '.');
231
  if (res && !strcmp(res, reg_ext))
232 233 234 235
    return res;
  return name + strlen(name);
}

236 237 238 239 240
TABLE_CATEGORY get_table_category(const LEX_STRING *db, const LEX_STRING *name)
{
  DBUG_ASSERT(db != NULL);
  DBUG_ASSERT(name != NULL);

241
  if (is_infoschema_db(db->str, db->length))
242
    return TABLE_CATEGORY_INFORMATION;
Marc Alff's avatar
Marc Alff committed
243 244 245 246 247 248

  if ((db->length == PERFORMANCE_SCHEMA_DB_NAME.length) &&
      (my_strcasecmp(system_charset_info,
                     PERFORMANCE_SCHEMA_DB_NAME.str,
                     db->str) == 0))
    return TABLE_CATEGORY_PERFORMANCE;
249 250 251

  if ((db->length == MYSQL_SCHEMA_NAME.length) &&
      (my_strcasecmp(system_charset_info,
Marc Alff's avatar
Marc Alff committed
252 253
                     MYSQL_SCHEMA_NAME.str,
                     db->str) == 0))
254 255 256 257 258 259
  {
    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,
Marc Alff's avatar
Marc Alff committed
260 261 262
                       GENERAL_LOG_NAME.str,
                       name->str) == 0))
      return TABLE_CATEGORY_LOG;
263 264 265

    if ((name->length == SLOW_LOG_NAME.length) &&
        (my_strcasecmp(system_charset_info,
Marc Alff's avatar
Marc Alff committed
266 267 268
                       SLOW_LOG_NAME.str,
                       name->str) == 0))
      return TABLE_CATEGORY_LOG;
269 270 271 272 273
  }

  return TABLE_CATEGORY_USER;
}

274

unknown's avatar
unknown committed
275
/*
Sergei Golubchik's avatar
Sergei Golubchik committed
276
  Allocate and setup a TABLE_SHARE structure
unknown's avatar
unknown committed
277 278 279 280 281 282 283 284 285 286 287 288

  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
*/

289
TABLE_SHARE *alloc_table_share(const char *db, const char *table_name,
Sergei Golubchik's avatar
Sergei Golubchik committed
290
                               const char *key, uint key_length)
unknown's avatar
unknown committed
291 292 293
{
  MEM_ROOT mem_root;
  TABLE_SHARE *share;
294
  char *key_buff, *path_buff;
295 296
  char path[FN_REFLEN];
  uint path_length;
297
  DBUG_ENTER("alloc_table_share");
298
  DBUG_PRINT("enter", ("table: '%s'.'%s'", db, table_name));
unknown's avatar
unknown committed
299

300
  path_length= build_table_filename(path, sizeof(path) - 1,
301
                                    db, table_name, "", 0);
302
  init_sql_alloc(&mem_root, TABLE_ALLOC_BLOCK_SIZE, 0, MYF(0));
303 304 305 306 307
  if (multi_alloc_root(&mem_root,
                       &share, sizeof(*share),
                       &key_buff, key_length,
                       &path_buff, path_length + 1,
                       NULL))
unknown's avatar
unknown committed
308 309 310
  {
    bzero((char*) share, sizeof(*share));

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

313
    share->path.str= path_buff;
unknown's avatar
unknown committed
314 315
    share->path.length= path_length;
    strmov(share->path.str, path);
316 317
    share->normalized_path.str=    share->path.str;
    share->normalized_path.length= path_length;
318 319
    /* TEMPORARY FIX: if true, this means this is mysql.gtid_slave_pos table */
    share->is_gtid_slave_pos= FALSE;
320
    share->table_category= get_table_category(& share->db, & share->table_name);
321
    share->open_errno= ENOENT;
322 323
    share->cached_row_logging_check= -1;

324
    init_sql_alloc(&share->stats_cb.mem_root, TABLE_ALLOC_BLOCK_SIZE, 0, MYF(0));
Igor Babaev's avatar
Igor Babaev committed
325

unknown's avatar
unknown committed
326
    memcpy((char*) &share->mem_root, (char*) &mem_root, sizeof(mem_root));
Sergei Golubchik's avatar
Sergei Golubchik committed
327 328
    mysql_mutex_init(key_TABLE_SHARE_LOCK_share,
                     &share->LOCK_share, MY_MUTEX_INIT_SLOW);
Konstantin Osipov's avatar
Konstantin Osipov committed
329 330
    mysql_mutex_init(key_TABLE_SHARE_LOCK_ha_data,
                     &share->LOCK_ha_data, MY_MUTEX_INIT_FAST);
331
    tdc_init_share(share);
unknown's avatar
unknown committed
332
  }
333
  DBUG_RETURN(share);
unknown's avatar
unknown committed
334 335 336 337 338 339 340 341
}


/*
  Initialize share for temporary tables

  SYNOPSIS
    init_tmp_table_share()
342
    thd         thread handle
unknown's avatar
unknown committed
343
    share	Share to fill
344
    key		Table_cache_key, as generated from tdc_create_key.
unknown's avatar
unknown committed
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
		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).
*/

360
void init_tmp_table_share(THD *thd, TABLE_SHARE *share, const char *key,
unknown's avatar
unknown committed
361 362 363 364
                          uint key_length, const char *table_name,
                          const char *path)
{
  DBUG_ENTER("init_tmp_table_share");
365
  DBUG_PRINT("enter", ("table: '%s'.'%s'", key, table_name));
unknown's avatar
unknown committed
366 367

  bzero((char*) share, sizeof(*share));
368 369 370 371 372 373
  /*
    This can't be MY_THREAD_SPECIFIC for slaves as they are freed
    during cleanup() from Relay_log_info::close_temporary_tables()
  */
  init_sql_alloc(&share->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0, 
                 MYF(thd->slave_thread ? 0 : MY_THREAD_SPECIFIC));
374 375
  share->table_category=         TABLE_CATEGORY_TEMPORARY;
  share->tmp_table=              INTERNAL_TMP_TABLE;
unknown's avatar
unknown committed
376 377 378 379 380 381 382 383 384 385 386
  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;

387
  share->cached_row_logging_check= -1;
388

389 390 391 392 393
  /*
    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
394 395 396 397
  DBUG_VOID_RETURN;
}


398 399 400 401
/**
  Release resources (plugins) used by the share and free its memory.
  TABLE_SHARE is self-contained -- it's stored in its own MEM_ROOT.
  Free this MEM_ROOT.
unknown's avatar
unknown committed
402 403
*/

404
void TABLE_SHARE::destroy()
unknown's avatar
unknown committed
405
{
406
  uint idx;
407
  KEY *info_it;
408 409
  DBUG_ENTER("TABLE_SHARE::destroy");
  DBUG_PRINT("info", ("db: %s table: %s", db.str, table_name.str));
unknown's avatar
unknown committed
410

411 412 413 414 415
  if (ha_share)
  {
    delete ha_share;
    ha_share= NULL;                             // Safety
  }
unknown's avatar
unknown committed
416

Igor Babaev's avatar
Igor Babaev committed
417 418 419
  free_root(&stats_cb.mem_root, MYF(0));
  stats_cb.stats_can_be_read= FALSE;
  stats_cb.stats_is_read= FALSE;
420 421
  stats_cb.histograms_can_be_read= FALSE;
  stats_cb.histograms_are_read= FALSE;
Igor Babaev's avatar
Igor Babaev committed
422

Sergei Golubchik's avatar
Sergei Golubchik committed
423
  /* The mutexes are initialized only for shares that are part of the TDC */
424
  if (tmp_table == NO_TMP_TABLE)
Sergei Golubchik's avatar
Sergei Golubchik committed
425 426
  {
    mysql_mutex_destroy(&LOCK_share);
427
    mysql_mutex_destroy(&LOCK_ha_data);
428
    tdc_deinit_share(this);
Sergei Golubchik's avatar
Sergei Golubchik committed
429
  }
430
  my_hash_free(&name_hash);
Konstantin Osipov's avatar
Konstantin Osipov committed
431

432 433
  plugin_unlock(NULL, db_plugin);
  db_plugin= NULL;
unknown's avatar
unknown committed
434

435
  /* Release fulltext parsers */
436 437
  info_it= key_info;
  for (idx= keys; idx; idx--, info_it++)
438
  {
439
    if (info_it->flags & HA_USES_PARSER)
440
    {
441 442
      plugin_unlock(NULL, info_it->parser);
      info_it->flags= 0;
443 444
    }
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
445

446
#ifdef WITH_PARTITION_STORAGE_ENGINE
Sergei Golubchik's avatar
Sergei Golubchik committed
447
  plugin_unlock(NULL, default_part_plugin);
448
#endif /* WITH_PARTITION_STORAGE_ENGINE */
Sergei Golubchik's avatar
Sergei Golubchik committed
449 450

  PSI_CALL_release_table_share(m_psi);
451

452 453 454 455 456 457
  /*
    Make a copy since the share is allocated in its own root,
    and free_root() updates its argument after freeing the memory.
  */
  MEM_ROOT own_root= mem_root;
  free_root(&own_root, MYF(0));
458
  DBUG_VOID_RETURN;
459 460
}

461
/*
unknown's avatar
unknown committed
462 463 464 465 466 467 468 469 470 471 472
  Free table share and memory used by it

  SYNOPSIS
    free_table_share()
    share		Table share
*/

void free_table_share(TABLE_SHARE *share)
{
  DBUG_ENTER("free_table_share");
  DBUG_PRINT("enter", ("table: %s.%s", share->db.str, share->table_name.str));
473
  share->destroy();
unknown's avatar
unknown committed
474 475
  DBUG_VOID_RETURN;
}
476

unknown's avatar
unknown committed
477

478 479 480 481 482
/**
  Return TRUE if a table name matches one of the system table names.
  Currently these are:

  help_category, help_keyword, help_relation, help_topic,
483
  proc, event
484 485 486 487 488 489 490 491 492 493 494 495 496 497
  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 */
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
          (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') ||

518 519 520 521 522 523 524 525 526 527
            /* one of mysql.*_stat tables, but not mysql.innodb* tables*/
            ((my_tolower(ci, name[length-5]) == 's' &&
              my_tolower(ci, name[length-4]) == 't' &&
              my_tolower(ci, name[length-3]) == 'a' &&
              my_tolower(ci, name[length-2]) == 't' &&
              my_tolower(ci, name[length-1]) == 's') &&
             !(my_tolower(ci, name[0]) == 'i' &&
               my_tolower(ci, name[1]) == 'n' &&
               my_tolower(ci, name[2]) == 'n' &&
               my_tolower(ci, name[3]) == 'o')) ||
528
           
529 530 531 532 533 534 535
            /* 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')
            )
Staale Smedseng's avatar
Staale Smedseng committed
536
           )
537 538 539 540
         );
}


unknown's avatar
unknown committed
541 542 543
/*
  Read table definition from a binary / text based .frm file
  
544
  SYNOPSIS
unknown's avatar
unknown committed
545 546 547 548
  open_table_def()
  thd		Thread handler
  share		Fill this with table definition
  db_flags	Bit mask of the following flags: OPEN_VIEW
549

unknown's avatar
unknown committed
550 551
  NOTES
    This function is called when the table definition is not cached in
552
    table definition cache
unknown's avatar
unknown committed
553 554
    The data is returned in 'share', which is alloced by
    alloc_table_share().. The code assumes that share is initialized.
555
*/
unknown's avatar
unknown committed
556

557
enum open_frm_error open_table_def(THD *thd, TABLE_SHARE *share, uint flags)
unknown's avatar
unknown committed
558
{
559
  bool error_given= false;
unknown's avatar
unknown committed
560
  File file;
561
  uchar *buf;
Sergei Golubchik's avatar
Sergei Golubchik committed
562
  uchar head[FRM_HEADER_SIZE];
unknown's avatar
unknown committed
563
  char	path[FN_REFLEN];
564
  size_t frmlen, read_length;
unknown's avatar
unknown committed
565
  DBUG_ENTER("open_table_def");
566 567
  DBUG_PRINT("enter", ("table: '%s'.'%s'  path: '%s'", share->db.str,
                       share->table_name.str, share->normalized_path.str));
unknown's avatar
unknown committed
568

569
  share->error= OPEN_FRM_OPEN_ERROR;
unknown's avatar
VIEW  
unknown committed
570

unknown's avatar
unknown committed
571
  strxmov(path, share->normalized_path.str, reg_ext, NullS);
572 573 574 575 576 577 578 579 580 581
  if (flags & GTS_FORCE_DISCOVERY)
  {
    DBUG_ASSERT(flags & GTS_TABLE);
    DBUG_ASSERT(flags & GTS_USE_DISCOVERY);
    mysql_file_delete_with_symlink(key_file_frm, path, MYF(0));
    file= -1;
  }
  else
    file= mysql_file_open(key_file_frm, path, O_RDONLY | O_SHARE, MYF(0));

582
  if (file < 0)
unknown's avatar
unknown committed
583
  {
584
    if ((flags & GTS_TABLE) && (flags & GTS_USE_DISCOVERY))
585
    {
586 587
      ha_discover_table(thd, share);
      error_given= true;
588
    }
589
    goto err_not_open;
unknown's avatar
unknown committed
590
  }
unknown's avatar
VIEW  
unknown committed
591

592
  if (mysql_file_read(file, head, sizeof(head), MYF(MY_NABP)))
593
  {
594 595
    share->error = my_errno == HA_ERR_FILE_TOO_SHORT
                      ? OPEN_FRM_CORRUPTED : OPEN_FRM_READ_ERROR;
596
    goto err;
597
  }
unknown's avatar
VIEW  
unknown committed
598

599
  if (memcmp(head, STRING_WITH_LEN("TYPE=VIEW\n")) == 0)
unknown's avatar
VIEW  
unknown committed
600
  {
601
    share->is_view= 1;
602
    share->error= flags & GTS_VIEW ? OPEN_FRM_OK : OPEN_FRM_NOT_A_TABLE;
603
    goto err;
unknown's avatar
unknown committed
604
  }
605
  if (!is_binary_frm_header(head))
unknown's avatar
unknown committed
606
  {
607 608
    /* No handling of text based files yet */
    share->error = OPEN_FRM_CORRUPTED;
unknown's avatar
unknown committed
609 610
    goto err;
  }
611
  if (!(flags & GTS_TABLE))
612 613
  {
    share->error = OPEN_FRM_NOT_A_VIEW;
614
    goto err;
615
  }
616

617 618
  frmlen= uint4korr(head+10);
  set_if_smaller(frmlen, FRM_MAX_SIZE); // safety
unknown's avatar
VIEW  
unknown committed
619

620
  if (!(buf= (uchar*)my_malloc(frmlen, MYF(MY_THREAD_SPECIFIC|MY_WME))))
621
    goto err;
622

623
  memcpy(buf, head, sizeof(head));
624

625 626 627
  read_length= mysql_file_read(file, buf + sizeof(head),
                               frmlen - sizeof(head), MYF(MY_WME));
  if (read_length == 0 || read_length == (size_t)-1)
unknown's avatar
unknown committed
628
  {
629
    share->error = OPEN_FRM_READ_ERROR;
630
    my_free(buf);
631
    goto err;
unknown's avatar
VIEW  
unknown committed
632
  }
633
  mysql_file_close(file, MYF(MY_WME));
unknown's avatar
VIEW  
unknown committed
634

635
  frmlen= read_length + sizeof(head);
unknown's avatar
VIEW  
unknown committed
636

637
  share->init_from_binary_frm_image(thd, false, buf, frmlen);
638
  error_given= true; // init_from_binary_frm_image has already called my_error()
639
  my_free(buf);
640

641
  goto err_not_open;
unknown's avatar
unknown committed
642

unknown's avatar
unknown committed
643
err:
Marc Alff's avatar
Marc Alff committed
644
  mysql_file_close(file, MYF(MY_WME));
unknown's avatar
unknown committed
645

unknown's avatar
unknown committed
646
err_not_open:
647
  if (share->error && !error_given)
648
  {
649
    share->open_errno= my_errno;
650
    open_table_error(share, share->error, share->open_errno);
651
  }
652

653
  DBUG_RETURN(share->error);
unknown's avatar
unknown committed
654 655
}

656 657 658 659 660
static bool create_key_infos(const uchar *strpos, const uchar *frm_image_end,
                             uint keys, KEY *keyinfo,
                             uint new_frm_ver, uint &ext_key_parts,
                             TABLE_SHARE *share, uint len,
                             KEY *first_keyinfo, char* &keynames)
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
{
  uint i, j, n_length;
  KEY_PART_INFO *key_part= NULL;
  ulong *rec_per_key= NULL;
  KEY_PART_INFO *first_key_part= NULL;
  uint first_key_parts= 0;

  if (!keys)
  {  
    if (!(keyinfo = (KEY*) alloc_root(&share->mem_root, len)))
      return 1;
    bzero((char*) keyinfo, len);
    key_part= reinterpret_cast<KEY_PART_INFO*> (keyinfo);
  }

  /*
    If share->use_ext_keys is set to TRUE we assume that any key
    can be extended by the components of the primary key whose
    definition is read first from the frm file.
    For each key only those fields of the assumed primary key are
    added that are not included in the proper key definition. 
    If after all it turns out that there is no primary key the
    added components are removed from each key.

    When in the future we support others schemes of extending of
    secondary keys with components of the primary key we'll have
    to change the type of this flag for an enumeration type.                 
  */   

  for (i=0 ; i < keys ; i++, keyinfo++)
  {
    if (new_frm_ver >= 3)
    {
694 695
      if (strpos + 8 >= frm_image_end)
        return 1;
696 697
      keyinfo->flags=	   (uint) uint2korr(strpos) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+2);
Sergei Golubchik's avatar
Sergei Golubchik committed
698
      keyinfo->user_defined_key_parts=  (uint) strpos[4];
699 700 701 702 703 704
      keyinfo->algorithm=  (enum ha_key_alg) strpos[5];
      keyinfo->block_size= uint2korr(strpos+6);
      strpos+=8;
    }
    else
    {
705 706
      if (strpos + 4 >= frm_image_end)
        return 1;
707 708
      keyinfo->flags=	 ((uint) strpos[0]) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+1);
Sergei Golubchik's avatar
Sergei Golubchik committed
709
      keyinfo->user_defined_key_parts=  (uint) strpos[3];
710 711 712 713 714 715
      keyinfo->algorithm= HA_KEY_ALG_UNDEF;
      strpos+=4;
    }

    if (i == 0)
    {
Sergei Golubchik's avatar
Sergei Golubchik committed
716
      ext_key_parts+= (share->use_ext_keys ? first_keyinfo->user_defined_key_parts*(keys-1) : 0); 
717 718 719 720 721 722 723 724 725 726 727 728
      n_length=keys * sizeof(KEY) + ext_key_parts * sizeof(KEY_PART_INFO);
      if (!(keyinfo= (KEY*) alloc_root(&share->mem_root,
				       n_length + len)))
        return 1;
      bzero((char*) keyinfo,n_length);
      share->key_info= keyinfo;
      key_part= reinterpret_cast<KEY_PART_INFO*> (keyinfo + keys);

      if (!(rec_per_key= (ulong*) alloc_root(&share->mem_root,
                                             sizeof(ulong) * ext_key_parts)))
        return 1;
      first_key_part= key_part;
Sergei Golubchik's avatar
Sergei Golubchik committed
729
      first_key_parts= first_keyinfo->user_defined_key_parts;
730 731
      keyinfo->flags= first_keyinfo->flags;
      keyinfo->key_length= first_keyinfo->key_length;
Sergei Golubchik's avatar
Sergei Golubchik committed
732
      keyinfo->user_defined_key_parts= first_keyinfo->user_defined_key_parts;
733 734 735 736 737 738 739
      keyinfo->algorithm= first_keyinfo->algorithm;
      if (new_frm_ver >= 3)
        keyinfo->block_size= first_keyinfo->block_size;
    }

    keyinfo->key_part=	 key_part;
    keyinfo->rec_per_key= rec_per_key;
Sergei Golubchik's avatar
Sergei Golubchik committed
740
    for (j=keyinfo->user_defined_key_parts ; j-- ; key_part++)
741
    {
742 743
      if (strpos + (new_frm_ver >= 1 ? 9 : 7) >= frm_image_end)
        return 1;
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
      *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
      if (new_frm_ver >= 1)
      {
	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;
    }
Sergei Golubchik's avatar
Sergei Golubchik committed
768 769 770 771 772 773

    /*
      Add primary key to end of extended keys for non unique keys for
      storage engines that supports it.
    */
    keyinfo->ext_key_parts= keyinfo->user_defined_key_parts;
774 775
    keyinfo->ext_key_flags= keyinfo->flags;
    keyinfo->ext_key_part_map= 0;
Sergei Golubchik's avatar
Sergei Golubchik committed
776
    if (share->use_ext_keys && i && !(keyinfo->flags & HA_NOSAME))
777 778 779 780 781 782
    {
      keyinfo->ext_key_part_map= 0;
      for (j= 0; 
           j < first_key_parts && keyinfo->ext_key_parts < MAX_REF_PARTS;
           j++)
      {
Sergei Golubchik's avatar
Sergei Golubchik committed
783
        uint key_parts= keyinfo->user_defined_key_parts;
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
        KEY_PART_INFO* curr_key_part= keyinfo->key_part;
        KEY_PART_INFO* curr_key_part_end= curr_key_part+key_parts;
        for ( ; curr_key_part < curr_key_part_end; curr_key_part++)
        {
          if (curr_key_part->fieldnr == first_key_part[j].fieldnr)
            break;
        }
        if (curr_key_part == curr_key_part_end)
        {
          *key_part++= first_key_part[j];
          *rec_per_key++= 0;
          keyinfo->ext_key_parts++;
          keyinfo->ext_key_part_map|= 1 << j;
        }
      }
      if (j == first_key_parts)
        keyinfo->ext_key_flags= keyinfo->flags | HA_EXT_NOSAME;
    }
    share->ext_key_parts+= keyinfo->ext_key_parts;  
  }
  keynames=(char*) key_part;
805 806 807
  strpos+= strnmov(keynames, (char *) strpos, frm_image_end - strpos) - keynames;
  if (*strpos++) // key names are \0-terminated
    return 1;
808 809 810 811 812 813

  //reading index comments
  for (keyinfo= share->key_info, i=0; i < keys; i++, keyinfo++)
  {
    if (keyinfo->flags & HA_USES_COMMENT)
    {
814 815
      if (strpos + 2 >= frm_image_end)
        return 1;
816
      keyinfo->comment.length= uint2korr(strpos);
817 818 819 820 821
      strpos+= 2;

      if (strpos + keyinfo->comment.length >= frm_image_end)
        return 1;
      keyinfo->comment.str= strmake_root(&share->mem_root, (char*) strpos,
822
                                         keyinfo->comment.length);
823
      strpos+= keyinfo->comment.length;
824 825 826 827
    } 
    DBUG_ASSERT(test(keyinfo->flags & HA_USES_COMMENT) == 
               (keyinfo->comment.length > 0));
  }
828 829 830

  share->keys= keys; // do it *after* all key_info's are initialized

831 832 833
  return 0;
}

unknown's avatar
unknown committed
834

835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
/**
   Check if a collation has changed number

   @param mysql_version
   @param current collation number

   @retval new collation number (same as current collation number of no change)
*/

static uint
upgrade_collation(ulong mysql_version, uint cs_number)
{
  if (mysql_version >= 50300 && mysql_version <= 50399)
  {
    switch (cs_number) {
    case 149: return MY_PAGE2_COLLATION_ID_UCS2;   // ucs2_crotian_ci
    case 213: return MY_PAGE2_COLLATION_ID_UTF8;   // utf8_crotian_ci
    }
  }
  if ((mysql_version >= 50500 && mysql_version <= 50599) ||
      (mysql_version >= 100000 && mysql_version <= 100005))
  {
    switch (cs_number) {
    case 149: return MY_PAGE2_COLLATION_ID_UCS2;   // ucs2_crotian_ci
    case 213: return MY_PAGE2_COLLATION_ID_UTF8;   // utf8_crotian_ci
    case 214: return MY_PAGE2_COLLATION_ID_UTF32;  // utf32_croatian_ci
    case 215: return MY_PAGE2_COLLATION_ID_UTF16;  // utf16_croatian_ci
    case 245: return MY_PAGE2_COLLATION_ID_UTF8MB4;// utf8mb4_croatian_ci
    }
  }
  return cs_number;
}




871 872 873 874 875 876 877 878 879 880
/**
  Read data from a binary .frm file image into a TABLE_SHARE

  @note
  frm bytes at the following offsets are unused in MariaDB 10.0:

  8..9    (used to be the number of "form names")
  28..29  (used to be key_info_length)

  They're still set, for compatibility reasons, but never read.
Sergei Golubchik's avatar
Sergei Golubchik committed
881 882 883 884

  42..46 are unused since 5.0 (were for RAID support)
  Also, there're few unused bytes in forminfo.

unknown's avatar
unknown committed
885 886
*/

887 888 889
int TABLE_SHARE::init_from_binary_frm_image(THD *thd, bool write,
                                            const uchar *frm_image,
                                            size_t frm_length)
unknown's avatar
unknown committed
890
{
891
  TABLE_SHARE *share= this;
unknown's avatar
unknown committed
892 893 894
  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;
895
  uint com_length, null_bit_pos;
unknown's avatar
unknown committed
896
  uint extra_rec_buf_length;
897
  uint i;
unknown's avatar
unknown committed
898
  bool use_hash;
899
  char *keynames, *names, *comment_pos;
Sergei Golubchik's avatar
Sergei Golubchik committed
900
  const uchar *forminfo, *extra2;
901
  const uchar *frm_image_end = frm_image + frm_length;
902 903
  uchar *record, *null_flags, *null_pos;
  const uchar *disk_buff, *strpos;
904
  ulong pos, record_offset; 
Igor Babaev's avatar
Igor Babaev committed
905
  ulong rec_buff_length;
unknown's avatar
unknown committed
906 907
  handler *handler_file= 0;
  KEY	*keyinfo;
Igor Babaev's avatar
Igor Babaev committed
908
  KEY_PART_INFO *key_part= NULL;
unknown's avatar
unknown committed
909 910
  Field  **field_ptr, *reg_field;
  const char **interval_array;
unknown's avatar
unknown committed
911
  enum legacy_db_type legacy_db_type;
912
  my_bitmap_map *bitmaps;
913
  bool null_bits_are_used;
Sergei Golubchik's avatar
Sergei Golubchik committed
914
  uint vcol_screen_length, UNINIT_VAR(options_len);
Sergei Golubchik's avatar
merge.  
Sergei Golubchik committed
915
  char *vcol_screen_pos;
Sergei Golubchik's avatar
Sergei Golubchik committed
916
  const uchar *options= 0;
917 918 919
  KEY first_keyinfo;
  uint len;
  uint ext_key_parts= 0;
920
  plugin_ref se_plugin= 0;
921 922
  keyinfo= &first_keyinfo;
  share->ext_key_parts= 0;
923
  MEM_ROOT **root_ptr, *old_root;
924
  DBUG_ENTER("TABLE_SHARE::init_from_binary_frm_image");
unknown's avatar
unknown committed
925

926 927 928
  root_ptr= my_pthread_getspecific_ptr(MEM_ROOT**, THR_MALLOC);
  old_root= *root_ptr;
  *root_ptr= &share->mem_root;
unknown's avatar
unknown committed
929

930
  if (write && write_frm_image(frm_image, frm_length))
931 932
    goto err;

Sergei Golubchik's avatar
Sergei Golubchik committed
933
  if (frm_length < FRM_HEADER_SIZE + FRM_FORMINFO_SIZE)
934 935
    goto err;

936 937
  new_field_pack_flag= frm_image[27];
  new_frm_ver= (frm_image[2] - FRM_VER);
938
  field_pack_length= new_frm_ver < 2 ? 11 : 17;
unknown's avatar
unknown committed
939

Sergei Golubchik's avatar
Sergei Golubchik committed
940
  /* Length of the MariaDB extra2 segment in the form file. */
941
  len = uint2korr(frm_image+4);
Sergei Golubchik's avatar
Sergei Golubchik committed
942
  extra2= frm_image + 64;
unknown's avatar
unknown committed
943

Sergei Golubchik's avatar
Sergei Golubchik committed
944 945 946
  if (*extra2 != '/')   // old frm had '/' there
  {
    const uchar *e2end= extra2 + len;
947
    while (extra2 + 3 < e2end)
Sergei Golubchik's avatar
Sergei Golubchik committed
948 949 950 951 952
    {
      uchar type= *extra2++;
      size_t length= *extra2++;
      if (!length)
      {
953 954
        if (extra2 + 258 >= e2end)
          goto err;
Sergei Golubchik's avatar
Sergei Golubchik committed
955 956 957 958 959
        length= uint2korr(extra2);
        extra2+=2;
        if (length < 256)
          goto err;
      }
960 961
      if (extra2 + length > e2end)
        goto err;
Sergei Golubchik's avatar
Sergei Golubchik committed
962 963 964 965 966 967 968 969 970 971 972
      switch (type) {
      case EXTRA2_TABLEDEF_VERSION:
        if (tabledef_version.str) // see init_from_sql_statement_string()
        {
          if (length != tabledef_version.length ||
              memcmp(extra2, tabledef_version.str, length))
            goto err;
        }
        else
        {
          tabledef_version.length= length;
973 974 975
          tabledef_version.str= (uchar*)memdup_root(&mem_root, extra2, length);
          if (!tabledef_version.str)
            goto err;
Sergei Golubchik's avatar
Sergei Golubchik committed
976 977 978 979 980 981 982 983 984
        }
        break;
      case EXTRA2_ENGINE_TABLEOPTS:
        if (options)
          goto err;
        /* remember but delay parsing until we have read fields and keys */
        options= extra2;
        options_len= length;
        break;
Sergei Golubchik's avatar
Sergei Golubchik committed
985 986 987 988 989 990 991 992 993 994
      case EXTRA2_DEFAULT_PART_ENGINE:
#ifdef WITH_PARTITION_STORAGE_ENGINE
        {
          LEX_STRING name= { (char*)extra2, length };
          share->default_part_plugin= ha_resolve_by_name(NULL, &name);
          if (!share->default_part_plugin)
            goto err;
        }
#endif
        break;
Sergei Golubchik's avatar
Sergei Golubchik committed
995 996
      default:
        /* abort frm parsing if it's an unknown but important extra2 value */
997
        if (type >= EXTRA2_ENGINE_IMPORTANT)
Sergei Golubchik's avatar
Sergei Golubchik committed
998 999 1000 1001
          goto err;
      }
      extra2+= length;
    }
1002
    if (extra2 != e2end)
Sergei Golubchik's avatar
Sergei Golubchik committed
1003 1004 1005
      goto err;
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
1006 1007
  if (frm_length < FRM_HEADER_SIZE + len ||
      !(pos= uint4korr(frm_image + FRM_HEADER_SIZE + len)))
1008
    goto err;
1009 1010

  forminfo= frm_image + pos;
Sergei Golubchik's avatar
Sergei Golubchik committed
1011
  if (forminfo + FRM_FORMINFO_SIZE >= frm_image_end)
1012
    goto err;
1013

1014
  share->frm_version= frm_image[2];
1015 1016 1017 1018 1019 1020
  /*
    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.
  */
1021
  if (share->frm_version == FRM_VER_TRUE_VARCHAR -1 && frm_image[33] == 5)
1022 1023
    share->frm_version= FRM_VER_TRUE_VARCHAR;

unknown's avatar
unknown committed
1024
#ifdef WITH_PARTITION_STORAGE_ENGINE
Sergei Golubchik's avatar
Sergei Golubchik committed
1025 1026 1027 1028 1029 1030 1031 1032
  if (frm_image[61] && !share->default_part_plugin)
  {
    enum legacy_db_type db_type= (enum legacy_db_type) (uint) frm_image[61];
    share->default_part_plugin=
                ha_lock_engine(NULL, ha_checktype(thd, db_type, 1, 0));
    if (!share->default_part_plugin)
      goto err;
  }
unknown's avatar
unknown committed
1033
#endif
Sergei Golubchik's avatar
Sergei Golubchik committed
1034
  legacy_db_type= (enum legacy_db_type) (uint) frm_image[3];
unknown's avatar
WL#2936  
unknown committed
1035 1036 1037 1038 1039 1040
  /*
    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)
1041
    se_plugin= ha_lock_engine(NULL, ha_checktype(thd, legacy_db_type, 0, 0));
1042
  share->db_create_options= db_create_options= uint2korr(frm_image+30);
1043
  share->db_options_in_use= share->db_create_options;
1044
  share->mysql_version= uint4korr(frm_image+51);
unknown's avatar
unknown committed
1045
  share->null_field_first= 0;
1046
  if (!frm_image[32])				// New frm file in 3.23
unknown's avatar
unknown committed
1047
  {
1048 1049 1050 1051 1052
    uint cs_org= (((uint) frm_image[41]) << 8) + (uint) frm_image[38];
    uint cs_new= upgrade_collation(share->mysql_version, cs_org);
    if (cs_org != cs_new)
      share->incompatible_version|= HA_CREATE_USED_CHARSET;
    
1053 1054 1055
    share->avg_row_length= uint4korr(frm_image+34);
    share->transactional= (ha_choice) (frm_image[39] & 3);
    share->page_checksum= (ha_choice) ((frm_image[39] >> 2) & 3);
1056
    share->row_type= (enum row_type) frm_image[40];
1057 1058 1059

    if (cs_new && !(share->table_charset= get_charset(cs_new, MYF(MY_WME))))
      goto err;
unknown's avatar
unknown committed
1060
    share->null_field_first= 1;
Sergei Golubchik's avatar
Sergei Golubchik committed
1061 1062
    share->stats_sample_pages= uint2korr(frm_image+42);
    share->stats_auto_recalc= (enum_stats_auto_recalc)(frm_image[44]);
1063 1064 1065
  }
  if (!share->table_charset)
  {
1066
    /* unknown charset in frm_image[38] or pre-3.23 frm */
1067 1068 1069 1070 1071 1072
    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",
1073
                        share->path.str);
1074
    }
1075
    share->table_charset= default_charset_info;
unknown's avatar
unknown committed
1076
  }
1077

1078
  share->db_record_offset= 1;
1079 1080
  share->max_rows= uint4korr(frm_image+18);
  share->min_rows= uint4korr(frm_image+22);
unknown's avatar
unknown committed
1081 1082

  /* Read keyinformation */
1083
  disk_buff= frm_image + uint2korr(frm_image+6);
1084 1085 1086 1087

  if (disk_buff + 6 >= frm_image_end)
    goto err;

unknown's avatar
unknown committed
1088
  if (disk_buff[0] & 0x80)
unknown's avatar
unknown committed
1089
  {
1090
    keys=      (disk_buff[1] << 7) | (disk_buff[0] & 0x7f);
1091
    share->key_parts= key_parts= uint2korr(disk_buff+2);
unknown's avatar
unknown committed
1092 1093 1094
  }
  else
  {
1095
    keys=      disk_buff[0];
1096
    share->key_parts= key_parts= disk_buff[1];
unknown's avatar
unknown committed
1097
  }
1098 1099
  share->keys_for_keyread.init(0);
  share->keys_in_use.init(keys);
1100
  ext_key_parts= key_parts;
unknown's avatar
unknown committed
1101

1102
  len= (uint) uint2korr(disk_buff+4);
unknown's avatar
unknown committed
1103

1104
  share->reclength = uint2korr(frm_image+16);
1105
  share->stored_rec_length= share->reclength;
Sergei Golubchik's avatar
Sergei Golubchik committed
1106
  if (frm_image[26] == 1)
1107
    share->system= 1;				/* one-record-database */
unknown's avatar
unknown committed
1108

1109 1110 1111
  record_offset= (ulong) (uint2korr(frm_image+6)+
                          ((uint2korr(frm_image+14) == 0xffff ?
                            uint4korr(frm_image+47) : uint2korr(frm_image+14))));
1112 1113 1114

  if (record_offset + share->reclength >= frm_length)
    goto err;
1115
 
1116
  if ((n_length= uint4korr(frm_image+55)))
1117 1118
  {
    /* Read extra data segment */
1119
    const uchar *next_chunk, *buff_end;
1120
    DBUG_PRINT("info", ("extra segment size is %u bytes", n_length));
1121 1122
    next_chunk= frm_image + record_offset + share->reclength;
    buff_end= next_chunk + n_length;
1123 1124

    if (buff_end >= frm_image_end)
1125
      goto err;
1126

1127
    share->connect_string.length= uint2korr(next_chunk);
1128 1129 1130 1131
    if (!(share->connect_string.str= strmake_root(&share->mem_root,
                                                  (char*) next_chunk + 2,
                                                  share->connect_string.
                                                  length)))
1132
    {
unknown's avatar
unknown committed
1133
      goto err;
1134
    }
unknown's avatar
unknown committed
1135
    next_chunk+= share->connect_string.length + 2;
1136 1137 1138
    if (next_chunk + 2 < buff_end)
    {
      uint str_db_type_length= uint2korr(next_chunk);
1139 1140 1141 1142
      LEX_STRING name;
      name.str= (char*) next_chunk + 2;
      name.length= str_db_type_length;

unknown's avatar
WL#2936  
unknown committed
1143
      plugin_ref tmp_plugin= ha_resolve_by_name(thd, &name);
1144
      if (tmp_plugin != NULL && !plugin_equals(tmp_plugin, se_plugin))
1145
      {
1146
        if (se_plugin)
unknown's avatar
WL#2936  
unknown committed
1147 1148
        {
          /* bad file, legacy_db_type did not match the name */
1149 1150 1151 1152
          sql_print_warning("%s.frm is inconsistent: engine typecode %d, engine name %s (%d)",
                        share->normalized_path.str, legacy_db_type,
                        plugin_name(tmp_plugin)->str,
                        ha_legacy_type(plugin_data(tmp_plugin, handlerton *)));
unknown's avatar
WL#2936  
unknown committed
1153
        }
unknown's avatar
WL#2936  
unknown committed
1154 1155
        /*
          tmp_plugin is locked with a local lock.
1156
          we unlock the old value of se_plugin before
unknown's avatar
WL#2936  
unknown committed
1157 1158
          replacing it with a globally locked version of tmp_plugin
        */
1159 1160
        plugin_unlock(NULL, se_plugin);
        se_plugin= plugin_lock(NULL, tmp_plugin);
1161
      }
1162
#ifdef WITH_PARTITION_STORAGE_ENGINE
1163 1164
      else if (str_db_type_length == 9 &&
               !strncmp((char *) next_chunk + 2, "partition", 9))
1165
      {
1166 1167 1168
        /*
          Use partition handler
          tmp_plugin is locked with a local lock.
1169
          we unlock the old value of se_plugin before
1170 1171
          replacing it with a globally locked version of tmp_plugin
        */
1172 1173 1174 1175 1176 1177 1178
        /* Check if the partitioning engine is ready */
        if (!plugin_is_ready(&name, MYSQL_STORAGE_ENGINE_PLUGIN))
        {
          my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0),
                   "--skip-partition");
          goto err;
        }
1179 1180
        plugin_unlock(NULL, se_plugin);
        se_plugin= ha_lock_engine(NULL, partition_hton);
1181 1182
      }
#endif
1183 1184 1185
      else if (!tmp_plugin)
      {
        /* purecov: begin inspected */
1186
        name.str[name.length]=0;
1187 1188 1189 1190
        my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), name.str);
        goto err;
        /* purecov: end */
      }
1191 1192
      next_chunk+= str_db_type_length + 2;
    }
1193

1194
    share->set_use_ext_keys_flag(plugin_hton(se_plugin)->flags & HTON_EXTENDED_KEYS);
1195

1196 1197
    if (create_key_infos(disk_buff + 6, frm_image_end, keys, keyinfo,
                         new_frm_ver, ext_key_parts,
1198 1199 1200
                         share, len, &first_keyinfo, keynames))
      goto err;

unknown's avatar
unknown committed
1201
    if (next_chunk + 5 < buff_end)
1202
    {
1203
      uint32 partition_info_str_len = uint4korr(next_chunk);
1204
#ifdef WITH_PARTITION_STORAGE_ENGINE
1205
      if ((share->partition_info_buffer_size=
1206
             share->partition_info_str_len= partition_info_str_len))
1207
      {
1208
        if (!(share->partition_info_str= (char*)
1209
              memdup_root(&share->mem_root, next_chunk + 4,
1210
                          partition_info_str_len + 1)))
1211 1212 1213
        {
          goto err;
        }
1214 1215
      }
#else
1216
      if (partition_info_str_len)
1217 1218 1219
      {
        DBUG_PRINT("info", ("WITH_PARTITION_STORAGE_ENGINE is not defined"));
        goto err;
1220
      }
1221
#endif
1222
      next_chunk+= 5 + partition_info_str_len;
1223
    }
1224
    if (share->mysql_version >= 50110 && next_chunk < buff_end)
1225 1226 1227 1228 1229 1230 1231
    {
      /* 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
1232
    keyinfo= share->key_info;
1233 1234 1235 1236 1237 1238 1239
    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
1240 1241
          DBUG_PRINT("error",
                     ("fulltext key uses parser that is not defined in .frm"));
1242 1243
          goto err;
        }
1244 1245
        parser_name.str= (char*) next_chunk;
        parser_name.length= strlen((char*) next_chunk);
1246
        next_chunk+= parser_name.length + 1;
unknown's avatar
WL#2936  
unknown committed
1247 1248
        keyinfo->parser= my_plugin_lock_by_name(NULL, &parser_name,
                                                MYSQL_FTPARSER_PLUGIN);
1249 1250 1251 1252 1253 1254 1255
        if (! keyinfo->parser)
        {
          my_error(ER_PLUGIN_IS_NOT_LOADED, MYF(0), parser_name.str);
          goto err;
        }
      }
    }
Sergei Golubchik's avatar
merge.  
Sergei Golubchik committed
1256

1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
    if (forminfo[46] == (uchar)255)
    {
      //reading long table comment
      if (next_chunk + 2 > buff_end)
      {
          DBUG_PRINT("error",
                     ("long table comment is not defined in .frm"));
          goto err;
      }
      share->comment.length = uint2korr(next_chunk);
      if (! (share->comment.str= strmake_root(&share->mem_root,
             (char*)next_chunk + 2, share->comment.length)))
      {
          goto err;
      }
      next_chunk+= 2 + share->comment.length;
    }
Sergei Golubchik's avatar
merge.  
Sergei Golubchik committed
1274

Sergei Golubchik's avatar
Sergei Golubchik committed
1275
    DBUG_ASSERT(next_chunk <= buff_end);
Sergei Golubchik's avatar
Sergei Golubchik committed
1276

Sergei Golubchik's avatar
Sergei Golubchik committed
1277
    if (share->db_create_options & HA_OPTION_TEXT_CREATE_OPTIONS_legacy)
1278
    {
Sergei Golubchik's avatar
Sergei Golubchik committed
1279 1280
      if (options)
        goto err;
1281 1282 1283 1284
      options_len= uint4korr(next_chunk);
      options= next_chunk + 4;
      next_chunk+= options_len + 4;
    }
Sergei Golubchik's avatar
Sergei Golubchik committed
1285
    DBUG_ASSERT(next_chunk <= buff_end);
1286
  }
1287 1288
  else
  {
1289 1290
    if (create_key_infos(disk_buff + 6, frm_image_end, keys, keyinfo,
                         new_frm_ver, ext_key_parts,
1291 1292 1293 1294
                         share, len, &first_keyinfo, keynames))
      goto err;
  }

1295
  share->key_block_size= uint2korr(frm_image+62);
unknown's avatar
unknown committed
1296

1297 1298 1299
  if (share->db_plugin && !plugin_equals(share->db_plugin, se_plugin))
    goto err; // wrong engine (someone changed the frm under our feet?)

1300
  extra_rec_buf_length= uint2korr(frm_image+59);
unknown's avatar
unknown committed
1301
  rec_buff_length= ALIGN_SIZE(share->reclength + 1 + extra_rec_buf_length);
1302
  share->rec_buff_length= rec_buff_length;
1303 1304
  if (!(record= (uchar *) alloc_root(&share->mem_root,
                                     rec_buff_length)))
Sergei Golubchik's avatar
Sergei Golubchik committed
1305
    goto err;                          /* purecov: inspected */
1306
  share->default_values= record;
1307
  memcpy(record, frm_image + record_offset, share->reclength);
unknown's avatar
unknown committed
1308

Sergei Golubchik's avatar
Sergei Golubchik committed
1309
  disk_buff= frm_image + pos + FRM_FORMINFO_SIZE;
unknown's avatar
unknown committed
1310

1311 1312 1313 1314 1315 1316 1317 1318
  share->fields= uint2korr(forminfo+258);
  pos= uint2korr(forminfo+260);   /* Length of all screens */
  n_length= uint2korr(forminfo+268);
  interval_count= uint2korr(forminfo+270);
  interval_parts= uint2korr(forminfo+272);
  int_length= uint2korr(forminfo+274);
  share->null_fields= uint2korr(forminfo+282);
  com_length= uint2korr(forminfo+284);
Sergei Golubchik's avatar
merge.  
Sergei Golubchik committed
1319
  vcol_screen_length= uint2korr(forminfo+286);
1320
  share->vfields= 0;
1321
  share->default_fields= 0;
1322
  share->stored_fields= share->fields;
1323 1324 1325 1326 1327 1328
  if (forminfo[46] != (uchar)255)
  {
    share->comment.length=  (int) (forminfo[46]);
    share->comment.str= strmake_root(&share->mem_root, (char*) forminfo+47,
                                     share->comment.length);
  }
unknown's avatar
unknown committed
1329

1330
  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, keys,n_length,int_length, com_length, vcol_screen_length));
1331

unknown's avatar
unknown committed
1332 1333

  if (!(field_ptr = (Field **)
unknown's avatar
unknown committed
1334
	alloc_root(&share->mem_root,
1335
		   (uint) ((share->fields+1)*sizeof(Field*)+
unknown's avatar
unknown committed
1336
			   interval_count*sizeof(TYPELIB)+
1337
			   (share->fields+interval_parts+
1338
			    keys+3)*sizeof(char *)+
1339 1340
			   (n_length+int_length+com_length+
			       vcol_screen_length)))))
Sergei Golubchik's avatar
Sergei Golubchik committed
1341
    goto err;                           /* purecov: inspected */
unknown's avatar
unknown committed
1342

unknown's avatar
unknown committed
1343
  share->field= field_ptr;
1344
  read_length=(uint) (share->fields * field_pack_length +
1345 1346
		      pos+ (uint) (n_length+int_length+com_length+
		                   vcol_screen_length));
unknown's avatar
unknown committed
1347 1348
  strpos= disk_buff+pos;

1349
  share->intervals= (TYPELIB*) (field_ptr+share->fields+1);
unknown's avatar
unknown committed
1350 1351
  interval_array= (const char **) (share->intervals+interval_count);
  names= (char*) (interval_array+share->fields+interval_parts+keys+3);
unknown's avatar
unknown committed
1352
  if (!interval_count)
1353 1354
    share->intervals= 0;			// For better debugging
  memcpy((char*) names, strpos+(share->fields*field_pack_length),
unknown's avatar
unknown committed
1355
	 (uint) (n_length+int_length));
1356
  comment_pos= names+(n_length+int_length);
1357 1358 1359 1360 1361
  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
1362

unknown's avatar
unknown committed
1363
  fix_type_pointers(&interval_array, &share->fieldnames, 1, &names);
1364
  if (share->fieldnames.count != share->fields)
Sergei Golubchik's avatar
Sergei Golubchik committed
1365
    goto err;
unknown's avatar
unknown committed
1366
  fix_type_pointers(&interval_array, share->intervals, interval_count,
unknown's avatar
unknown committed
1367
		    &names);
1368 1369 1370 1371

  {
    /* Set ENUM and SET lengths */
    TYPELIB *interval;
1372 1373
    for (interval= share->intervals;
         interval < share->intervals + interval_count;
1374 1375 1376
         interval++)
    {
      uint count= (uint) (interval->count + 1) * sizeof(uint);
unknown's avatar
unknown committed
1377
      if (!(interval->type_lengths= (uint *) alloc_root(&share->mem_root,
1378
                                                        count)))
Sergei Golubchik's avatar
Sergei Golubchik committed
1379
        goto err;
1380
      for (count= 0; count < interval->count; count++)
1381 1382 1383 1384
      {
        char *val= (char*) interval->type_names[count];
        interval->type_lengths[count]= strlen(val);
      }
1385 1386 1387 1388
      interval->type_lengths[count]= 0;
    }
  }

unknown's avatar
unknown committed
1389
  if (keynames)
unknown's avatar
unknown committed
1390
    fix_type_pointers(&interval_array, &share->keynames, 1, &keynames);
unknown's avatar
unknown committed
1391

unknown's avatar
unknown committed
1392 1393
 /* Allocate handler */
  if (!(handler_file= get_new_handler(share, thd->mem_root,
Sergei Golubchik's avatar
Sergei Golubchik committed
1394
                                      plugin_hton(se_plugin))))
Sergei Golubchik's avatar
Sergei Golubchik committed
1395
    goto err;
1396

1397 1398 1399
  if (handler_file->set_ha_share_ref(&share->ha_share))
    goto err;

1400
  record= share->default_values-1;              /* Fieldstart = 1 */
1401
  null_bits_are_used= share->null_fields != 0;
unknown's avatar
unknown committed
1402
  if (share->null_field_first)
unknown's avatar
unknown committed
1403
  {
1404
    null_flags= null_pos= record+1;
unknown's avatar
unknown committed
1405
    null_bit_pos= (db_create_options & HA_OPTION_PACK_RECORD) ? 0 : 1;
1406 1407 1408 1409 1410
    /*
      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
    */
1411
    share->null_bytes= (share->null_fields + null_bit_pos + 7) / 8;
unknown's avatar
unknown committed
1412
  }
unknown's avatar
unknown committed
1413
#ifndef WE_WANT_TO_SUPPORT_VERY_OLD_FRM_FILES
unknown's avatar
unknown committed
1414 1415
  else
  {
1416
    share->null_bytes= (share->null_fields+7)/8;
1417
    null_flags= null_pos= record + 1 + share->reclength - share->null_bytes;
unknown's avatar
unknown committed
1418
    null_bit_pos= 0;
unknown's avatar
unknown committed
1419
  }
unknown's avatar
unknown committed
1420
#endif
unknown's avatar
unknown committed
1421

1422
  use_hash= share->fields >= MAX_FIELDS_BEFORE_HASH;
unknown's avatar
unknown committed
1423
  if (use_hash)
Konstantin Osipov's avatar
Konstantin Osipov committed
1424 1425 1426 1427
    use_hash= !my_hash_init(&share->name_hash,
                            system_charset_info,
                            share->fields,0,0,
                            (my_hash_get_key) get_field_name,0,0);
unknown's avatar
unknown committed
1428

1429
  for (i=0 ; i < share->fields; i++, strpos+=field_pack_length, field_ptr++)
unknown's avatar
unknown committed
1430
  {
1431
    uint pack_flag, interval_nr, unireg_type, recpos, field_length;
1432 1433
    uint vcol_info_length=0;
    uint vcol_expr_length=0;
1434
    enum_field_types field_type;
1435
    CHARSET_INFO *charset=NULL;
unknown's avatar
unknown committed
1436
    Field::geometry_type geom_type= Field::GEOM_GEOMETRY;
1437
    LEX_STRING comment;
1438 1439
    Virtual_column_info *vcol_info= 0;
    bool fld_stored_in_db= TRUE;
unknown's avatar
unknown committed
1440

1441
    if (new_frm_ver >= 3)
1442 1443
    {
      /* new frm file in 4.1 */
1444 1445 1446 1447 1448 1449 1450
      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
1451

1452
      /* charset and geometry_type share the same byte in frm */
1453
      if (field_type == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1454
      {
unknown's avatar
SCRUM:  
unknown committed
1455
#ifdef HAVE_SPATIAL
unknown's avatar
unknown committed
1456 1457
	geom_type= (Field::geometry_type) strpos[14];
	charset= &my_charset_bin;
unknown's avatar
SCRUM:  
unknown committed
1458
#else
Sergei Golubchik's avatar
Sergei Golubchik committed
1459
	goto err;
unknown's avatar
SCRUM:  
unknown committed
1460
#endif
unknown's avatar
unknown committed
1461 1462 1463
      }
      else
      {
1464 1465 1466 1467 1468
        uint cs_org= strpos[14] + (((uint) strpos[11]) << 8);
        uint cs_new= upgrade_collation(share->mysql_version, cs_org);
        if (cs_org != cs_new)
          share->incompatible_version|= HA_CREATE_USED_CHARSET;
        if (!cs_new)
1469
          charset= &my_charset_bin;
1470
        else if (!(charset= get_charset(cs_new, MYF(0))))
1471
        {
1472
          const char *csname= get_charset_name((uint) cs_new);
1473 1474 1475
          char tmp[10];
          if (!csname || csname[0] =='?')
          {
1476
            my_snprintf(tmp, sizeof(tmp), "#%d", cs_new);
1477 1478 1479 1480 1481
            csname= tmp;
          }
          my_printf_error(ER_UNKNOWN_COLLATION,
                          "Unknown collation '%s' in table '%-.64s' definition", 
                          MYF(0), csname, share->table_name.str);
Sergei Golubchik's avatar
Sergei Golubchik committed
1482
          goto err;
1483
        }
unknown's avatar
unknown committed
1484
      }
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496

      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;
      }

1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
      if (!comment_length)
      {
	comment.str= (char*) "";
	comment.length=0;
      }
      else
      {
	comment.str=    (char*) comment_pos;
	comment.length= comment_length;
	comment_pos+=   comment_length;
      }
1508 1509 1510 1511 1512

      if (vcol_info_length)
      {
        /*
          Get virtual column data stored in the .frm file as follows:
Igor Babaev's avatar
Igor Babaev committed
1513
          byte 1      = 1 | 2
1514 1515
          byte 2      = sql_type
          byte 3      = flags (as of now, 0 - no flags, 1 - field is physically stored)
Igor Babaev's avatar
Igor Babaev committed
1516 1517
          [byte 4]    = optional interval_id for sql_type (only if byte 1 == 2) 
          next byte ...  = virtual column expression (text data)
1518 1519
        */
        vcol_info= new Virtual_column_info();
Igor Babaev's avatar
Igor Babaev committed
1520 1521 1522 1523 1524
        bool opt_interval_id= (uint)vcol_screen_pos[0] == 2;
        field_type= (enum_field_types) (uchar) vcol_screen_pos[1];
        if (opt_interval_id)
          interval_nr= (uint)vcol_screen_pos[3];
        else if ((uint)vcol_screen_pos[0] != 1)
Sergei Golubchik's avatar
Sergei Golubchik committed
1525
          goto err;
1526

1527
        fld_stored_in_db= (bool) (uint) vcol_screen_pos[2];
Igor Babaev's avatar
Igor Babaev committed
1528 1529
        vcol_expr_length= vcol_info_length -
                          (uint)(FRM_VCOL_HEADER_SIZE(opt_interval_id));
1530 1531
        if (!(vcol_info->expr_str.str=
              (char *)memdup_root(&share->mem_root,
Igor Babaev's avatar
Igor Babaev committed
1532 1533
                                  vcol_screen_pos +
                                  (uint) FRM_VCOL_HEADER_SIZE(opt_interval_id),
1534
                                  vcol_expr_length)))
Sergei Golubchik's avatar
Sergei Golubchik committed
1535
          goto err;
Igor Babaev's avatar
Igor Babaev committed
1536 1537
        if (opt_interval_id)
          interval_nr= (uint) vcol_screen_pos[3];
1538 1539 1540 1541
        vcol_info->expr_str.length= vcol_expr_length;
        vcol_screen_pos+= vcol_info_length;
        share->vfields++;
      }
1542 1543 1544
    }
    else
    {
1545 1546 1547
      field_length= (uint) strpos[3];
      recpos=	    uint2korr(strpos+4),
      pack_flag=    uint2korr(strpos+6);
unknown's avatar
unknown committed
1548
      pack_flag&=   ~FIELDFLAG_NO_DEFAULT;     // Safety for old files
1549 1550 1551
      unireg_type=  (uint) strpos[8];
      interval_nr=  (uint) strpos[10];

1552 1553
      /* old frm file */
      field_type= (enum_field_types) f_packtype(pack_flag);
unknown's avatar
unknown committed
1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
      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
1565
          if (!(charset= get_charset_by_csname(share->table_charset->csname,
unknown's avatar
unknown committed
1566 1567 1568 1569 1570 1571 1572
                                               MY_CS_BINSORT, MYF(0))))
            charset= &my_charset_bin;
        }
        else
          charset= &my_charset_bin;
      }
      else
1573
        charset= share->table_charset;
1574 1575
      bzero((char*) &comment, sizeof(comment));
    }
1576 1577 1578 1579

    if (interval_nr && charset->mbminlen > 1)
    {
      /* Unescape UCS2 intervals from HEX notation */
1580
      TYPELIB *interval= share->intervals + interval_nr - 1;
1581
      unhex_type2(interval);
1582 1583
    }
    
1584
#ifndef TO_BE_DELETED_ON_PRODUCTION
1585
    if (field_type == MYSQL_TYPE_NEWDECIMAL && !share->mysql_version)
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595
    {
      /*
        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
1596 1597 1598 1599
      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);
1600
      push_warning_printf(thd, Sql_condition::WARN_LEVEL_WARN,
1601
                          ER_CRASHED_ON_USAGE,
unknown's avatar
unknown committed
1602 1603 1604 1605 1606
                          "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);
1607 1608 1609 1610
      share->crashed= 1;                        // Marker for CHECK TABLE
    }
#endif

unknown's avatar
unknown committed
1611 1612
    *field_ptr= reg_field=
      make_field(share, record+recpos,
1613
		 (uint32) field_length,
unknown's avatar
unknown committed
1614
		 null_pos, null_bit_pos,
unknown's avatar
unknown committed
1615
		 pack_flag,
1616
		 field_type,
1617
		 charset,
unknown's avatar
unknown committed
1618
		 geom_type,
1619
		 (Field::utype) MTYP_TYPENR(unireg_type),
unknown's avatar
unknown committed
1620
		 (interval_nr ?
1621
		  share->intervals+interval_nr-1 :
unknown's avatar
unknown committed
1622
		  (TYPELIB*) 0),
unknown's avatar
unknown committed
1623
		 share->fieldnames.type_names[i]);
unknown's avatar
unknown committed
1624
    if (!reg_field)				// Not supported field type
1625 1626
      goto err;

1627

1628
    reg_field->field_index= i;
1629
    reg_field->comment=comment;
1630 1631
    reg_field->vcol_info= vcol_info;
    reg_field->stored_in_db= fld_stored_in_db;
1632
    if (field_type == MYSQL_TYPE_BIT && !f_bit_as_char(pack_flag))
unknown's avatar
unknown committed
1633
    {
1634
      null_bits_are_used= 1;
unknown's avatar
unknown committed
1635
      if ((null_bit_pos+= field_length & 7) > 7)
unknown's avatar
unknown committed
1636
      {
unknown's avatar
unknown committed
1637 1638
        null_pos++;
        null_bit_pos-= 8;
unknown's avatar
unknown committed
1639 1640
      }
    }
unknown's avatar
unknown committed
1641 1642 1643 1644 1645
    if (!(reg_field->flags & NOT_NULL_FLAG))
    {
      if (!(null_bit_pos= (null_bit_pos + 1) & 7))
        null_pos++;
    }
unknown's avatar
unknown committed
1646 1647
    if (f_no_default(pack_flag))
      reg_field->flags|= NO_DEFAULT_VALUE_FLAG;
unknown's avatar
unknown committed
1648

unknown's avatar
unknown committed
1649
    if (reg_field->unireg_check == Field::NEXT_NUMBER)
unknown's avatar
unknown committed
1650 1651
      share->found_next_number_field= field_ptr;

1652 1653
    if (use_hash && my_hash_insert(&share->name_hash, (uchar*) field_ptr))
      goto err;
1654 1655 1656 1657 1658 1659
    if (!reg_field->stored_in_db)
    {
      share->stored_fields--;
      if (share->stored_rec_length>=recpos)
        share->stored_rec_length= recpos-1;
    }
1660 1661 1662
    if (reg_field->has_insert_default_function() ||
        reg_field->has_update_default_function())
      ++share->default_fields;
unknown's avatar
unknown committed
1663 1664
  }
  *field_ptr=0;					// End marker
1665 1666 1667
  /* Sanity checks: */
  DBUG_ASSERT(share->fields>=share->stored_fields);
  DBUG_ASSERT(share->reclength>=share->stored_rec_length);
unknown's avatar
unknown committed
1668 1669 1670 1671

  /* Fix key->name and key_part->field */
  if (key_parts)
  {
1672
    uint add_first_key_parts= 0;
Guilhem Bichot's avatar
Guilhem Bichot committed
1673 1674
    uint primary_key=(uint) (find_type(primary_key_name, &share->keynames,
                                       FIND_TYPE_NO_PREFIX) - 1);
1675
    longlong ha_option= handler_file->ha_table_flags();
unknown's avatar
unknown committed
1676
    keyinfo= share->key_info;
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686

    if (share->use_ext_keys)
    { 
      if (primary_key >= MAX_KEY)
      {
        add_first_key_parts= 0;
        share->set_use_ext_keys_flag(FALSE);
      }
      else
      {
Sergei Golubchik's avatar
Sergei Golubchik committed
1687
        add_first_key_parts= first_keyinfo.user_defined_key_parts;
1688 1689 1690 1691
        /* 
          Do not add components of the primary key starting from
          the major component defined over the beginning of a field.
	*/
Sergei Golubchik's avatar
Sergei Golubchik committed
1692
	for (i= 0; i < first_keyinfo.user_defined_key_parts; i++)
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
	{
          uint fieldnr= keyinfo[0].key_part[i].fieldnr;
          if (share->field[fieldnr-1]->key_length() !=
              keyinfo[0].key_part[i].length)
	  {
            add_first_key_parts= i;
            break;
          }
        }
      }   
    }
unknown's avatar
unknown committed
1704

1705
    for (uint key=0 ; key < keys ; key++,keyinfo++)
unknown's avatar
unknown committed
1706
    {
unknown's avatar
unknown committed
1707
      uint usable_parts= 0;
1708
      keyinfo->name=(char*) share->keynames.type_names[key];
1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
      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);
      }

1722 1723
      if (ext_key_parts > share->key_parts && key)
      {
1724
        KEY_PART_INFO *new_key_part= (keyinfo-1)->key_part +
1725 1726 1727 1728 1729 1730
                                     (keyinfo-1)->ext_key_parts;

        /* 
          Do not extend the key that contains a component
          defined over the beginning of a field.
	*/ 
1731
        for (i= 0; i < keyinfo->user_defined_key_parts; i++)
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741
	{
          uint fieldnr= keyinfo->key_part[i].fieldnr;
          if (share->field[fieldnr-1]->key_length() !=
              keyinfo->key_part[i].length)
	  {
            add_first_key_parts= 0;
            break;
          }
        }

1742
        if (add_first_key_parts < keyinfo->ext_key_parts-keyinfo->user_defined_key_parts)
1743 1744 1745
	{
          share->ext_key_parts-= keyinfo->ext_key_parts;
          key_part_map ext_key_part_map= keyinfo->ext_key_part_map;
1746
          keyinfo->ext_key_parts= keyinfo->user_defined_key_parts;
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
          keyinfo->ext_key_flags= keyinfo->flags;
	  keyinfo->ext_key_part_map= 0; 
          for (i= 0; i < add_first_key_parts; i++)
	  {
            if (ext_key_part_map & 1<<i)
	    {
              keyinfo->ext_key_part_map|= 1<<i;
	      keyinfo->ext_key_parts++;
            }
          }
          share->ext_key_parts+= keyinfo->ext_key_parts;
        }
        if (new_key_part != keyinfo->key_part)
	{
          memmove(new_key_part, keyinfo->key_part,
                  sizeof(KEY_PART_INFO) * keyinfo->ext_key_parts);
          keyinfo->key_part= new_key_part;
        }
      }
    
1767
      /* Fix fulltext keys for old .frm files */
unknown's avatar
unknown committed
1768 1769
      if (share->key_info[key].flags & HA_FULLTEXT)
	share->key_info[key].algorithm= HA_KEY_ALG_FULLTEXT;
1770

unknown's avatar
unknown committed
1771 1772 1773 1774 1775 1776 1777
      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;
1778
        key_part= keyinfo->key_part;
1779
	for (i=0 ; i < keyinfo->user_defined_key_parts ;i++)
unknown's avatar
unknown committed
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
	{
	  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;
	  }
	}
      }

1793 1794
      key_part= keyinfo->key_part;
      uint key_parts= share->use_ext_keys ? keyinfo->ext_key_parts :
1795
	                                    keyinfo->user_defined_key_parts;
1796
      for (i=0; i < key_parts; key_part++, i++)
unknown's avatar
unknown committed
1797
      {
unknown's avatar
unknown committed
1798
        Field *field;
unknown's avatar
unknown committed
1799
	if (new_field_pack_flag <= 1)
unknown's avatar
unknown committed
1800
	  key_part->fieldnr= (uint16) find_field(share->field,
1801
                                                 share->default_values,
unknown's avatar
unknown committed
1802 1803 1804
                                                 (uint) key_part->offset,
                                                 (uint) key_part->length);
	if (!key_part->fieldnr)
Sergei Golubchik's avatar
Sergei Golubchik committed
1805
          goto err;
1806

unknown's avatar
unknown committed
1807
        field= key_part->field= share->field[key_part->fieldnr-1];
unknown's avatar
unknown committed
1808
        key_part->type= field->key_type();
unknown's avatar
unknown committed
1809 1810
        if (field->null_ptr)
        {
1811
          key_part->null_offset=(uint) ((uchar*) field->null_ptr -
unknown's avatar
unknown committed
1812 1813 1814 1815 1816 1817
                                        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->key_length+= HA_KEY_NULL_LENGTH;
        }
1818
        if (field->type() == MYSQL_TYPE_BLOB ||
1819 1820
            field->real_type() == MYSQL_TYPE_VARCHAR ||
            field->type() == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1821
        {
1822 1823
          if (field->type() == MYSQL_TYPE_BLOB ||
              field->type() == MYSQL_TYPE_GEOMETRY)
unknown's avatar
unknown committed
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
            key_part->key_part_flag|= HA_BLOB_PART;
          else
            key_part->key_part_flag|= HA_VAR_LENGTH_PART;
          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) &&
1835
                           (keyinfo->user_defined_key_parts == 1)) ?
unknown's avatar
unknown committed
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
                           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);
1846
            if (i < keyinfo->user_defined_key_parts)
1847
              field->part_of_key_not_clustered.set_bit(key);
unknown's avatar
unknown committed
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
          }
          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)
1864
          {
1865 1866 1867
            if (field->key_length() == key_part->length &&
                !(field->flags & BLOB_FLAG))
              field->part_of_key= share->keys_in_use;
1868
            if (field->part_of_sortkey.is_set(key))
1869 1870
              field->part_of_sortkey= share->keys_in_use;
          }
unknown's avatar
unknown committed
1871 1872 1873
        }
        if (field->key_length() != key_part->length)
        {
1874
#ifndef TO_BE_DELETED_ON_PRODUCTION
1875
          if (field->type() == MYSQL_TYPE_NEWDECIMAL)
unknown's avatar
unknown committed
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891
          {
            /*
              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);
1892
            push_warning_printf(thd, Sql_condition::WARN_LEVEL_WARN,
unknown's avatar
unknown committed
1893 1894 1895 1896 1897 1898 1899
                                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
1900
            continue;
unknown's avatar
unknown committed
1901
          }
1902
#endif
unknown's avatar
unknown committed
1903 1904
          key_part->key_part_flag|= HA_PART_KEY_SEG;
        }
1905 1906
        if (field->real_maybe_null())
          key_part->key_part_flag|= HA_NULL_PART;
unknown's avatar
unknown committed
1907
        /*
1908 1909
          Sometimes we can compare key parts for equality with memcmp.
          But not always.
unknown's avatar
unknown committed
1910
        */
1911 1912 1913 1914 1915
        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
1916
      }
unknown's avatar
unknown committed
1917
      keyinfo->usable_key_parts= usable_parts; // Filesort
1918

1919
      set_if_bigger(share->max_key_length,keyinfo->key_length+
1920
                    keyinfo->user_defined_key_parts);
1921
      share->total_key_length+= keyinfo->key_length;
1922 1923 1924 1925 1926 1927
      /*
        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
1928
        set_if_bigger(share->max_unique_length,keyinfo->key_length);
unknown's avatar
unknown committed
1929
    }
1930
    if (primary_key < MAX_KEY &&
1931
	(share->keys_in_use.is_set(primary_key)))
unknown's avatar
unknown committed
1932
    {
1933
      share->primary_key= primary_key;
unknown's avatar
unknown committed
1934 1935 1936 1937
      /*
	If we are using an integer as the primary key then allow the user to
	refer to it as '_rowid'
      */
1938
      if (share->key_info[primary_key].user_defined_key_parts == 1)
unknown's avatar
unknown committed
1939
      {
unknown's avatar
unknown committed
1940
	Field *field= share->key_info[primary_key].key_part[0].field;
unknown's avatar
unknown committed
1941
	if (field && field->result_type() == INT_RESULT)
unknown's avatar
unknown committed
1942 1943 1944 1945 1946
        {
          /* 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
1947 1948 1949
      }
    }
    else
1950
      share->primary_key = MAX_KEY; // we do not have a primary key
unknown's avatar
unknown committed
1951
  }
1952
  else
1953
    share->primary_key= MAX_KEY;
unknown's avatar
unknown committed
1954
  if (new_field_pack_flag <= 1)
1955 1956 1957
  {
    /* Old file format with default as not null */
    uint null_length= (share->null_fields+7)/8;
unknown's avatar
unknown committed
1958
    bfill(share->default_values + (null_flags - (uchar*) record),
1959
          null_length, 255);
unknown's avatar
unknown committed
1960 1961
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
1962
  if (options)
1963 1964
  {
    DBUG_ASSERT(options_len);
Sergei Golubchik's avatar
Sergei Golubchik committed
1965
    if (engine_table_options_frm_read(options, options_len, share))
Sergei Golubchik's avatar
Sergei Golubchik committed
1966
      goto err;
1967
  }
1968
  if (parse_engine_table_options(thd, handler_file->partition_ht(), share))
Sergei Golubchik's avatar
Sergei Golubchik committed
1969
    goto err;
1970

unknown's avatar
unknown committed
1971
  if (share->found_next_number_field)
unknown's avatar
unknown committed
1972
  {
unknown's avatar
unknown committed
1973
    reg_field= *share->found_next_number_field;
1974
    if ((int) (share->next_number_index= (uint)
1975
	       find_ref_key(share->key_info, keys,
1976
                            share->default_values, reg_field,
1977 1978
			    &share->next_number_key_offset,
                            &share->next_number_keypart)) < 0)
1979
      goto err; // Wrong field definition
1980
    reg_field->flags |= AUTO_INCREMENT_FLAG;
unknown's avatar
unknown committed
1981 1982
  }

1983
  if (share->blob_fields)
unknown's avatar
unknown committed
1984 1985
  {
    Field **ptr;
1986
    uint k, *save;
unknown's avatar
unknown committed
1987

1988 1989
    /* Store offsets to blob fields to find them fast */
    if (!(share->blob_field= save=
unknown's avatar
unknown committed
1990
	  (uint*) alloc_root(&share->mem_root,
1991
                             (uint) (share->blob_fields* sizeof(uint)))))
1992
      goto err;
unknown's avatar
unknown committed
1993
    for (k=0, ptr= share->field ; *ptr ; ptr++, k++)
unknown's avatar
unknown committed
1994 1995
    {
      if ((*ptr)->flags & BLOB_FLAG)
1996
	(*save++)= k;
unknown's avatar
unknown committed
1997 1998 1999
    }
  }

2000 2001 2002 2003
  /*
    the correct null_bytes can now be set, since bitfields have been taken
    into account
  */
unknown's avatar
unknown committed
2004
  share->null_bytes= (null_pos - (uchar*) null_flags +
2005
                      (null_bit_pos + 7) / 8);
unknown's avatar
unknown committed
2006
  share->last_null_bit_pos= null_bit_pos;
2007 2008
  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
2009
                                share->varchar_fields == 0);
unknown's avatar
unknown committed
2010

2011 2012 2013
  share->column_bitmap_size= bitmap_buffer_size(share->fields);

  if (!(bitmaps= (my_bitmap_map*) alloc_root(&share->mem_root,
unknown's avatar
unknown committed
2014
                                             share->column_bitmap_size)))
2015 2016 2017 2018
    goto err;
  bitmap_init(&share->all_set, bitmaps, share->fields, FALSE);
  bitmap_set_all(&share->all_set);

unknown's avatar
unknown committed
2019 2020 2021
  delete handler_file;
#ifndef DBUG_OFF
  if (use_hash)
Konstantin Osipov's avatar
Konstantin Osipov committed
2022
    (void) my_hash_check(&share->name_hash);
unknown's avatar
unknown committed
2023
#endif
2024

2025
  share->db_plugin= se_plugin;
2026
  share->error= OPEN_FRM_OK;
2027
  thd->status_var.opened_shares++;
2028
  *root_ptr= old_root;
2029
  DBUG_RETURN(0);
unknown's avatar
unknown committed
2030 2031

 err:
2032
  share->error= OPEN_FRM_CORRUPTED;
unknown's avatar
unknown committed
2033 2034
  share->open_errno= my_errno;
  delete handler_file;
2035
  plugin_unlock(0, se_plugin);
Konstantin Osipov's avatar
Konstantin Osipov committed
2036
  my_hash_free(&share->name_hash);
unknown's avatar
unknown committed
2037

2038 2039 2040
  if (!thd->is_error())
    open_table_error(share, OPEN_FRM_CORRUPTED, share->open_errno);

2041
  *root_ptr= old_root;
2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
  DBUG_RETURN(HA_ERR_NOT_A_TABLE);
}


static bool sql_unusable_for_discovery(THD *thd, const char *sql)
{
  LEX *lex= thd->lex;
  HA_CREATE_INFO *create_info= &lex->create_info;

  // ... not CREATE TABLE
  if (lex->sql_command != SQLCOM_CREATE_TABLE)
    return 1;
  // ... create like
  if (create_info->options & HA_LEX_CREATE_TABLE_LIKE)
    return 1;
  // ... create select
  if (lex->select_lex.item_list.elements)
    return 1;
  // ... temporary
Sergei Golubchik's avatar
Sergei Golubchik committed
2061
  if (create_info->tmp_table())
2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095
    return 1;
  // ... if exists
  if (create_info->options & HA_LEX_CREATE_IF_NOT_EXISTS)
    return 1;

  // XXX error out or rather ignore the following:
  // ... partitioning
  if (lex->part_info)
    return 1;
  // ... union
  if (create_info->used_fields & HA_CREATE_USED_UNION)
    return 1;
  // ... index/data directory
  if (create_info->data_file_name || create_info->index_file_name)
    return 1;
  // ... engine
  if (create_info->used_fields & HA_CREATE_USED_ENGINE)
    return 1;

  return 0;
}

int TABLE_SHARE::init_from_sql_statement_string(THD *thd, bool write,
                                        const char *sql, size_t sql_length)
{
  ulonglong saved_mode= thd->variables.sql_mode;
  CHARSET_INFO *old_cs= thd->variables.character_set_client;
  Parser_state parser_state;
  bool error;
  char *sql_copy;
  handler *file;
  LEX *old_lex;
  Query_arena *arena, backup;
  LEX tmp_lex;
Sergei Golubchik's avatar
Sergei Golubchik committed
2096 2097
  KEY *unused1;
  uint unused2;
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
  LEX_CUSTRING frm= {0,0};

  DBUG_ENTER("TABLE_SHARE::init_from_sql_statement_string");

  /*
    Ouch. Parser may *change* the string it's working on.
    Currently (2013-02-26) it is used to permanently disable
    conditional comments.
    Anyway, let's copy the caller's string...
  */
  if (!(sql_copy= thd->strmake(sql, sql_length)))
    DBUG_RETURN(HA_ERR_OUT_OF_MEM);

  if (parser_state.init(thd, sql_copy, sql_length))
    DBUG_RETURN(HA_ERR_OUT_OF_MEM);

  thd->variables.sql_mode= MODE_NO_ENGINE_SUBSTITUTION | MODE_NO_DIR_IN_CREATE;
  thd->variables.character_set_client= system_charset_info;
  tmp_disable_binlog(thd);
  old_lex= thd->lex;
  thd->lex= &tmp_lex;
unknown's avatar
unknown committed
2119

2120 2121 2122 2123 2124 2125 2126 2127
  arena= thd->stmt_arena;
  if (arena->is_conventional())
    arena= 0;
  else
    thd->set_n_backup_active_arena(arena, &backup);

  lex_start(thd);

2128 2129
  if ((error= parse_sql(thd, & parser_state, NULL) || 
              sql_unusable_for_discovery(thd, sql_copy)))
2130 2131
    goto ret;

Sergei Golubchik's avatar
Sergei Golubchik committed
2132
  thd->lex->create_info.db_type= plugin_hton(db_plugin);
2133

Sergei Golubchik's avatar
Sergei Golubchik committed
2134 2135 2136
  if (tabledef_version.str)
    thd->lex->create_info.tabledef_version= tabledef_version;

2137 2138
  file= mysql_create_frm_image(thd, db.str, table_name.str,
                               &thd->lex->create_info, &thd->lex->alter_info,
Sergei Golubchik's avatar
Sergei Golubchik committed
2139
                               C_ORDINARY_CREATE, &unused1, &unused2, &frm);
2140 2141 2142 2143
  error|= file == 0;
  delete file;

  if (frm.str)
2144 2145 2146
  {
    option_list= 0;             // cleanup existing options ...
    option_struct= 0;           // ... if it's an assisted discovery
2147
    error= init_from_binary_frm_image(thd, write, frm.str, frm.length);
2148
  }
2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161

ret:
  my_free(const_cast<uchar*>(frm.str));
  lex_end(thd->lex);
  thd->lex= old_lex;
  if (arena)
    thd->restore_active_arena(arena, &backup);
  reenable_binlog(thd);
  thd->variables.sql_mode= saved_mode;
  thd->variables.character_set_client= old_cs;
  if (thd->is_error() || error)
  {
    thd->clear_error();
2162 2163 2164 2165
    my_error(ER_SQL_DISCOVER_ERROR, MYF(0),
             plugin_name(db_plugin)->str, db.str, table_name.str,
             sql_copy);
    DBUG_RETURN(HA_ERR_GENERIC);
2166 2167 2168
  }
  DBUG_RETURN(0);
}
2169 2170 2171

bool TABLE_SHARE::write_frm_image(const uchar *frm, size_t len)
{
2172
  return writefrm(normalized_path.str, db.str, table_name.str, false, frm, len);
2173 2174 2175 2176 2177
}


bool TABLE_SHARE::read_frm_image(const uchar **frm, size_t *len)
{
2178
  if (IF_PARTITIONING(partition_info_str, 0))   // cannot discover a partition
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195
  {
    DBUG_ASSERT(db_type()->discover_table == 0);
    return 1;
  }

  if (frm_image)
  {
    *frm= frm_image->str;
    *len= frm_image->length;
    frm_image->str= 0; // pass the ownership to the caller
    frm_image= 0;
    return 0;
  }
  return readfrm(normalized_path.str, frm, len);
}


2196 2197 2198 2199 2200 2201
void TABLE_SHARE::free_frm_image(const uchar *frm)
{
  if (frm)
    my_free(const_cast<uchar*>(frm));
}

unknown's avatar
unknown committed
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 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
/*
  @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;
  bool result= TRUE;
  TABLE_LIST tables;
2264
  int error= 0;
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276
  const char *save_where;
  Field **ptr, *field;
  enum_mark_columns save_mark_used_columns= thd->mark_used_columns;
  DBUG_ASSERT(func_expr);
  DBUG_ENTER("fix_vcol_expr");

  thd->mark_used_columns= MARK_COLUMNS_NONE;

  save_where= thd->where;
  thd->where= "virtual column function";

  /* Fix fields referenced to by the virtual column function */
2277 2278 2279 2280 2281
  if (!func_expr->fixed)
    error= func_expr->fix_fields(thd, &vcol_info->expr_item);
  /* fix_fields could change the expression */
  func_expr= vcol_info->expr_item;
  /* Number of columns will be checked later */
2282 2283 2284 2285 2286 2287 2288 2289

  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
2290 2291 2292 2293 2294
  if (unlikely(func_expr->result_type() == ROW_RESULT))
  {
     my_error(ER_ROW_EXPR_FOR_VCOL, MYF(0));
     goto end;
  }
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
#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

Igor Babaev's avatar
Igor Babaev committed
2341
  @param
2342
    thd                  The thread object
Igor Babaev's avatar
Igor Babaev committed
2343 2344
  @param
    mem_root             The mem_root object where to allocated memory 
2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360
  @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
2361 2362
    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.
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373

  @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,
Igor Babaev's avatar
Igor Babaev committed
2374
                               MEM_ROOT *mem_root,
2375 2376 2377 2378 2379
                               TABLE *table,
                               Field *field,
                               LEX_STRING *vcol_expr,
                               bool *error_reported)
{
Michael Widenius's avatar
Michael Widenius committed
2380 2381 2382 2383 2384 2385
  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;
2386
  Query_arena *vcol_arena= 0;
Michael Widenius's avatar
Michael Widenius committed
2387
  Parser_state parser_state;
Sergei Golubchik's avatar
Sergei Golubchik committed
2388 2389
  LEX *old_lex= thd->lex;
  LEX lex;
2390 2391 2392
  DBUG_ENTER("unpack_vcol_info_from_frm");
  DBUG_ASSERT(vcol_expr);

2393 2394 2395
  old_character_set_client= thd->variables.character_set_client;
  backup_stmt_arena_ptr= thd->stmt_arena;

2396 2397 2398 2399 2400 2401
  /* 
    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>)".
  */
  
Igor Babaev's avatar
Igor Babaev committed
2402
  if (!(vcol_expr_str= (char*) alloc_root(mem_root,
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421
                                          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
2422 2423 2424

  if (parser_state.init(thd, vcol_expr_str, str_len))
    goto err;
2425 2426 2427 2428

  /* 
    Step 2: Setup thd for parsing.
  */
Michael Widenius's avatar
Michael Widenius committed
2429
  vcol_arena= table->expr_arena;
Igor Babaev's avatar
Igor Babaev committed
2430 2431
  if (!vcol_arena)
  {
Michael Widenius's avatar
Michael Widenius committed
2432 2433 2434 2435
    /*
      We need to use CONVENTIONAL_EXECUTION here to ensure that
      any new items created by fix_fields() are not reverted.
    */
Igor Babaev's avatar
Igor Babaev committed
2436
    Query_arena expr_arena(mem_root,
Sergei Golubchik's avatar
Sergei Golubchik committed
2437
                           Query_arena::STMT_CONVENTIONAL_EXECUTION);
Igor Babaev's avatar
Igor Babaev committed
2438
    if (!(vcol_arena= (Query_arena *) alloc_root(mem_root,
Igor Babaev's avatar
Igor Babaev committed
2439
                                               sizeof(Query_arena))))
Igor Babaev's avatar
Igor Babaev committed
2440 2441 2442 2443 2444 2445
      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;
2446

Sergei Golubchik's avatar
Sergei Golubchik committed
2447
  if (init_lex_with_single_table(thd, table, &lex))
2448
    goto err;
Sergei Golubchik's avatar
Sergei Golubchik committed
2449

2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468
  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
2469
  rc= FALSE;
2470 2471 2472 2473 2474 2475 2476
  goto end;

err:
  rc= TRUE;
  thd->free_items();
end:
  thd->stmt_arena= backup_stmt_arena_ptr;
Igor Babaev's avatar
Igor Babaev committed
2477 2478
  if (vcol_arena)
    thd->restore_active_arena(vcol_arena, &backup_arena);
Sergei Golubchik's avatar
Sergei Golubchik committed
2479
  end_lex_with_single_table(thd, table, old_lex);
2480 2481 2482 2483 2484 2485 2486 2487
  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
2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513

/*
  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
*/

2514 2515 2516 2517
enum open_frm_error open_table_from_share(THD *thd, TABLE_SHARE *share,
                       const char *alias, uint db_stat, uint prgflag,
                       uint ha_open_flags, TABLE *outparam,
                       bool is_create_table)
unknown's avatar
unknown committed
2518
{
2519
  enum open_frm_error error;
2520
  uint records, i, bitmap_size;
unknown's avatar
unknown committed
2521
  bool error_reported= FALSE;
2522
  uchar *record, *bitmaps;
Sergei Golubchik's avatar
Sergei Golubchik committed
2523
  Field **field_ptr, **UNINIT_VAR(vfield_ptr), **UNINIT_VAR(dfield_ptr);
2524
  uint8 save_context_analysis_only= thd->lex->context_analysis_only;
unknown's avatar
unknown committed
2525 2526
  DBUG_ENTER("open_table_from_share");
  DBUG_PRINT("enter",("name: '%s.%s'  form: 0x%lx", share->db.str,
unknown's avatar
unknown committed
2527
                      share->table_name.str, (long) outparam));
unknown's avatar
unknown committed
2528

Sergei Golubchik's avatar
Sergei Golubchik committed
2529
  thd->lex->context_analysis_only&= ~CONTEXT_ANALYSIS_ONLY_VIEW; // not a view
2530

2531
  error= OPEN_FRM_ERROR_ALREADY_ISSUED; // for OOM errors below
unknown's avatar
unknown committed
2532 2533 2534 2535
  bzero((char*) outparam, sizeof(*outparam));
  outparam->in_use= thd;
  outparam->s= share;
  outparam->db_stat= db_stat;
2536
  outparam->write_row_record= NULL;
unknown's avatar
unknown committed
2537

2538 2539 2540 2541 2542 2543 2544
  if (share->incompatible_version &&
      !(ha_open_flags & (HA_OPEN_FOR_ALTER | HA_OPEN_FOR_REPAIR)))
  {
    /* one needs to run mysql_upgrade on the table */
    error= OPEN_FRM_NEEDS_REBUILD;
    goto err;
  }
2545
  init_sql_alloc(&outparam->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0, MYF(0));
unknown's avatar
unknown committed
2546

2547
  if (outparam->alias.copy(alias, strlen(alias), table_alias_charset))
unknown's avatar
unknown committed
2548 2549
    goto err;
  outparam->quick_keys.init();
2550
  outparam->covering_keys.init();
2551
  outparam->merge_keys.init();
unknown's avatar
unknown committed
2552 2553 2554
  outparam->keys_in_use_for_query.init();

  /* Allocate handler */
2555 2556 2557 2558 2559 2560
  outparam->file= 0;
  if (!(prgflag & OPEN_FRM_FILE_ONLY))
  {
    if (!(outparam->file= get_new_handler(share, &outparam->mem_root,
                                          share->db_type())))
      goto err;
2561 2562 2563

    if (outparam->file->set_ha_share_ref(&share->ha_share))
      goto err;
2564 2565 2566 2567 2568
  }
  else
  {
    DBUG_ASSERT(!db_stat);
  }
unknown's avatar
unknown committed
2569 2570 2571 2572 2573 2574 2575 2576 2577

  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++;

2578
  if (!(record= (uchar*) alloc_root(&outparam->mem_root,
unknown's avatar
unknown committed
2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595
                                   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
  }

2596
#ifdef HAVE_valgrind
unknown's avatar
unknown committed
2597 2598 2599 2600 2601 2602 2603
  /*
    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);
2604
    memcpy(outparam->record[1], share->default_values, share->null_bytes);
unknown's avatar
unknown committed
2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617
    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;

2618
  record= (uchar*) outparam->record[0]-1;	/* Fieldstart = 1 */
unknown's avatar
unknown committed
2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
  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)];

  /* 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;
2643
    n_length= share->keys*sizeof(KEY) + share->ext_key_parts*sizeof(KEY_PART_INFO);
unknown's avatar
unknown committed
2644 2645 2646
    if (!(key_info= (KEY*) alloc_root(&outparam->mem_root, n_length)))
      goto err;
    outparam->key_info= key_info;
2647 2648
    key_part= (reinterpret_cast<KEY_PART_INFO*>(key_info+share->keys));

unknown's avatar
unknown committed
2649 2650
    memcpy(key_info, share->key_info, sizeof(*key_info)*share->keys);
    memcpy(key_part, share->key_info[0].key_part, (sizeof(*key_part) *
2651
                                                   share->ext_key_parts));
unknown's avatar
unknown committed
2652 2653 2654 2655 2656 2657 2658 2659 2660 2661

    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;

2662
      key_part_end= key_part + (share->use_ext_keys ? key_info->ext_key_parts :
2663
			                              key_info->user_defined_key_parts) ;      
2664
      for ( ; key_part < key_part_end; key_part++)
unknown's avatar
unknown committed
2665
      {
2666
        Field *field= key_part->field= outparam->field[key_part->fieldnr - 1];
unknown's avatar
unknown committed
2667 2668 2669 2670 2671 2672 2673 2674 2675

        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
2676
                                                  outparam, 0);
unknown's avatar
unknown committed
2677 2678 2679
          field->field_length= key_part->length;
        }
      }
2680
      if (!share->use_ext_keys)
2681
	key_part+= key_info->ext_key_parts - key_info->user_defined_key_parts;
unknown's avatar
unknown committed
2682 2683 2684
    }
  }

2685
  /*
2686
    Process virtual and default columns, if any.
2687
  */
2688
  if (share->vfields)
2689
  {
2690 2691 2692 2693 2694 2695
    if (!(vfield_ptr = (Field **) alloc_root(&outparam->mem_root,
                                             (uint) ((share->vfields+1)*
                                                     sizeof(Field*)))))
      goto err;

    outparam->vfield= vfield_ptr;
2696 2697
  }

2698
  if (share->default_fields)
2699 2700 2701 2702 2703
  {
    if (!(dfield_ptr = (Field **) alloc_root(&outparam->mem_root,
                                             (uint) ((share->default_fields+1)*
                                                     sizeof(Field*)))))
      goto err;
2704

2705 2706 2707 2708 2709 2710
    outparam->default_field= dfield_ptr;
  }

  if (share->vfields || share->default_fields)
  {
    /* Reuse the same loop both for virtual and default fields. */
2711
    for (field_ptr= outparam->field; *field_ptr; field_ptr++)
2712
    {
2713
      if (share->vfields && (*field_ptr)->vcol_info)
2714
      {
2715
        if (unpack_vcol_info_from_frm(thd,
Igor Babaev's avatar
Igor Babaev committed
2716
                                      &outparam->mem_root,
2717 2718 2719 2720 2721
                                      outparam,
                                      *field_ptr,
                                      &(*field_ptr)->vcol_info->expr_str,
                                      &error_reported))
        {
2722
          error= OPEN_FRM_CORRUPTED;
2723 2724 2725
          goto err;
        }
        *(vfield_ptr++)= *field_ptr;
2726
      }
2727 2728 2729 2730
      if (share->default_fields &&
          ((*field_ptr)->has_insert_default_function() ||
           (*field_ptr)->has_update_default_function()))
        *(dfield_ptr++)= *field_ptr;
2731
    }
2732 2733 2734 2735
    if (share->vfields)
      *vfield_ptr= 0;                            // End marker
    if (share->default_fields)
      *dfield_ptr= 0;                            // End marker
2736 2737
  }

unknown's avatar
unknown committed
2738
#ifdef WITH_PARTITION_STORAGE_ENGINE
2739
  if (share->partition_info_str_len && outparam->file)
unknown's avatar
unknown committed
2740
  {
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753
  /*
    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;
2754 2755
    Query_arena part_func_arena(&outparam->mem_root,
                                Query_arena::STMT_INITIALIZED);
2756 2757
    thd->set_n_backup_active_arena(&part_func_arena, &backup_arena);
    thd->stmt_arena= &part_func_arena;
2758
    bool tmp;
2759
    bool work_part_info_used;
2760

2761 2762
    tmp= mysql_unpack_partition(thd, share->partition_info_str,
                                share->partition_info_str_len,
2763
                                outparam, is_create_table,
Sergei Golubchik's avatar
Sergei Golubchik committed
2764
                                plugin_hton(share->default_part_plugin),
2765
                                &work_part_info_used);
2766 2767 2768 2769 2770 2771 2772
    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;
2773
    DBUG_PRINT("info", ("autopartitioned: %u", share->auto_partitioned));
2774 2775 2776
    /* 
      We should perform the fix_partition_func in either local or
      caller's arena depending on work_part_info_used value.
2777
    */
2778
    if (!work_part_info_used)
2779
      tmp= fix_partition_func(thd, outparam, is_create_table);
2780 2781
    thd->stmt_arena= backup_stmt_arena_ptr;
    thd->restore_active_arena(&part_func_arena, &backup_arena);
2782
    if (!tmp)
2783 2784 2785 2786
    {
      if (work_part_info_used)
        tmp= fix_partition_func(thd, outparam, is_create_table);
    }
2787
    outparam->part_info->item_free_list= part_func_arena.free_list;
2788
partititon_err:
2789
    if (tmp)
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799
    {
      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
2800
      goto err;
2801
    }
unknown's avatar
unknown committed
2802 2803 2804
  }
#endif

2805 2806
  /* Check virtual columns against table's storage engine. */
  if (share->vfields && 
Igor Babaev's avatar
Igor Babaev committed
2807 2808
        (outparam->file && 
          !(outparam->file->ha_table_flags() & HA_CAN_VIRTUAL_COLUMNS)))
2809
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
2810 2811
    my_error(ER_UNSUPPORTED_ENGINE_FOR_VIRTUAL_COLUMNS, MYF(0),
             plugin_name(share->db_plugin)->str);
2812 2813 2814 2815
    error_reported= TRUE;
    goto err;
  }

2816 2817 2818
  /* Allocate bitmaps */

  bitmap_size= share->column_bitmap_size;
Igor Babaev's avatar
Igor Babaev committed
2819
  if (!(bitmaps= (uchar*) alloc_root(&outparam->mem_root, bitmap_size*6)))
2820 2821 2822 2823 2824
    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
2825
  bitmap_init(&outparam->def_vcol_set,
2826
              (my_bitmap_map*) (bitmaps+bitmap_size*2), share->fields, FALSE);
Igor Babaev's avatar
Igor Babaev committed
2827
  bitmap_init(&outparam->tmp_set,
2828
              (my_bitmap_map*) (bitmaps+bitmap_size*3), share->fields, FALSE);
2829 2830
  bitmap_init(&outparam->eq_join_set,
              (my_bitmap_map*) (bitmaps+bitmap_size*4), share->fields, FALSE);
Igor Babaev's avatar
Igor Babaev committed
2831 2832
  bitmap_init(&outparam->cond_set,
              (my_bitmap_map*) (bitmaps+bitmap_size*5), share->fields, FALSE);
2833 2834
  outparam->default_column_bitmaps();

Igor Babaev's avatar
Igor Babaev committed
2835 2836
  outparam->cond_selectivity= 1.0;

2837
  /* The table struct is now initialized;  Open the table */
unknown's avatar
unknown committed
2838 2839
  if (db_stat)
  {
2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853
    if (db_stat & HA_OPEN_TEMPORARY)
      ha_open_flags|= HA_OPEN_TMP_TABLE;
    else if ((db_stat & HA_WAIT_IF_LOCKED) ||
             (specialflag & SPECIAL_WAIT_IF_LOCKED))
      ha_open_flags|= HA_OPEN_WAIT_IF_LOCKED;
    else if (db_stat & (HA_ABORT_IF_LOCKED | HA_GET_INFO))
      ha_open_flags|= HA_OPEN_ABORT_IF_LOCKED;
    else
      ha_open_flags|= HA_OPEN_IGNORE_IF_LOCKED;

    int ha_err= outparam->file->ha_open(outparam, share->normalized_path.str,
                                 (db_stat & HA_READ_ONLY ? O_RDONLY : O_RDWR),
                                  ha_open_flags);
    if (ha_err)
unknown's avatar
unknown committed
2854
    {
2855
      share->open_errno= ha_err;
unknown's avatar
unknown committed
2856
      /* Set a flag if the table is crashed and it can be auto. repaired */
2857
      share->crashed= (outparam->file->auto_repair(ha_err) &&
2858
                       !(ha_open_flags & HA_OPEN_FOR_REPAIR));
2859 2860
      outparam->file->print_error(ha_err, MYF(0));
      error_reported= TRUE;
2861

2862 2863
      if (ha_err == HA_ERR_TABLE_DEF_CHANGED)
        error= OPEN_FRM_DISCOVER;
2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876

      /*
        We're here, because .frm file was successfully opened.

        But if the table doesn't exist in the engine and the engine
        supports discovery, we force rediscover to discover
        the fact that table doesn't in fact exist and remove
        the stray .frm file.
      */
      if (share->db_type()->discover_table &&
          (ha_err == ENOENT || ha_err == HA_ERR_NO_SUCH_TABLE))
        error= OPEN_FRM_DISCOVER;
          
2877
      goto err;
unknown's avatar
unknown committed
2878 2879 2880
    }
  }

2881
#if defined(HAVE_valgrind) && !defined(DBUG_OFF)
2882 2883 2884
  bzero((char*) bitmaps, bitmap_size*3);
#endif

2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900
  if (share->table_category == TABLE_CATEGORY_LOG)
  {
    outparam->no_replicate= TRUE;
  }
  else if (outparam->file)
  {
    handler::Table_flags flags= outparam->file->ha_table_flags();
    outparam->no_replicate= ! test(flags & (HA_BINLOG_STMT_CAPABLE
                                            | HA_BINLOG_ROW_CAPABLE))
                            || test(flags & HA_HAS_OWN_BINLOGGING);
  }
  else
  {
    outparam->no_replicate= FALSE;
  }

2901
  thd->status_var.opened_tables++;
2902

2903
  thd->lex->context_analysis_only= save_context_analysis_only;
2904
  DBUG_RETURN (OPEN_FRM_OK);
unknown's avatar
unknown committed
2905

2906
 err:
2907
  if (! error_reported)
2908
    open_table_error(share, error, my_errno);
2909
  delete outparam->file;
2910
#ifdef WITH_PARTITION_STORAGE_ENGINE
unknown's avatar
unknown committed
2911 2912
  if (outparam->part_info)
    free_items(outparam->part_info->item_free_list);
2913
#endif
unknown's avatar
unknown committed
2914
  outparam->file= 0;				// For easier error checking
2915
  outparam->db_stat=0;
2916
  thd->lex->context_analysis_only= save_context_analysis_only;
2917
  free_root(&outparam->mem_root, MYF(0));       // Safe to call on bzero'd root
2918
  outparam->alias.free();
unknown's avatar
unknown committed
2919
  DBUG_RETURN (error);
unknown's avatar
unknown committed
2920
}
unknown's avatar
unknown committed
2921

unknown's avatar
unknown committed
2922 2923 2924 2925 2926 2927 2928 2929 2930

/*
  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
2931

unknown's avatar
unknown committed
2932
int closefrm(register TABLE *table, bool free_share)
unknown's avatar
unknown committed
2933 2934 2935
{
  int error=0;
  DBUG_ENTER("closefrm");
2936
  DBUG_PRINT("enter", ("table: 0x%lx", (long) table));
unknown's avatar
unknown committed
2937

unknown's avatar
unknown committed
2938
  if (table->db_stat)
2939 2940 2941
  {
    if (table->s->deleting)
      table->file->extra(HA_EXTRA_PREPARE_FOR_DROP);
2942
    error=table->file->ha_close();
2943
  }
2944
  table->alias.free();
Igor Babaev's avatar
Igor Babaev committed
2945 2946
  if (table->expr_arena)
    table->expr_arena->free_items();
2947
  if (table->field)
unknown's avatar
unknown committed
2948 2949
  {
    for (Field **ptr=table->field ; *ptr ; ptr++)
2950
    {
unknown's avatar
unknown committed
2951
      delete *ptr;
2952
    }
2953
    table->field= 0;
unknown's avatar
unknown committed
2954 2955
  }
  delete table->file;
unknown's avatar
unknown committed
2956
  table->file= 0;				/* For easier errorchecking */
2957
#ifdef WITH_PARTITION_STORAGE_ENGINE
unknown's avatar
unknown committed
2958
  if (table->part_info)
2959
  {
2960
    /* Allocated through table->mem_root, freed below */
unknown's avatar
unknown committed
2961
    free_items(table->part_info->item_free_list);
unknown's avatar
unknown committed
2962
    table->part_info->item_free_list= 0;
unknown's avatar
unknown committed
2963
    table->part_info= 0;
2964 2965
  }
#endif
unknown's avatar
unknown committed
2966 2967 2968
  if (free_share)
  {
    if (table->s->tmp_table == NO_TMP_TABLE)
2969
      tdc_release_share(table->s);
unknown's avatar
unknown committed
2970 2971 2972
    else
      free_table_share(table->s);
  }
2973
  free_root(&table->mem_root, MYF(0));
unknown's avatar
unknown committed
2974 2975 2976 2977 2978 2979 2980 2981
  DBUG_RETURN(error);
}


/* Deallocate temporary blob storage */

void free_blobs(register TABLE *table)
{
2982 2983 2984 2985
  uint *ptr, *end;
  for (ptr= table->s->blob_field, end=ptr + table->s->blob_fields ;
       ptr != end ;
       ptr++)
2986 2987 2988 2989 2990 2991 2992 2993 2994
  {
    /*
      Reduced TABLE objects which are used by row-based replication for
      type conversion might have some fields missing. Skip freeing BLOB
      buffers for such missing fields.
    */
    if (table->field[*ptr])
      ((Field_blob*) table->field[*ptr])->free();
  }
unknown's avatar
unknown committed
2995 2996 2997
}


2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
/**
  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();
  }
}

Sergei Golubchik's avatar
Sergei Golubchik committed
3020
/* error message when opening a form file */
unknown's avatar
unknown committed
3021

3022 3023
void open_table_error(TABLE_SHARE *share, enum open_frm_error error,
                      int db_errno)
unknown's avatar
unknown committed
3024 3025
{
  char buff[FN_REFLEN];
3026
  const myf errortype= ME_ERROR+ME_WAITTANG;  // Write fatals error to log
unknown's avatar
unknown committed
3027
  DBUG_ENTER("open_table_error");
unknown's avatar
unknown committed
3028 3029

  switch (error) {
3030
  case OPEN_FRM_OPEN_ERROR:
3031 3032 3033 3034 3035
    /*
      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
3036 3037
      my_error(ER_NO_SUCH_TABLE, MYF(0), share->db.str, share->table_name.str);
    else
unknown's avatar
unknown committed
3038
    {
unknown's avatar
unknown committed
3039
      strxmov(buff, share->normalized_path.str, reg_ext, NullS);
3040 3041
      my_error((db_errno == EMFILE) ? ER_CANT_OPEN_FILE : ER_FILE_NOT_FOUND,
               errortype, buff, db_errno);
unknown's avatar
unknown committed
3042 3043
    }
    break;
3044 3045
  case OPEN_FRM_OK:
    DBUG_ASSERT(0); // open_table_error() is never called for this one
unknown's avatar
unknown committed
3046
    break;
3047
  case OPEN_FRM_ERROR_ALREADY_ISSUED:
unknown's avatar
unknown committed
3048
    break;
3049 3050 3051 3052 3053 3054 3055
  case OPEN_FRM_NOT_A_VIEW:
    my_error(ER_WRONG_OBJECT, MYF(0), share->db.str,
             share->table_name.str, "VIEW");
    break;
  case OPEN_FRM_NOT_A_TABLE:
    my_error(ER_WRONG_OBJECT, MYF(0), share->db.str,
             share->table_name.str, "TABLE");
3056
    break;
3057 3058
  case OPEN_FRM_DISCOVER:
    DBUG_ASSERT(0); // open_table_error() is never called for this one
3059
    break;
3060
  case OPEN_FRM_CORRUPTED:
unknown's avatar
unknown committed
3061
    strxmov(buff, share->normalized_path.str, reg_ext, NullS);
3062
    my_error(ER_NOT_FORM_FILE, errortype, buff);
unknown's avatar
unknown committed
3063
    break;
3064 3065 3066 3067
  case OPEN_FRM_READ_ERROR:
    strxmov(buff, share->normalized_path.str, reg_ext, NullS);
    my_error(ER_ERROR_ON_READ, errortype, buff, db_errno);
    break;
3068 3069 3070 3071 3072
  case OPEN_FRM_NEEDS_REBUILD:
    strxnmov(buff, sizeof(buff)-1,
             share->db.str, ".", share->table_name.str, NullS);
    my_error(ER_TABLE_NEEDS_REBUILD, errortype, buff);
    break;
unknown's avatar
unknown committed
3073 3074
  }
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3075
} /* open_table_error */
unknown's avatar
unknown committed
3076 3077 3078 3079


	/*
	** fix a str_type to a array type
3080
	** typeparts separated with some char. differents types are separated
unknown's avatar
unknown committed
3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104
	** 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
3105
      ptr+=2;				/* Skip end mark and last 0 */
unknown's avatar
unknown committed
3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117
    }
    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 */


3118
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings)
unknown's avatar
unknown committed
3119
{
3120
  TYPELIB *result= (TYPELIB*) alloc_root(mem_root, sizeof(TYPELIB));
unknown's avatar
unknown committed
3121 3122 3123 3124
  if (!result)
    return 0;
  result->count=strings.elements;
  result->name="";
3125
  uint nbytes= (sizeof(char*) + sizeof(uint)) * (result->count + 1);
3126
  if (!(result->type_names= (const char**) alloc_root(mem_root, nbytes)))
unknown's avatar
unknown committed
3127
    return 0;
3128
  result->type_lengths= (uint*) (result->type_names + result->count + 1);
unknown's avatar
unknown committed
3129 3130 3131
  List_iterator<String> it(strings);
  String *tmp;
  for (uint i=0; (tmp=it++) ; i++)
3132 3133 3134 3135 3136 3137
  {
    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
3138 3139 3140 3141
  return result;
}


3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153
/*
 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
3154

3155
static uint find_field(Field **fields, uchar *record, uint start, uint length)
unknown's avatar
unknown committed
3156 3157
{
  Field **field;
unknown's avatar
unknown committed
3158
  uint i, pos;
unknown's avatar
unknown committed
3159

unknown's avatar
unknown committed
3160 3161
  pos= 0;
  for (field= fields, i=1 ; *field ; i++,field++)
unknown's avatar
unknown committed
3162
  {
3163
    if ((*field)->offset(record) == start)
unknown's avatar
unknown committed
3164 3165 3166
    {
      if ((*field)->key_length() == length)
	return (i);
unknown's avatar
unknown committed
3167
      if (!pos || fields[pos-1]->pack_length() <
unknown's avatar
unknown committed
3168
	  (*field)->pack_length())
unknown's avatar
unknown committed
3169
	pos= i;
unknown's avatar
unknown committed
3170 3171 3172 3173 3174 3175
    }
  }
  return (pos);
}


3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188
/*
  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.
*/
3189

3190
void append_unescaped(String *res, const char *pos, uint length)
unknown's avatar
unknown committed
3191
{
3192 3193 3194 3195
  const char *end= pos+length;
  res->append('\'');

  for (; pos != end ; pos++)
unknown's avatar
unknown committed
3196
  {
unknown's avatar
unknown committed
3197
#if defined(USE_MB) && MYSQL_VERSION_ID < 40100
unknown's avatar
unknown committed
3198 3199 3200 3201 3202 3203 3204 3205 3206 3207
    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
3208 3209 3210 3211 3212 3213 3214 3215 3216 3217
    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':
3218
      res->append('\\');		/* This gives better readability */
unknown's avatar
unknown committed
3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
      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;
    }
  }
3234
  res->append('\'');
unknown's avatar
unknown committed
3235 3236
}

3237

Sergei Golubchik's avatar
Sergei Golubchik committed
3238 3239
void prepare_frm_header(THD *thd, uint reclength, uchar *fileinfo,
                        HA_CREATE_INFO *create_info, uint keys, KEY *key_info)
unknown's avatar
unknown committed
3240
{
3241 3242
  ulong key_comment_total_bytes= 0;
  uint i;
Sergei Golubchik's avatar
Sergei Golubchik committed
3243
  DBUG_ENTER("prepare_frm_header");
unknown's avatar
unknown committed
3244

3245
  /* Fix this when we have new .frm files;  Current limit is 4G rows (TODO) */
3246 3247 3248 3249
  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;
3250

Sergei Golubchik's avatar
Sergei Golubchik committed
3251 3252 3253 3254 3255 3256
  uint key_length, tmp_key_length, tmp, csid;
  bzero((char*) fileinfo, FRM_HEADER_SIZE);
  /* header */
  fileinfo[0]=(uchar) 254;
  fileinfo[1]= 1;
  fileinfo[2]= FRM_VER+3+ test(create_info->varchar);
3257

Sergei Golubchik's avatar
Sergei Golubchik committed
3258 3259
  fileinfo[3]= (uchar) ha_legacy_type(
        ha_checktype(thd,ha_legacy_type(create_info->db_type),0,0));
Sergei Golubchik's avatar
Sergei Golubchik committed
3260

Sergei Golubchik's avatar
Sergei Golubchik committed
3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273
  /*
    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?)
  */
  for (i= 0; i < keys; i++)
3274
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
3275 3276 3277 3278
    DBUG_ASSERT(test(key_info[i].flags & HA_USES_COMMENT) == 
               (key_info[i].comment.length > 0));
    if (key_info[i].flags & HA_USES_COMMENT)
      key_comment_total_bytes += 2 + key_info[i].comment.length;
3279
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303

  key_length= keys * (8 + MAX_REF_PARTS * 9 + NAME_LEN + 1) + 16
              + key_comment_total_bytes;

  int2store(fileinfo+8,1);
  tmp_key_length= (key_length < 0xffff) ? key_length : 0xffff;
  int2store(fileinfo+14,tmp_key_length);
  int2store(fileinfo+16,reclength);
  int4store(fileinfo+18,create_info->max_rows);
  int4store(fileinfo+22,create_info->min_rows);
  /* fileinfo[26] is set in mysql_create_frm() */
  fileinfo[27]=2;				// Use long pack-fields
  /* fileinfo[28 & 29] is set to key_info_length in mysql_create_frm() */
  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
  fileinfo[33]=5;                             // Mark for 5.0 frm file
  int4store(fileinfo+34,create_info->avg_row_length);
  csid= (create_info->default_table_charset ?
         create_info->default_table_charset->number : 0);
  fileinfo[38]= (uchar) csid;
  fileinfo[39]= (uchar) ((uint) create_info->transactional |
                         ((uint) create_info->page_checksum << 2));
  fileinfo[40]= (uchar) create_info->row_type;
Sergei Golubchik's avatar
Sergei Golubchik committed
3304
  /* Bytes 41-46 were for RAID support; now reused for other purposes */
Sergei Golubchik's avatar
Sergei Golubchik committed
3305
  fileinfo[41]= (uchar) (csid >> 8);
Sergei Golubchik's avatar
Sergei Golubchik committed
3306 3307
  int2store(fileinfo+42, create_info->stats_sample_pages & 0xffff);
  fileinfo[44]= (uchar) create_info->stats_auto_recalc;
Sergei Golubchik's avatar
Sergei Golubchik committed
3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320
  fileinfo[45]= 0;
  fileinfo[46]= 0;
  int4store(fileinfo+47, key_length);
  tmp= MYSQL_VERSION_ID;          // Store to avoid warning from int4store
  int4store(fileinfo+51, tmp);
  int4store(fileinfo+55, create_info->extra_size);
  /*
    59-60 is reserved for extra_rec_buf_length,
    61 for default_part_db_type
  */
  int2store(fileinfo+62, create_info->key_block_size);
  DBUG_VOID_RETURN;
} /* prepare_fileinfo */
unknown's avatar
unknown committed
3321 3322 3323 3324


void update_create_info_from_table(HA_CREATE_INFO *create_info, TABLE *table)
{
3325
  TABLE_SHARE *share= table->s;
3326
  DBUG_ENTER("update_create_info_from_table");
3327 3328 3329 3330 3331 3332 3333

  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;
3334
  create_info->table_charset= 0;
3335
  create_info->comment= share->comment;
3336 3337
  create_info->transactional= share->transactional;
  create_info->page_checksum= share->page_checksum;
3338
  create_info->option_list= share->option_list;
3339

3340
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3341
}
unknown's avatar
unknown committed
3342 3343 3344 3345 3346

int
rename_file_ext(const char * from,const char * to,const char * ext)
{
  char from_b[FN_REFLEN],to_b[FN_REFLEN];
Konstantin Osipov's avatar
Konstantin Osipov committed
3347 3348
  (void) strxmov(from_b,from,ext,NullS);
  (void) strxmov(to_b,to,ext,NullS);
3349
  return mysql_file_rename(key_file_frm, from_b, to_b, MYF(0));
unknown's avatar
unknown committed
3350 3351 3352
}


unknown's avatar
unknown committed
3353 3354 3355 3356 3357 3358 3359 3360 3361 3362
/*
  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
3363 3364
    1   string is empty
    0	all ok
unknown's avatar
unknown committed
3365 3366 3367 3368
*/

bool get_field(MEM_ROOT *mem, Field *field, String *res)
{
3369
  char buff[MAX_FIELD_WIDTH], *to;
unknown's avatar
unknown committed
3370
  String str(buff,sizeof(buff),&my_charset_bin);
3371 3372
  uint length;

3373
  field->val_str(&str);
3374
  if (!(length= str.length()))
3375 3376
  {
    res->length(0);
3377
    return 1;
3378 3379 3380
  }
  if (!(to= strmake_root(mem, str.ptr(), length)))
    length= 0;                                  // Safety fix
3381
  res->set(to, length, field->charset());
3382
  return 0;
unknown's avatar
unknown committed
3383 3384
}

3385

unknown's avatar
unknown committed
3386
/*
3387 3388 3389 3390 3391 3392 3393 3394 3395 3396
  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
3397 3398
*/

3399
char *get_field(MEM_ROOT *mem, Field *field)
unknown's avatar
unknown committed
3400
{
unknown's avatar
unknown committed
3401
  char buff[MAX_FIELD_WIDTH], *to;
3402
  String str(buff,sizeof(buff),&my_charset_bin);
3403 3404
  uint length;

3405
  field->val_str(&str);
unknown's avatar
unknown committed
3406
  length= str.length();
unknown's avatar
unknown committed
3407
  if (!length || !(to= (char*) alloc_root(mem,length+1)))
unknown's avatar
unknown committed
3408 3409 3410 3411 3412 3413
    return NullS;
  memcpy(to,str.ptr(),(uint) length);
  to[length]=0;
  return to;
}

3414 3415 3416 3417 3418
/*
  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
*/
3419
uint calculate_key_len(TABLE *table, uint key, const uchar *buf,
unknown's avatar
unknown committed
3420
                       key_part_map keypart_map)
3421 3422 3423 3424 3425 3426
{
  /* 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;
3427
  KEY_PART_INFO *end_key_part= key_part + table->actual_n_key_parts(key_info);
3428 3429 3430 3431 3432 3433 3434 3435 3436 3437
  uint length= 0;

  while (key_part < end_key_part && keypart_map)
  {
    length+= key_part->store_length;
    keypart_map >>= 1;
    key_part++;
  }
  return length;
}
3438 3439 3440 3441 3442 3443

/*
  Check if database name is valid

  SYNPOSIS
    check_db_name()
3444
    org_name		Name of database and length
3445 3446 3447 3448 3449 3450 3451 3452 3453

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

  RETURN
    0	ok
    1   error
*/

3454
bool check_db_name(LEX_STRING *org_name)
unknown's avatar
unknown committed
3455
{
3456
  char *name= org_name->str;
3457
  uint name_length= org_name->length;
3458
  bool check_for_path_chars;
3459

3460 3461 3462 3463 3464 3465
  if ((check_for_path_chars= check_mysql50_prefix(name)))
  {
    name+= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
    name_length-= MYSQL50_TABLE_NAME_PREFIX_LENGTH;
  }

3466
  if (!name_length || name_length > NAME_LEN)
3467
    return 1;
3468

unknown's avatar
unknown committed
3469
  if (lower_case_table_names && name != any_db)
3470
    my_casedn_str(files_charset_info, name);
3471

3472 3473 3474
  if (db_name_is_in_ignore_db_dirs_list(name))
    return 1;

3475
  return check_table_name(name, name_length, check_for_path_chars);
unknown's avatar
unknown committed
3476 3477 3478 3479 3480
}


/*
  Allow anything as a table name, as long as it doesn't contain an
3481
  ' ' at the end
unknown's avatar
unknown committed
3482 3483 3484
  returns 1 on error
*/

3485
bool check_table_name(const char *name, size_t length, bool check_for_path_chars)
unknown's avatar
unknown committed
3486
{
3487 3488
  // name length in symbols
  size_t name_length= 0;
unknown's avatar
unknown committed
3489
  const char *end= name+length;
3490 3491 3492 3493 3494 3495 3496 3497 3498


  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
3499 3500
  if (!length || length > NAME_LEN)
    return 1;
unknown's avatar
unknown committed
3501
#if defined(USE_MB) && defined(USE_MB_IDENT)
3502
  bool last_char_is_space= FALSE;
unknown's avatar
unknown committed
3503 3504 3505 3506
#else
  if (name[length-1]==' ')
    return 1;
#endif
unknown's avatar
unknown committed
3507 3508 3509 3510

  while (name != end)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
3511
    last_char_is_space= my_isspace(system_charset_info, *name);
3512
    if (use_mb(system_charset_info))
unknown's avatar
unknown committed
3513
    {
3514
      int len=my_ismbchar(system_charset_info, name, end);
unknown's avatar
unknown committed
3515 3516
      if (len)
      {
Michael Widenius's avatar
Michael Widenius committed
3517
        name+= len;
3518
        name_length++;
unknown's avatar
unknown committed
3519 3520 3521 3522
        continue;
      }
    }
#endif
3523 3524
    if (check_for_path_chars &&
        (*name == '/' || *name == '\\' || *name == '~' || *name == FN_EXTCHAR))
unknown's avatar
unknown committed
3525 3526
      return 1;
    name++;
3527
    name_length++;
unknown's avatar
unknown committed
3528
  }
unknown's avatar
unknown committed
3529
#if defined(USE_MB) && defined(USE_MB_IDENT)
3530
  return last_char_is_space || (name_length > NAME_CHAR_LEN);
3531
#else
3532
  return FALSE;
3533
#endif
unknown's avatar
unknown committed
3534 3535
}

unknown's avatar
unknown committed
3536

unknown's avatar
unknown committed
3537 3538
bool check_column_name(const char *name)
{
3539 3540
  // name length in symbols
  size_t name_length= 0;
unknown's avatar
unknown committed
3541
  bool last_char_is_space= TRUE;
3542

unknown's avatar
unknown committed
3543 3544 3545
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
3546
    last_char_is_space= my_isspace(system_charset_info, *name);
3547
    if (use_mb(system_charset_info))
unknown's avatar
unknown committed
3548
    {
3549
      int len=my_ismbchar(system_charset_info, name, 
3550
                          name+system_charset_info->mbmaxlen);
unknown's avatar
unknown committed
3551 3552 3553
      if (len)
      {
        name += len;
3554
        name_length++;
unknown's avatar
unknown committed
3555 3556 3557
        continue;
      }
    }
unknown's avatar
unknown committed
3558
#else
3559
    last_char_is_space= *name==' ';
3560
    if (*name == '\377')
unknown's avatar
unknown committed
3561
      return 1;
3562
#endif
unknown's avatar
unknown committed
3563
    name++;
3564
    name_length++;
unknown's avatar
unknown committed
3565
  }
unknown's avatar
unknown committed
3566
  /* Error if empty or too long column name */
3567
  return last_char_is_space || (name_length > NAME_CHAR_LEN);
unknown's avatar
unknown committed
3568 3569
}

3570

3571
/**
3572 3573
  Checks whether a table is intact. Should be done *just* after the table has
  been opened.
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585

  @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.
3586 3587
*/

3588 3589
bool
Table_check_intact::check(TABLE *table, const TABLE_FIELD_DEF *table_def)
3590 3591 3592
{
  uint i;
  my_bool error= FALSE;
3593
  const TABLE_FIELD_TYPE *field_def= table_def->field;
3594
  DBUG_ENTER("table_check_intact");
3595
  DBUG_PRINT("info",("table: %s  expected_count: %d",
3596
                     table->alias.c_ptr(), table_def->count));
3597

3598 3599 3600
  /* Whether the table definition has already been validated. */
  if (table->s->table_field_def_cache == table_def)
    DBUG_RETURN(FALSE);
3601

3602
  if (table->s->fields != table_def->count)
3603
  {
3604 3605 3606 3607
    DBUG_PRINT("info", ("Column count has changed, checking the definition"));

    /* previous MySQL version */
    if (MYSQL_VERSION_ID > table->s->mysql_version)
3608
    {
3609 3610
      report_error(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE,
                   ER(ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE),
3611
                   table->alias.c_ptr(), table_def->count, table->s->fields,
3612 3613
                   static_cast<int>(table->s->mysql_version),
                   MYSQL_VERSION_ID);
3614 3615 3616 3617
      DBUG_RETURN(TRUE);
    }
    else if (MYSQL_VERSION_ID == table->s->mysql_version)
    {
Sergei Golubchik's avatar
Sergei Golubchik committed
3618 3619 3620
      report_error(ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2,
                   ER(ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2),
                   table->s->db.str, table->s->table_name.str,
3621
                   table_def->count, table->s->fields);
3622 3623 3624 3625 3626 3627 3628 3629 3630 3631
      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.
    */
  }
3632
  char buffer[1024];
3633
  for (i=0 ; i < table_def->count; i++, field_def++)
3634 3635 3636
  {
    String sql_type(buffer, sizeof(buffer), system_charset_info);
    sql_type.length(0);
3637 3638
    /* Allocate min 256 characters at once */
    sql_type.extra_allocation(256);
3639 3640 3641
    if (i < table->s->fields)
    {
      Field *field= table->field[i];
3642

3643 3644
      if (strncmp(field->field_name, field_def->name.str,
                  field_def->name.length))
unknown's avatar
unknown committed
3645
      {
3646
        /*
3647 3648 3649
          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.
3650
        */
3651 3652
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected column '%s' at position %d, found '%s'.",
3653 3654
                     table->s->db.str, table->alias.c_ptr(),
                     field_def->name.str, i,
3655
                     field->field_name);
unknown's avatar
unknown committed
3656
      }
3657
      field->sql_type(sql_type);
3658
      /*
3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674
        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.
       */
3675 3676
      if (strncmp(sql_type.c_ptr_safe(), field_def->type.str,
                  field_def->type.length - 1))
3677
      {
3678 3679
        report_error(0, "Incorrect definition of table %s.%s: "
                     "expected column '%s' at position %d to have type "
3680 3681
                     "%s, found type %s.", table->s->db.str,
                     table->alias.c_ptr(),
3682 3683
                     field_def->name.str, i, field_def->type.str,
                     sql_type.c_ptr_safe());
3684
        error= TRUE;
3685
      }
3686
      else if (field_def->cset.str && !field->has_charset())
3687
      {
3688 3689 3690
        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 "
3691 3692
                     "character set.", table->s->db.str,
                     table->alias.c_ptr(),
3693
                     field_def->name.str, i, field_def->cset.str);
3694 3695
        error= TRUE;
      }
3696 3697
      else if (field_def->cset.str &&
               strcmp(field->charset()->csname, field_def->cset.str))
3698
      {
3699 3700 3701
        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 "
3702 3703
                     "character set '%s'.", table->s->db.str,
                     table->alias.c_ptr(),
3704 3705
                     field_def->name.str, i, field_def->cset.str,
                     field->charset()->csname);
3706
        error= TRUE;
3707 3708
      }
    }
3709 3710
    else
    {
3711 3712 3713
      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.",
3714
                   table->s->db.str, table->alias.c_ptr(),
3715
                   field_def->name.str, i, field_def->type.str);
3716 3717
      error= TRUE;
    }
3718
  }
3719

unknown's avatar
unknown committed
3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731
  if (table_def->primary_key_parts)
  {
    if (table->s->primary_key == MAX_KEY)
    {
      report_error(0, "Incorrect definition of table %s.%s: "
                   "missing primary key.", table->s->db.str,
                   table->alias.c_ptr());
      error= TRUE;
    }
    else
    {
      KEY *pk= &table->s->key_info[table->s->primary_key];
Sergei Golubchik's avatar
Sergei Golubchik committed
3732
      if (pk->user_defined_key_parts != table_def->primary_key_parts)
unknown's avatar
unknown committed
3733 3734 3735 3736 3737
      {
        report_error(0, "Incorrect definition of table %s.%s: "
                     "Expected primary key to have %u columns, but instead "
                     "found %u columns.", table->s->db.str,
                     table->alias.c_ptr(), table_def->primary_key_parts,
Sergei Golubchik's avatar
Sergei Golubchik committed
3738
                     pk->user_defined_key_parts);
unknown's avatar
unknown committed
3739 3740 3741 3742
        error= TRUE;
      }
      else
      {
Sergei Golubchik's avatar
Sergei Golubchik committed
3743
        for (i= 0; i < pk->user_defined_key_parts; ++i)
unknown's avatar
unknown committed
3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759
        {
          if (table_def->primary_key_columns[i] + 1 != pk->key_part[i].fieldnr)
          {
            report_error(0, "Incorrect definition of table %s.%s: Expected "
                         "primary key part %u to refer to column %u, but "
                         "instead found column %u.", table->s->db.str,
                         table->alias.c_ptr(), i + 1,
                         table_def->primary_key_columns[i] + 1,
                         pk->key_part[i].fieldnr);
            error= TRUE;
          }
        }
      }
    }
  }

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

3763
  DBUG_RETURN(error);
3764 3765 3766
}


3767 3768 3769 3770 3771 3772
/**
  Traverse portion of wait-for graph which is reachable through edge
  represented by this flush ticket in search for deadlocks.

  @retval TRUE  A deadlock is found. A victim is remembered
                by the visitor.
3773
  @retval FALSE Success, no deadlocks.
3774 3775
*/

3776
bool Wait_for_flush::accept_visitor(MDL_wait_for_graph_visitor *gvisitor)
3777
{
3778
  return m_share->visit_subgraph(this, gvisitor);
3779 3780 3781
}


3782
uint Wait_for_flush::get_deadlock_weight() const
3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796
{
  return m_deadlock_weight;
}


/**
  Traverse portion of wait-for graph which is reachable through this
  table share in search for deadlocks.

  @param waiting_ticket  Ticket representing wait for this share.
  @param dvisitor        Deadlock detection visitor.

  @retval TRUE  A deadlock is found. A victim is remembered
                by the visitor.
3797
  @retval FALSE No deadlocks, it's OK to begin wait.
3798 3799
*/

3800 3801
bool TABLE_SHARE::visit_subgraph(Wait_for_flush *wait_for_flush,
                                 MDL_wait_for_graph_visitor *gvisitor)
3802 3803
{
  TABLE *table;
3804
  MDL_context *src_ctx= wait_for_flush->get_ctx();
3805 3806 3807
  bool result= TRUE;

  /*
3808 3809 3810 3811 3812
    To protect used_tables list from being concurrently modified
    while we are iterating through it we acquire LOCK_open.
    This does not introduce deadlocks in the deadlock detector
    because we won't try to acquire LOCK_open while
    holding a write-lock on MDL_lock::m_rwlock.
3813
  */
3814
  if (gvisitor->m_lock_open_count++ == 0)
3815 3816
    mysql_mutex_lock(&LOCK_open);

3817
  TABLE_list::Iterator tables_it(tdc.used_tables);
3818

3819 3820 3821 3822 3823
  /*
    In case of multiple searches running in parallel, avoid going
    over the same loop twice and shortcut the search.
    Do it after taking the lock to weed out unnecessary races.
  */
3824 3825 3826 3827 3828 3829
  if (src_ctx->m_wait.get_status() != MDL_wait::EMPTY)
  {
    result= FALSE;
    goto end;
  }

3830
  if (gvisitor->enter_node(src_ctx))
3831 3832 3833 3834
    goto end;

  while ((table= tables_it++))
  {
3835
    if (gvisitor->inspect_edge(&table->in_use->mdl_context))
3836 3837 3838 3839 3840 3841 3842 3843
    {
      goto end_leave_node;
    }
  }

  tables_it.rewind();
  while ((table= tables_it++))
  {
3844
    if (table->in_use->mdl_context.visit_subgraph(gvisitor))
3845 3846 3847 3848 3849 3850 3851 3852
    {
      goto end_leave_node;
    }
  }

  result= FALSE;

end_leave_node:
3853
  gvisitor->leave_node(src_ctx);
3854 3855

end:
3856
  if (gvisitor->m_lock_open_count-- == 1)
3857 3858 3859 3860 3861 3862 3863
    mysql_mutex_unlock(&LOCK_open);

  return result;
}


/**
3864 3865
  Wait until the subject share is removed from the table
  definition cache and make sure it's destroyed.
3866 3867 3868 3869 3870

  @param mdl_context     MDL context for thread which is going to wait.
  @param abstime         Timeout for waiting as absolute time value.
  @param deadlock_weight Weight of this wait for deadlock detector.

3871
  @pre LOCK_table_share is locked, the share is marked for flush and
3872
       this connection does not reference the share.
3873 3874 3875 3876 3877 3878 3879
       LOCK_table_share will be unlocked temporarily during execution.

  It may happen that another FLUSH TABLES thread marked this share
  for flush, but didn't yet purge it from table definition cache.
  In this case we may start waiting for a table share that has no
  references (ref_count == 0). We do this with assumption that this
  another FLUSH TABLES thread is about to purge this share.
3880 3881 3882 3883 3884

  @retval FALSE - Success.
  @retval TRUE  - Error (OOM, deadlock, timeout, etc...).
*/

3885 3886
bool TABLE_SHARE::wait_for_old_version(THD *thd, struct timespec *abstime,
                                       uint deadlock_weight)
3887
{
3888 3889
  MDL_context *mdl_context= &thd->mdl_context;
  Wait_for_flush ticket(mdl_context, this, deadlock_weight);
3890 3891
  MDL_wait::enum_wait_status wait_status;

3892 3893
  mysql_mutex_assert_owner(&tdc.LOCK_table_share);
  DBUG_ASSERT(has_old_version());
3894

3895
  tdc.m_flush_tickets.push_front(&ticket);
3896 3897 3898

  mdl_context->m_wait.reset_status();

3899
  mysql_mutex_unlock(&tdc.LOCK_table_share);
3900

3901
  mdl_context->will_wait_for(&ticket);
3902 3903 3904

  mdl_context->find_deadlock();

3905
  wait_status= mdl_context->m_wait.timed_wait(thd, abstime, TRUE,
Sergei Golubchik's avatar
Sergei Golubchik committed
3906
                                              &stage_waiting_for_table_flush);
3907 3908 3909

  mdl_context->done_waiting_for();

3910
  mysql_mutex_lock(&tdc.LOCK_table_share);
3911

3912
  tdc.m_flush_tickets.remove(&ticket);
3913

3914
  if (tdc.m_flush_tickets.is_empty() && tdc.ref_count == 0)
3915
  {
3916 3917 3918 3919
    /*
      If our thread was the last one using the share,
      we must destroy it here.
    */
3920
    mysql_mutex_unlock(&tdc.LOCK_table_share);
3921
    destroy();
3922
  }
3923 3924 3925
  else
    mysql_mutex_unlock(&tdc.LOCK_table_share);

3926

3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937
  /*
    In cases when our wait was aborted by KILL statement,
    a deadlock or a timeout, the share might still be referenced,
    so we don't delete it. Note, that we can't determine this
    condition by checking wait_status alone, since, for example,
    a timeout can happen after all references to the table share
    were released, but before the share is removed from the
    cache and we receive the notification. This is why
    we first destroy the share, and then look at
    wait_status.
  */
3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956
  switch (wait_status)
  {
  case MDL_wait::GRANTED:
    return FALSE;
  case MDL_wait::VICTIM:
    my_error(ER_LOCK_DEADLOCK, MYF(0));
    return TRUE;
  case MDL_wait::TIMEOUT:
    my_error(ER_LOCK_WAIT_TIMEOUT, MYF(0));
    return TRUE;
  case MDL_wait::KILLED:
    return TRUE;
  default:
    DBUG_ASSERT(0);
    return TRUE;
  }
}


3957
/**
Alexander Nozdrin's avatar
Alexander Nozdrin committed
3958 3959 3960 3961 3962
  Initialize TABLE instance (newly created, or coming either from table
  cache or THD::temporary_tables list) and prepare it for further use
  during statement execution. Set the 'alias' attribute from the specified
  TABLE_LIST element. Remember the TABLE_LIST element in the
  TABLE::pos_in_table_list member.
3963 3964 3965 3966 3967 3968 3969

  @param thd  Thread context.
  @param tl   TABLE_LIST element.
*/

void TABLE::init(THD *thd, TABLE_LIST *tl)
{
3970
  DBUG_ASSERT(s->tdc.ref_count > 0 || s->tmp_table != NO_TMP_TABLE);
3971 3972 3973 3974 3975 3976

  if (thd->lex->need_correct_ident())
    alias_name_used= my_strcasecmp(table_alias_charset,
                                   s->table_name.str,
                                   tl->alias);
  /* Fix alias if table name changes. */
Sergei Golubchik's avatar
Sergei Golubchik committed
3977 3978
  if (strcmp(alias.c_ptr(), tl->alias))
    alias.copy(tl->alias, strlen(tl->alias), alias.charset());
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990

  tablenr= thd->current_tablenr++;
  used_fields= 0;
  const_table= 0;
  null_row= 0;
  maybe_null= 0;
  force_index= 0;
  force_index_order= 0;
  force_index_group= 0;
  status= STATUS_NO_RECORD;
  insert_values= 0;
  fulltext_searched= 0;
Sergei Golubchik's avatar
Sergei Golubchik committed
3991
  file->ha_start_of_new_statement();
3992
  reginfo.impossible_range= 0;
Sergei Golubchik's avatar
Sergei Golubchik committed
3993
  created= TRUE;
Igor Babaev's avatar
Igor Babaev committed
3994
  cond_selectivity= 1.0;
unknown's avatar
unknown committed
3995
  cond_selectivity_sampling_explain= NULL;
3996 3997 3998 3999 4000 4001 4002 4003

  /* Catch wrong handling of the auto_increment_field_not_null. */
  DBUG_ASSERT(!auto_increment_field_not_null);
  auto_increment_field_not_null= FALSE;

  pos_in_table_list= tl;

  clear_column_bitmaps();
Igor Babaev's avatar
Igor Babaev committed
4004 4005 4006 4007 4008
  for (Field **f_ptr= field ; *f_ptr ; f_ptr++)
  {
    (*f_ptr)->next_equal_field= NULL;
    (*f_ptr)->cond_selectivity= 1.0;
  }
4009 4010 4011

  DBUG_ASSERT(key_read == 0);

Sergei Golubchik's avatar
Sergei Golubchik committed
4012
  /* mark the record[0] uninitialized */
4013
  TRASH(record[0], s->reclength);
Sergei Golubchik's avatar
Sergei Golubchik committed
4014

Sergei Golubchik's avatar
Sergei Golubchik committed
4015 4016 4017 4018 4019 4020 4021 4022
  /*
    Initialize the null marker bits, to ensure that if we are doing a read
    of only selected columns (like in keyread), all null markers are
    initialized.
  */
  memset(record[0], 255, s->null_bytes); 
  memset(record[1], 255, s->null_bytes); 

4023 4024 4025 4026 4027
  /* Tables may be reused in a sub statement. */
  DBUG_ASSERT(!file->extra(HA_EXTRA_IS_ATTACHED_CHILDREN));
}


4028 4029 4030 4031
/*
  Create Item_field for each column in the table.

  SYNPOSIS
Konstantin Osipov's avatar
Konstantin Osipov committed
4032
    TABLE::fill_item_list()
4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044
      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
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
4045
bool TABLE::fill_item_list(List<Item> *item_list) const
4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064
{
  /*
    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
Konstantin Osipov's avatar
Konstantin Osipov committed
4065
    TABLE::fill_item_list()
4066 4067 4068 4069 4070 4071 4072 4073 4074
      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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
4075
void TABLE::reset_item_list(List<Item> *item_list) const
4076 4077 4078 4079 4080 4081 4082 4083 4084
{
  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
4085

unknown's avatar
VIEW  
unknown committed
4086 4087 4088 4089
/*
  calculate md5 of query

  SYNOPSIS
4090
    TABLE_LIST::calc_md5()
unknown's avatar
VIEW  
unknown committed
4091 4092
    buffer	buffer for md5 writing
*/
4093

4094
void  TABLE_LIST::calc_md5(char *buffer)
unknown's avatar
VIEW  
unknown committed
4095
{
4096
  uchar digest[16];
4097 4098
  compute_md5_hash((char*) digest, select_stmt.str,
                   select_stmt.length);
unknown's avatar
VIEW  
unknown committed
4099 4100 4101 4102 4103 4104 4105 4106 4107
  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]);
}


4108
/**
4109 4110
  @brief
  Create field translation for mergeable derived table/view.
4111

4112
  @param thd  Thread handle
4113

4114 4115
  @details
  Create field translation for mergeable derived table/view.
4116

4117 4118
  @return FALSE ok.
  @return TRUE an error occur.
unknown's avatar
VIEW  
unknown committed
4119
*/
4120

4121
bool TABLE_LIST::create_field_translation(THD *thd)
unknown's avatar
VIEW  
unknown committed
4122
{
4123 4124 4125 4126 4127 4128 4129
  Item *item;
  Field_translator *transl;
  SELECT_LEX *select= get_single_select();
  List_iterator_fast<Item> it(select->item_list);
  uint field_count= 0;
  Query_arena *arena= thd->stmt_arena, backup;
  bool res= FALSE;
unknown's avatar
unknown committed
4130

unknown's avatar
unknown committed
4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145
  if (thd->stmt_arena->is_conventional() ||
      thd->stmt_arena->is_stmt_prepare_or_first_sp_execute())
  {
    /* initialize lists */
    used_items.empty();
    persistent_used_items.empty();
  }
  else
  {
    /*
      Copy the list created by natural join procedure because the procedure
      will not be repeated.
    */
    used_items= persistent_used_items;
  }
unknown's avatar
unknown committed
4146

4147
  if (field_translation)
unknown's avatar
merge  
unknown committed
4148
  {
4149 4150 4151 4152 4153 4154
    /*
      Update items in the field translation aftet view have been prepared.
      It's needed because some items in the select list, like IN subselects,
      might be substituted for optimized ones.
    */
    if (is_view() && get_unit()->prepared && !field_translation_updated)
unknown's avatar
unknown committed
4155
    {
4156
      while ((item= it++))
unknown's avatar
unknown committed
4157
      {
4158
        field_translation[field_count++].item= item;
unknown's avatar
unknown committed
4159
      }
4160
      field_translation_updated= TRUE;
unknown's avatar
unknown committed
4161
    }
4162 4163

    return FALSE;
unknown's avatar
merge  
unknown committed
4164
  }
4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179

  if (arena->is_conventional())
    arena= 0;                                   // For easier test
  else
    thd->set_n_backup_active_arena(arena, &backup);

  /* Create view fields translation table */

  if (!(transl=
        (Field_translator*)(thd->stmt_arena->
                            alloc(select->item_list.elements *
                                  sizeof(Field_translator)))))
  {
    res= TRUE;
    goto exit;
unknown's avatar
merge  
unknown committed
4180
  }
4181 4182 4183 4184 4185

  while ((item= it++))
  {
    transl[field_count].name= item->name;
    transl[field_count++].item= item;
unknown's avatar
merge  
unknown committed
4186
  }
4187 4188 4189 4190 4191 4192 4193 4194
  field_translation= transl;
  field_translation_end= transl + field_count;

exit:
  if (arena)
    thd->restore_active_arena(arena, &backup);

  return res;
4195 4196 4197
}


4198 4199 4200
/**
  @brief
  Create field translation for mergeable derived table/view.
unknown's avatar
VIEW  
unknown committed
4201

4202
  @param thd  Thread handle
4203

4204 4205
  @details
  Create field translation for mergeable derived table/view.
4206

4207 4208
  @return FALSE ok.
  @return TRUE an error occur.
unknown's avatar
VIEW  
unknown committed
4209
*/
4210

4211
bool TABLE_LIST::setup_underlying(THD *thd)
unknown's avatar
VIEW  
unknown committed
4212
{
4213
  DBUG_ENTER("TABLE_LIST::setup_underlying");
4214

4215
  if (!view || (!field_translation && merge_underlying_list))
4216
  {
4217
    SELECT_LEX *select= get_single_select();
4218
    
4219
    if (create_field_translation(thd))
4220
      DBUG_RETURN(TRUE);
4221

4222
    /* full text function moving to current select */
4223
    if (select->ftfunc_list->elements)
4224
    {
4225 4226 4227
      Item_func_match *ifm;
      SELECT_LEX *current_select= thd->lex->current_select;
      List_iterator_fast<Item_func_match>
4228
        li(*(select_lex->ftfunc_list));
4229 4230
      while ((ifm= li++))
        current_select->ftfunc_list->push_front(ifm);
unknown's avatar
VIEW  
unknown committed
4231 4232
    }
  }
4233 4234
  DBUG_RETURN(FALSE);
}
unknown's avatar
VIEW  
unknown committed
4235

unknown's avatar
unknown committed
4236

4237
/*
4238
   Prepare where expression of derived table/view
4239

4240
  SYNOPSIS
4241
    TABLE_LIST::prep_where()
4242 4243 4244 4245
    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
4246

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

4250 4251 4252 4253
  RETURN
    FALSE - OK
    TRUE  - error
*/
unknown's avatar
VIEW  
unknown committed
4254

4255
bool TABLE_LIST::prep_where(THD *thd, Item **conds,
4256 4257
                               bool no_where_clause)
{
4258
  DBUG_ENTER("TABLE_LIST::prep_where");
4259
  bool res= FALSE;
4260

4261
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
4262
  {
4263 4264
    if (tbl->is_view_or_derived() &&
        tbl->prep_where(thd, conds, no_where_clause))
4265 4266 4267
    {
      DBUG_RETURN(TRUE);
    }
4268
  }
4269

4270 4271
  if (where)
  {
4272 4273
    if (where->fixed)
      where->update_used_tables();
4274
    if (!where->fixed && where->fix_fields(thd, &where))
unknown's avatar
VIEW  
unknown committed
4275
    {
4276
      DBUG_RETURN(TRUE);
unknown's avatar
VIEW  
unknown committed
4277
    }
unknown's avatar
unknown committed
4278 4279 4280 4281 4282

    /*
      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)
    */
4283
    if (!no_where_clause && !where_processed)
unknown's avatar
VIEW  
unknown committed
4284
    {
4285
      TABLE_LIST *tbl= this;
unknown's avatar
Rename:  
unknown committed
4286 4287
      Query_arena *arena= thd->stmt_arena, backup;
      arena= thd->activate_stmt_arena_if_needed(&backup);  // For easier test
4288

unknown's avatar
unknown committed
4289 4290
      /* Go up to join tree and try to find left join */
      for (; tbl; tbl= tbl->embedding)
unknown's avatar
unknown committed
4291
      {
unknown's avatar
unknown committed
4292 4293 4294 4295
        if (tbl->outer_join)
        {
          /*
            Store WHERE condition to ON expression for outer join, because
4296
            we can't use WHERE to correctly execute left joins on VIEWs and
unknown's avatar
unknown committed
4297 4298 4299
            this expression will not be moved to WHERE condition (i.e. will
            be clean correctly for PS/SP)
          */
4300 4301
          tbl->on_expr= and_conds(tbl->on_expr,
                                  where->copy_andor_structure(thd));
unknown's avatar
unknown committed
4302 4303
          break;
        }
unknown's avatar
unknown committed
4304
      }
unknown's avatar
unknown committed
4305
      if (tbl == 0)
4306 4307
      {
        if (*conds && !(*conds)->fixed)
4308 4309 4310 4311 4312
          res= (*conds)->fix_fields(thd, conds);
        if (!res)
          *conds= and_conds(*conds, where->copy_andor_structure(thd));
        if (*conds && !(*conds)->fixed && !res)
          res= (*conds)->fix_fields(thd, conds);
4313
      }
4314
      if (arena)
unknown's avatar
Rename:  
unknown committed
4315
        thd->restore_active_arena(arena, &backup);
4316
      where_processed= TRUE;
unknown's avatar
VIEW  
unknown committed
4317 4318
    }
  }
4319

4320
  DBUG_RETURN(res);
4321 4322
}

4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344
/**
  Check that table/view is updatable and if it has single
  underlying tables/views it is also updatable

  @return Result of the check.
*/

bool TABLE_LIST::single_table_updatable()
{
  if (!updatable)
    return false;
  if (view_tables && view_tables->elements == 1)
  {
    /*
      We need to check deeply only single table views. Multi-table views
      will be turned to multi-table updates and then checked by leaf tables
    */
    return view_tables->head()->single_table_updatable();
  }
  return true;
}

4345

unknown's avatar
unknown committed
4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373
/*
  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);
4374
  if (!table->view)
unknown's avatar
unknown committed
4375
    DBUG_RETURN(cond);
4376 4377 4378
  for (TABLE_LIST *tbl= (TABLE_LIST*)table->view->select_lex.table_list.first;
       tbl;
       tbl= tbl->next_local)
unknown's avatar
unknown committed
4379 4380 4381 4382 4383 4384 4385 4386 4387
  {
    if (tbl->view && !is_cascaded)
      continue;
    cond= and_conds(cond, merge_on_conds(thd, tbl, is_cascaded));
  }
  DBUG_RETURN(cond);
}


4388 4389 4390 4391
/*
  Prepare check option expression of table

  SYNOPSIS
4392
    TABLE_LIST::prep_check_option()
4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403
    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
4404 4405
    This method builds check option condition to use it later on
    every call (usual execution or every SP/PS call).
4406
    This method have to be called after WHERE preparation
4407
    (TABLE_LIST::prep_where)
unknown's avatar
VIEW  
unknown committed
4408

4409 4410 4411 4412 4413
  RETURN
    FALSE - OK
    TRUE  - error
*/

4414
bool TABLE_LIST::prep_check_option(THD *thd, uint8 check_opt_type)
4415
{
4416
  DBUG_ENTER("TABLE_LIST::prep_check_option");
unknown's avatar
unknown committed
4417
  bool is_cascaded= check_opt_type == VIEW_CHECK_CASCADED;
4418
  TABLE_LIST *merge_underlying_list= view->select_lex.get_table_list();
4419
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
4420
  {
4421
    /* see comment of check_opt_type parameter */
unknown's avatar
unknown committed
4422 4423 4424
    if (tbl->view && tbl->prep_check_option(thd, (is_cascaded ?
                                                  VIEW_CHECK_CASCADED :
                                                  VIEW_CHECK_NONE)))
4425
      DBUG_RETURN(TRUE);
4426
  }
unknown's avatar
VIEW  
unknown committed
4427

unknown's avatar
unknown committed
4428
  if (check_opt_type && !check_option_processed)
4429
  {
unknown's avatar
unknown committed
4430 4431 4432
    Query_arena *arena= thd->stmt_arena, backup;
    arena= thd->activate_stmt_arena_if_needed(&backup);  // For easier test

4433 4434
    if (where)
    {
unknown's avatar
unknown committed
4435
      check_option= where->copy_andor_structure(thd);
4436
    }
unknown's avatar
unknown committed
4437
    if (is_cascaded)
4438
    {
4439
      for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
4440 4441
      {
        if (tbl->check_option)
unknown's avatar
unknown committed
4442
          check_option= and_conds(check_option, tbl->check_option);
4443 4444
      }
    }
unknown's avatar
unknown committed
4445 4446 4447 4448 4449 4450 4451
    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;

4452 4453 4454 4455 4456 4457
  }

  if (check_option)
  {
    const char *save_where= thd->where;
    thd->where= "check option";
4458
    if ((!check_option->fixed &&
4459
         check_option->fix_fields(thd, &check_option)) ||
4460 4461 4462 4463 4464
        check_option->check_cols(1))
    {
      DBUG_RETURN(TRUE);
    }
    thd->where= save_where;
4465
  }
4466 4467 4468
  DBUG_RETURN(FALSE);
}

4469

4470
/**
Martin Hansson's avatar
 
Martin Hansson committed
4471 4472 4473 4474
  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
4475
  execution of SHOW CREATE VIEW, while the mechanism using this method is
Martin Hansson's avatar
 
Martin Hansson committed
4476
  handles SELECT from views. The two methods should not clash.
4477

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

4480
  @pre This method can be called only if there is an error.
4481 4482
*/

4483
void TABLE_LIST::hide_view_error(THD *thd)
4484
{
4485
  if (thd->killed || thd->get_internal_handler())
Martin Hansson's avatar
 
Martin Hansson committed
4486
    return;
4487
  /* Hide "Unknown column" or "Unknown function" error */
4488
  DBUG_ASSERT(thd->is_error());
4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504
  switch (thd->get_stmt_da()->sql_errno()) {
    case ER_BAD_FIELD_ERROR:
    case ER_SP_DOES_NOT_EXIST:
    case ER_FUNC_INEXISTENT_NAME_COLLISION:
    case ER_PROCACCESS_DENIED_ERROR:
    case ER_COLUMNACCESS_DENIED_ERROR:
    case ER_TABLEACCESS_DENIED_ERROR:
    case ER_TABLE_NOT_LOCKED:
    case ER_NO_SUCH_TABLE:
    {
      TABLE_LIST *top= top_table();
      thd->clear_error();
      my_error(ER_VIEW_INVALID, MYF(0),
               top->view_db.str, top->view_name.str);
      break;
    }
4505

4506 4507 4508 4509 4510 4511 4512 4513 4514
    case ER_NO_DEFAULT_FOR_FIELD:
    {
      TABLE_LIST *top= top_table();
      thd->clear_error();
      // TODO: make correct error message
      my_error(ER_NO_DEFAULT_FOR_VIEW_FIELD, MYF(0),
               top->view_db.str, top->view_name.str);
      break;
    }
4515
  }
unknown's avatar
VIEW  
unknown committed
4516 4517 4518
}


4519 4520 4521 4522 4523
/*
  Find underlying base tables (TABLE_LIST) which represent given
  table_to_find (TABLE)

  SYNOPSIS
4524
    TABLE_LIST::find_underlying_table()
4525 4526 4527 4528 4529 4530 4531
    table_to_find table to find

  RETURN
    0  table is not found
    found table reference
*/

4532
TABLE_LIST *TABLE_LIST::find_underlying_table(TABLE *table_to_find)
4533 4534
{
  /* is this real table and table which we are looking for? */
4535
  if (table == table_to_find && view == 0)
4536
    return this;
4537 4538
  if (!view)
    return 0;
4539

4540 4541 4542
  for (TABLE_LIST *tbl= view->select_lex.get_table_list();
       tbl;
       tbl= tbl->next_local)
4543 4544 4545 4546 4547 4548 4549 4550
  {
    TABLE_LIST *result;
    if ((result= tbl->find_underlying_table(table_to_find)))
      return result;
  }
  return 0;
}

unknown's avatar
unknown committed
4551
/*
4552
  cleanup items belonged to view fields translation table
unknown's avatar
unknown committed
4553 4554

  SYNOPSIS
4555
    TABLE_LIST::cleanup_items()
unknown's avatar
unknown committed
4556 4557
*/

4558
void TABLE_LIST::cleanup_items()
unknown's avatar
unknown committed
4559 4560 4561 4562
{
  if (!field_translation)
    return;

4563 4564 4565
  for (Field_translator *transl= field_translation;
       transl < field_translation_end;
       transl++)
4566
    transl->item->walk(&Item::cleanup_processor, 0, 0);
unknown's avatar
unknown committed
4567 4568 4569
}


unknown's avatar
unknown committed
4570 4571 4572 4573
/*
  check CHECK OPTION condition

  SYNOPSIS
4574
    TABLE_LIST::view_check_option()
unknown's avatar
unknown committed
4575 4576 4577 4578 4579 4580 4581 4582
    ignore_failure ignore check option fail

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

4583
int TABLE_LIST::view_check_option(THD *thd, bool ignore_failure)
unknown's avatar
unknown committed
4584 4585 4586
{
  if (check_option && check_option->val_int() == 0)
  {
4587
    TABLE_LIST *main_view= top_table();
unknown's avatar
unknown committed
4588 4589
    if (ignore_failure)
    {
4590
      push_warning_printf(thd, Sql_condition::WARN_LEVEL_WARN,
unknown's avatar
unknown committed
4591
                          ER_VIEW_CHECK_FAILED, ER(ER_VIEW_CHECK_FAILED),
4592
                          main_view->view_db.str, main_view->view_name.str);
unknown's avatar
unknown committed
4593 4594
      return(VIEW_CHECK_SKIP);
    }
4595 4596 4597
    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
4598 4599 4600 4601 4602
  }
  return(VIEW_CHECK_OK);
}


4603
/*
4604
  Find table in underlying tables by mask and check that only this
unknown's avatar
unknown committed
4605
  table belong to given mask
4606 4607

  SYNOPSIS
4608
    TABLE_LIST::check_single_table()
4609
    table_arg	reference on variable where to store found table
4610 4611 4612
		(should be 0 on call, to find table, or point to table for
		unique test)
    map         bit mask of tables
4613
    view_arg    view for which we are looking table
4614 4615

  RETURN
unknown's avatar
unknown committed
4616 4617
    FALSE table not found or found only one
    TRUE  found several tables
4618 4619
*/

4620
bool TABLE_LIST::check_single_table(TABLE_LIST **table_arg,
4621
                                       table_map map,
4622
                                       TABLE_LIST *view_arg)
4623
{
4624 4625 4626 4627 4628 4629
  if (!select_lex)
    return FALSE;
  DBUG_ASSERT(is_merged_derived());
  for (TABLE_LIST *tbl= get_single_select()->get_table_list();
       tbl;
       tbl= tbl->next_local)
4630
  {
unknown's avatar
unknown committed
4631 4632 4633 4634 4635 4636 4637 4638
    /*
      Merged view has also temporary table attached (in 5.2 if it has table
      then it was real table), so we have filter such temporary tables out
      by checking that it is not merged view
    */
    if (tbl->table &&
        !(tbl->is_view() &&
          tbl->is_merged_derived()))
4639 4640 4641
    {
      if (tbl->table->map & map)
      {
4642
	if (*table_arg)
unknown's avatar
unknown committed
4643
	  return TRUE;
4644 4645
        *table_arg= tbl;
        tbl->check_option= view_arg->check_option;
4646 4647
      }
    }
4648
    else if (tbl->check_single_table(table_arg, map, view_arg))
unknown's avatar
unknown committed
4649
      return TRUE;
4650
  }
unknown's avatar
unknown committed
4651
  return FALSE;
4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666
}


/*
  Set insert_values buffer

  SYNOPSIS
    set_insert_values()
    mem_root   memory pool for allocating

  RETURN
    FALSE - OK
    TRUE  - out of memory
*/

4667
bool TABLE_LIST::set_insert_values(MEM_ROOT *mem_root)
4668 4669 4670 4671
{
  if (table)
  {
    if (!table->insert_values &&
4672
        !(table->insert_values= (uchar *)alloc_root(mem_root,
4673
                                                   table->s->rec_buff_length)))
4674 4675 4676 4677
      return TRUE;
  }
  else
  {
4678 4679 4680 4681
    DBUG_ASSERT(is_view_or_derived() && is_merged_derived());
    for (TABLE_LIST *tbl= (TABLE_LIST*)view->select_lex.table_list.first;
         tbl;
         tbl= tbl->next_local)
4682 4683 4684 4685 4686 4687 4688
      if (tbl->set_insert_values(mem_root))
        return TRUE;
  }
  return FALSE;
}


unknown's avatar
unknown committed
4689 4690 4691 4692
/*
  Test if this is a leaf with respect to name resolution.

  SYNOPSIS
4693
    TABLE_LIST::is_leaf_for_name_resolution()
unknown's avatar
unknown committed
4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704

  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.
*/
4705
bool TABLE_LIST::is_leaf_for_name_resolution()
unknown's avatar
unknown committed
4706
{
4707
  return (is_merged_derived() || is_natural_join || is_join_columns_complete ||
unknown's avatar
unknown committed
4708 4709 4710 4711 4712 4713 4714 4715 4716
          !nested_join);
}


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

  SYNOPSIS
4717
    TABLE_LIST::first_leaf_for_name_resolution()
unknown's avatar
unknown committed
4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729

  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
4730
    If 'this' is a nested table reference - the left-most child of
unknown's avatar
unknown committed
4731
      the tree rooted in 'this',
4732
    else return 'this'
unknown's avatar
unknown committed
4733 4734
*/

4735
TABLE_LIST *TABLE_LIST::first_leaf_for_name_resolution()
unknown's avatar
unknown committed
4736
{
4737 4738 4739
  TABLE_LIST *cur_table_ref;
  NESTED_JOIN *cur_nested_join;
  LINT_INIT(cur_table_ref);
unknown's avatar
unknown committed
4740

4741
  if (is_leaf_for_name_resolution())
unknown's avatar
unknown committed
4742
    return this;
4743
  DBUG_ASSERT(nested_join);
unknown's avatar
unknown committed
4744

4745 4746 4747
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
unknown's avatar
unknown committed
4748 4749 4750 4751
  {
    List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
    cur_table_ref= it++;
    /*
4752 4753 4754 4755
      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
4756 4757 4758
    */
    if (!(cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
4759
      TABLE_LIST *next;
unknown's avatar
unknown committed
4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774
      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
4775
    TABLE_LIST::last_leaf_for_name_resolution()
unknown's avatar
unknown committed
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792

  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'
*/

4793
TABLE_LIST *TABLE_LIST::last_leaf_for_name_resolution()
unknown's avatar
unknown committed
4794 4795
{
  TABLE_LIST *cur_table_ref= this;
4796
  NESTED_JOIN *cur_nested_join;
unknown's avatar
unknown committed
4797

4798
  if (is_leaf_for_name_resolution())
unknown's avatar
unknown committed
4799
    return this;
4800
  DBUG_ASSERT(nested_join);
unknown's avatar
unknown committed
4801

4802 4803 4804
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
unknown's avatar
unknown committed
4805
  {
4806
    cur_table_ref= cur_nested_join->join_list.head();
unknown's avatar
unknown committed
4807
    /*
4808 4809 4810
      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
4811 4812 4813 4814
    */
    if ((cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
      List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
4815
      TABLE_LIST *next;
unknown's avatar
unknown committed
4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826
      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;
}


4827 4828 4829 4830 4831 4832 4833 4834
/*
  Register access mode which we need for underlying tables

  SYNOPSIS
    register_want_access()
    want_access          Acess which we require
*/

4835
void TABLE_LIST::register_want_access(ulong want_access)
4836 4837 4838 4839 4840 4841 4842 4843 4844
{
  /* 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;
  }
4845 4846 4847 4848 4849
  if (!view)
    return;
  for (TABLE_LIST *tbl= view->select_lex.get_table_list();
       tbl;
       tbl= tbl->next_local)
4850 4851 4852 4853 4854
    tbl->register_want_access(want_access);
}


/*
unknown's avatar
unknown committed
4855
  Load security context information for this view
4856 4857

  SYNOPSIS
Sergei Golubchik's avatar
Sergei Golubchik committed
4858
    TABLE_LIST::prepare_view_security_context()
4859 4860 4861 4862 4863 4864 4865 4866
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
Sergei Golubchik's avatar
Sergei Golubchik committed
4867
bool TABLE_LIST::prepare_view_security_context(THD *thd)
4868
{
Sergei Golubchik's avatar
Sergei Golubchik committed
4869
  DBUG_ENTER("TABLE_LIST::prepare_view_security_context");
4870 4871 4872 4873 4874 4875 4876
  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);
4877 4878
    if (acl_getroot(view_sctx, definer.user.str, definer.host.str,
                                definer.host.str, thd->db))
4879
    {
4880 4881
      if ((thd->lex->sql_command == SQLCOM_SHOW_CREATE) ||
          (thd->lex->sql_command == SQLCOM_SHOW_FIELDS))
4882
      {
4883
        push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE, 
4884 4885 4886 4887 4888 4889
                            ER_NO_SUCH_USER, 
                            ER(ER_NO_SUCH_USER),
                            definer.user.str, definer.host.str);
      }
      else
      {
4890 4891 4892 4893 4894 4895 4896
        if (thd->security_ctx->master_access & SUPER_ACL)
        {
          my_error(ER_NO_SUCH_USER, MYF(0), definer.user.str, definer.host.str);

        }
        else
        {
4897 4898 4899 4900 4901 4902 4903 4904 4905
          if (thd->password == 2)
            my_error(ER_ACCESS_DENIED_NO_PASSWORD_ERROR, MYF(0),
                     thd->security_ctx->priv_user,
                     thd->security_ctx->priv_host);
          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)));
4906
        }
4907 4908
        DBUG_RETURN(TRUE);
      }
4909 4910 4911
    }
  }
  DBUG_RETURN(FALSE);
4912

4913 4914 4915 4916 4917 4918 4919 4920
}
#endif


/*
  Find security context of current view

  SYNOPSIS
4921
    TABLE_LIST::find_view_security_context()
4922 4923 4924 4925 4926
    thd                  [in] thread handler

*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
4927
Security_context *TABLE_LIST::find_view_security_context(THD *thd)
4928 4929 4930
{
  Security_context *sctx;
  TABLE_LIST *upper_view= this;
4931
  DBUG_ENTER("TABLE_LIST::find_view_security_context");
4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959

  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
4960
    TABLE_LIST::prepare_security()
4961 4962 4963 4964 4965 4966 4967
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

4968
bool TABLE_LIST::prepare_security(THD *thd)
4969 4970 4971
{
  List_iterator_fast<TABLE_LIST> tb(*view_tables);
  TABLE_LIST *tbl;
4972
  DBUG_ENTER("TABLE_LIST::prepare_security");
4973 4974 4975 4976
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  Security_context *save_security_ctx= thd->security_ctx;

  DBUG_ASSERT(!prelocking_placeholder);
Sergei Golubchik's avatar
Sergei Golubchik committed
4977
  if (prepare_view_security_context(thd))
4978 4979 4980 4981 4982
    DBUG_RETURN(TRUE);
  thd->security_ctx= find_view_security_context(thd);
  while ((tbl= tb++))
  {
    DBUG_ASSERT(tbl->referencing_view);
4983
    char *local_db, *local_table_name;
4984 4985
    if (tbl->view)
    {
4986 4987
      local_db= tbl->view_db.str;
      local_table_name= tbl->view_name.str;
4988 4989 4990
    }
    else
    {
4991 4992
      local_db= tbl->db;
      local_table_name= tbl->table_name;
4993
    }
4994 4995
    fill_effective_table_privileges(thd, &tbl->grant, local_db,
                                    local_table_name);
4996 4997 4998 4999 5000 5001 5002 5003
    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
5004
  DBUG_RETURN(FALSE);
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
#ifndef DBUG_OFF
void TABLE_LIST::set_check_merged()
{
  DBUG_ASSERT(derived);
  /*
    It is not simple to check all, but at least this should be checked:
    this select is not excluded or the exclusion came from above.
  */
  DBUG_ASSERT(!derived->first_select()->exclude_from_table_unique_test ||
              derived->outer_select()->
              exclude_from_table_unique_test);
}
#endif

void TABLE_LIST::set_check_materialized()
{
  DBUG_ASSERT(derived);
  if (!derived->first_select()->exclude_from_table_unique_test)
    derived->set_unique_exclude();
  else
  {
    /*
      The subtree should be already excluded
    */
    DBUG_ASSERT(!derived->first_select()->first_inner_unit() ||
                derived->first_select()->first_inner_unit()->first_select()->
                exclude_from_table_unique_test);
  }
}

unknown's avatar
unknown committed
5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049
TABLE *TABLE_LIST::get_real_join_table()
{
  TABLE_LIST *tbl= this;
  while (tbl->table == NULL || tbl->table->reginfo.join_tab == NULL)
  {
    if (tbl->view == NULL && tbl->derived == NULL)
      break;
    /* we do not support merging of union yet */
    DBUG_ASSERT(tbl->view == NULL ||
               tbl->view->select_lex.next_select() == NULL);
    DBUG_ASSERT(tbl->derived == NULL ||
               tbl->derived->first_select()->next_select() == NULL);

unknown's avatar
unknown committed
5050
    {
unknown's avatar
unknown committed
5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075
      List_iterator_fast<TABLE_LIST> ti;
      {
        List_iterator_fast<TABLE_LIST>
          ti(tbl->view != NULL ?
             tbl->view->select_lex.top_join_list :
             tbl->derived->first_select()->top_join_list);
        for (;;)
        {
          tbl= NULL;
          /*
            Find left table in outer join on this level
            (the list is reverted).
          */
          for (TABLE_LIST *t= ti++; t; t= ti++)
            tbl= t;
          /*
            It is impossible that the list is empty
            so tbl can't be NULL after above loop.
          */
          if (!tbl->nested_join)
            break;
          /* go deeper if we've found nested join */
          ti= tbl->nested_join->join_list;
        }
      }
unknown's avatar
unknown committed
5076
    }
unknown's avatar
unknown committed
5077
  }
unknown's avatar
unknown committed
5078

unknown's avatar
unknown committed
5079 5080 5081
  return tbl->table;
}

5082

unknown's avatar
unknown committed
5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093
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;
}


5094
Natural_join_column::Natural_join_column(Item_field *field_param,
unknown's avatar
unknown committed
5095 5096
                                         TABLE_LIST *tab)
{
5097
  DBUG_ASSERT(tab->table == field_param->field->table);
unknown's avatar
unknown committed
5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111
  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;
  }
5112 5113

  return table_field->field_name;
unknown's avatar
unknown committed
5114 5115 5116 5117 5118 5119 5120 5121
}


Item *Natural_join_column::create_item(THD *thd)
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
5122 5123
    return create_view_field(thd, table_ref, &view_field->item,
                             view_field->name);
unknown's avatar
unknown committed
5124
  }
5125
  return table_field;
unknown's avatar
unknown committed
5126 5127 5128 5129 5130 5131 5132 5133 5134 5135
}


Field *Natural_join_column::field()
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
    return NULL;
  }
5136
  return table_field->field;
unknown's avatar
unknown committed
5137 5138 5139 5140 5141
}


const char *Natural_join_column::table_name()
{
5142
  DBUG_ASSERT(table_ref);
unknown's avatar
unknown committed
5143 5144 5145 5146 5147 5148 5149 5150
  return table_ref->alias;
}


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

5152
  /*
Konstantin Osipov's avatar
Konstantin Osipov committed
5153
    Test that TABLE_LIST::db is the same as TABLE_SHARE::db to
5154 5155 5156
    ensure consistency. An exception are I_S schema tables, which
    are inconsistent in this respect.
  */
5157
  DBUG_ASSERT(!strcmp(table_ref->db,
5158
                      table_ref->table->s->db.str) ||
5159
              (table_ref->schema_table &&
5160
               is_infoschema_db(table_ref->table->s->db.str,
Sergei Golubchik's avatar
Sergei Golubchik committed
5161
                                table_ref->table->s->db.length)) ||
5162
               table_ref->is_materialized_derived());
5163
  return table_ref->db;
unknown's avatar
unknown committed
5164 5165 5166 5167 5168
}


GRANT_INFO *Natural_join_column::grant()
{
5169 5170 5171 5172 5173 5174 5175 5176 5177
/*  if (view_field)
    return &(table_ref->grant);
  return &(table_ref->table->grant);*/
  /*
    Have to check algorithm because merged derived also has
    field_translation.
  */
//if (table_ref->effective_algorithm == DTYPE_ALGORITHM_MERGE)
  if (table_ref->is_merged_derived())
unknown's avatar
unknown committed
5178
    return &(table_ref->grant);
5179
  return &(table_ref->table->grant);
unknown's avatar
unknown committed
5180 5181 5182
}


unknown's avatar
VIEW  
unknown committed
5183 5184
void Field_iterator_view::set(TABLE_LIST *table)
{
unknown's avatar
unknown committed
5185
  DBUG_ASSERT(table->field_translation);
5186
  view= table;
unknown's avatar
VIEW  
unknown committed
5187
  ptr= table->field_translation;
5188
  array_end= table->field_translation_end;
unknown's avatar
VIEW  
unknown committed
5189 5190 5191 5192 5193 5194 5195 5196 5197
}


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


5198
Item *Field_iterator_table::create_item(THD *thd)
unknown's avatar
VIEW  
unknown committed
5199
{
5200 5201 5202 5203 5204 5205 5206 5207
  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;
5208
    select->set_non_agg_field_used(true);
5209 5210
  }
  return item;
unknown's avatar
VIEW  
unknown committed
5211 5212 5213 5214 5215
}


const char *Field_iterator_view::name()
{
5216
  return ptr->name;
unknown's avatar
VIEW  
unknown committed
5217 5218 5219
}


5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234
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)
  {
    /*
5235 5236 5237
      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.
5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254
    */
    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;
5255
  if (save_wrapper)
5256 5257 5258 5259
  {
    DBUG_RETURN(field);
  }
  Item *item= new Item_direct_view_ref(&view->view->select_lex.context,
5260
                                       field_ref, view->alias,
5261 5262 5263 5264 5265
                                       name, view);
  /*
    Force creation of nullable item for the result tmp table for outer joined
    views/derived tables.
  */
Igor Babaev's avatar
Igor Babaev committed
5266
  if (view->table && view->table->maybe_null)
5267 5268
    item->maybe_null= TRUE;
  /* Save item in case we will need to fall back to materialization. */
unknown's avatar
unknown committed
5269
  view->used_items.push_front(item);
5270 5271 5272 5273
  DBUG_RETURN(item);
}


unknown's avatar
unknown committed
5274 5275 5276
void Field_iterator_natural_join::set(TABLE_LIST *table_ref)
{
  DBUG_ASSERT(table_ref->join_columns);
5277 5278
  column_ref_it.init(*(table_ref->join_columns));
  cur_column_ref= column_ref_it++;
unknown's avatar
unknown committed
5279 5280 5281
}


5282 5283
void Field_iterator_natural_join::next()
{
5284
  cur_column_ref= column_ref_it++;
5285 5286
  DBUG_ASSERT(!cur_column_ref || ! cur_column_ref->table_field ||
              cur_column_ref->table_ref->table ==
5287
              cur_column_ref->table_field->field->table);
5288 5289 5290
}


unknown's avatar
unknown committed
5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305
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 ||
5306
                (table_ref->join_columns &&
5307 5308 5309 5310 5311 5312 5313 5314 5315
                 /* 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
5316 5317
    field_it= &natural_join_it;
    DBUG_PRINT("info",("field_it for '%s' is Field_iterator_natural_join",
unknown's avatar
unknown committed
5318
                       table_ref->alias));
unknown's avatar
unknown committed
5319 5320 5321 5322
  }
  /* This is a merge view, so use field_translation. */
  else if (table_ref->field_translation)
  {
5323
    DBUG_ASSERT(table_ref->is_merged_derived());
unknown's avatar
unknown committed
5324 5325
    field_it= &view_field_it;
    DBUG_PRINT("info", ("field_it for '%s' is Field_iterator_view",
unknown's avatar
unknown committed
5326
                        table_ref->alias));
unknown's avatar
unknown committed
5327 5328 5329 5330 5331 5332 5333
  }
  /* 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
5334
                        table_ref->alias));
unknown's avatar
unknown committed
5335
  }
5336
  field_it->set(table_ref);
unknown's avatar
unknown committed
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
  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();
  }
}


5369
const char *Field_iterator_table_ref::get_table_name()
unknown's avatar
unknown committed
5370 5371 5372 5373 5374
{
  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();
5375 5376

  DBUG_ASSERT(!strcmp(table_ref->table_name,
unknown's avatar
unknown committed
5377
                      table_ref->table->s->table_name.str));
5378
  return table_ref->table_name;
unknown's avatar
unknown committed
5379 5380 5381
}


5382
const char *Field_iterator_table_ref::get_db_name()
unknown's avatar
unknown committed
5383 5384 5385 5386 5387
{
  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();
5388

5389
  /*
Konstantin Osipov's avatar
Konstantin Osipov committed
5390
    Test that TABLE_LIST::db is the same as TABLE_SHARE::db to
5391 5392 5393
    ensure consistency. An exception are I_S schema tables, which
    are inconsistent in this respect.
  */
5394
  DBUG_ASSERT(!strcmp(table_ref->db, table_ref->table->s->db.str) ||
5395
              (table_ref->schema_table &&
5396 5397
               is_infoschema_db(table_ref->table->s->db.str,
                                table_ref->table->s->db.length)));
5398

5399
  return table_ref->db;
unknown's avatar
unknown committed
5400 5401 5402 5403 5404 5405 5406 5407 5408
}


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();
5409
  return &(table_ref->table->grant);
unknown's avatar
unknown committed
5410 5411 5412 5413 5414 5415 5416 5417 5418
}


/*
  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
5419 5420
    parent_table_ref  the parent table reference over which the
                      iterator is iterating
unknown's avatar
unknown committed
5421 5422

  DESCRIPTION
unknown's avatar
unknown committed
5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443
    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
5444 5445

  RETURN
5446 5447
    #     Pointer to a column of a natural join (or its operand)
    NULL  No memory to allocate the column
unknown's avatar
unknown committed
5448 5449 5450
*/

Natural_join_column *
5451
Field_iterator_table_ref::get_or_create_column_ref(THD *thd, TABLE_LIST *parent_table_ref)
unknown's avatar
unknown committed
5452
{
5453
  Natural_join_column *nj_col;
unknown's avatar
unknown committed
5454 5455 5456 5457
  bool is_created= TRUE;
  uint field_count;
  TABLE_LIST *add_table_ref= parent_table_ref ?
                             parent_table_ref : table_ref;
unknown's avatar
unknown committed
5458
  LINT_INIT(field_count);
unknown's avatar
unknown committed
5459

unknown's avatar
unknown committed
5460
  if (field_it == &table_field_it)
5461 5462
  {
    /* The field belongs to a stored table. */
5463
    Field *tmp_field= table_field_it.field();
5464 5465 5466 5467 5468
    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
5469
    field_count= table_ref->table->s->fields;
5470 5471 5472 5473 5474 5475
  }
  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
5476 5477
    field_count= table_ref->field_translation_end -
                 table_ref->field_translation;
5478 5479 5480 5481 5482 5483 5484 5485
  }
  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
5486 5487
    DBUG_ASSERT(table_ref->is_join_columns_complete);
    is_created= FALSE;
5488 5489 5490
    nj_col= natural_join_it.column_ref();
    DBUG_ASSERT(nj_col);
  }
5491
  DBUG_ASSERT(!nj_col->table_field ||
5492
              nj_col->table_ref->table == nj_col->table_field->field->table);
unknown's avatar
unknown committed
5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522

  /*
    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;
  }

5523
  return nj_col;
unknown's avatar
unknown committed
5524 5525 5526
}


5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556
/*
  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 ||
5557
               nj_col->table_ref->table == nj_col->table_field->field->table));
5558 5559 5560
  return nj_col;
}

5561 5562 5563 5564 5565 5566
/*****************************************************************************
  Functions to handle column usage bitmaps (read_set, write_set etc...)
*****************************************************************************/

/* Reset all columns bitmaps */

Konstantin Osipov's avatar
Konstantin Osipov committed
5567
void TABLE::clear_column_bitmaps()
5568 5569 5570 5571 5572
{
  /*
    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
5573
    bitmap_clear_all(&table->def_vcol_set);
5574
  */
Igor Babaev's avatar
Igor Babaev committed
5575 5576
  bzero((char*) def_read_set.bitmap, s->column_bitmap_size*3);
  column_bitmaps_set(&def_read_set, &def_write_set, &def_vcol_set);
5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588
}


/*
  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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5589
void TABLE::prepare_for_position()
5590
{
Konstantin Osipov's avatar
Konstantin Osipov committed
5591
  DBUG_ENTER("TABLE::prepare_for_position");
5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609

  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
Konstantin Osipov's avatar
Konstantin Osipov committed
5610 5611
    bitmaps are reset, for example with TABLE::clear_column_bitmaps()
    or TABLE::restore_column_maps_after_mark_index()
5612 5613
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5614
void TABLE::mark_columns_used_by_index(uint index)
5615 5616
{
  MY_BITMAP *bitmap= &tmp_set;
Konstantin Osipov's avatar
Konstantin Osipov committed
5617
  DBUG_ENTER("TABLE::mark_columns_used_by_index");
5618

5619
  enable_keyread();
5620 5621 5622 5623 5624 5625 5626
  bitmap_clear_all(bitmap);
  mark_columns_used_by_index_no_reset(index, bitmap);
  column_bitmaps_set(bitmap, bitmap);
  DBUG_VOID_RETURN;
}


5627 5628 5629 5630 5631 5632 5633 5634
/*
  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().
*/

5635
void TABLE::add_read_columns_used_by_index(uint index)
5636 5637
{
  MY_BITMAP *bitmap= &tmp_set;
5638
  DBUG_ENTER("TABLE::add_read_columns_used_by_index");
5639

Michael Widenius's avatar
Michael Widenius committed
5640
  enable_keyread();
5641 5642 5643 5644 5645 5646 5647
  bitmap_copy(bitmap, read_set);
  mark_columns_used_by_index_no_reset(index, bitmap);
  column_bitmaps_set(bitmap, write_set);
  DBUG_VOID_RETURN;
}


5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658
/*
  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
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5659
void TABLE::restore_column_maps_after_mark_index()
5660
{
Konstantin Osipov's avatar
Konstantin Osipov committed
5661
  DBUG_ENTER("TABLE::restore_column_maps_after_mark_index");
5662

5663
  disable_keyread();
5664 5665 5666 5667 5668 5669 5670 5671 5672 5673
  default_column_bitmaps();
  file->column_bitmaps_signal();
  DBUG_VOID_RETURN;
}


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

Konstantin Osipov's avatar
Konstantin Osipov committed
5674
void TABLE::mark_columns_used_by_index_no_reset(uint index,
5675 5676 5677 5678
                                                   MY_BITMAP *bitmap)
{
  KEY_PART_INFO *key_part= key_info[index].key_part;
  KEY_PART_INFO *key_part_end= (key_part +
5679
                                key_info[index].user_defined_key_parts);
5680
  for (;key_part != key_part_end; key_part++)
5681
  {
5682
    bitmap_set_bit(bitmap, key_part->fieldnr-1);
5683 5684 5685 5686 5687 5688
    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);
  }
5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699
}


/*
  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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5700
void TABLE::mark_auto_increment_column()
5701 5702 5703 5704 5705 5706 5707 5708
{
  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);
5709
  if (s->next_number_keypart)
5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732
    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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5733
void TABLE::mark_columns_needed_for_delete()
5734 5735
{
  if (triggers)
5736
    triggers->mark_fields_used(TRG_EVENT_DELETE);
5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782
  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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5783
void TABLE::mark_columns_needed_for_update()
5784 5785 5786
{
  DBUG_ENTER("mark_columns_needed_for_update");
  if (triggers)
5787
    triggers->mark_fields_used(TRG_EVENT_UPDATE);
5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814
  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();
    }
  }
5815
  /* Mark all virtual columns needed for update */
Igor Babaev's avatar
Igor Babaev committed
5816
  mark_virtual_columns_for_write(FALSE);
5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827
  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.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
5828
void TABLE::mark_columns_needed_for_insert()
5829 5830 5831
{
  if (triggers)
  {
5832 5833 5834 5835 5836 5837 5838 5839
    /*
      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);
5840 5841 5842
  }
  if (found_next_number_field)
    mark_auto_increment_column();
5843
  /* Mark virtual columns for insert */
Igor Babaev's avatar
Igor Babaev committed
5844
  mark_virtual_columns_for_write(TRUE);
5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865
}


/*
   @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
*/

Sergei Golubchik's avatar
Sergei Golubchik committed
5866
bool TABLE::mark_virtual_col(Field *field)
5867 5868 5869
{
  bool res;
  DBUG_ASSERT(field->vcol_info);
Igor Babaev's avatar
Igor Babaev committed
5870
  if (!(res= bitmap_fast_test_and_set(vcol_set, field->field_index)))
5871 5872 5873 5874 5875 5876
  {
    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;
5877 5878
}

5879

5880 5881
/* 
  @brief Mark virtual columns for update/insert commands
Igor Babaev's avatar
Igor Babaev committed
5882 5883
    
  @param insert_fl    <-> virtual columns are marked for insert command 
5884 5885 5886 5887

  @details
    The function marks virtual columns used in a update/insert commands
    in the vcol_set bitmap.
Igor Babaev's avatar
Igor Babaev committed
5888 5889
    For an insert command a virtual column is always marked in write_set if
    it is a stored column.
5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907
    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.           
*/

Sergei Golubchik's avatar
Sergei Golubchik committed
5908
void TABLE::mark_virtual_columns_for_write(bool insert_fl)
5909 5910 5911 5912
{
  Field **vfield_ptr, *tmp_vfield;
  bool bitmap_updated= FALSE;

5913 5914 5915
  if (!vfield)
    return;

Igor Babaev's avatar
Igor Babaev committed
5916 5917 5918
  if (!vfield)
    return;

5919 5920 5921 5922 5923 5924 5925
  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
5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940
      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)
5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951
      {
        bitmap_set_bit(write_set, tmp_vfield->field_index);
        mark_virtual_col(tmp_vfield);
        bitmap_updated= TRUE;
      }
    } 
  }
  if (bitmap_updated)
    file->column_bitmaps_signal();
}

unknown's avatar
unknown committed
5952

5953
/**
5954 5955 5956 5957
  Check if a table has a default function either for INSERT or UPDATE-like
  operation
  @retval true  there is a default function
  @retval false there is no default function
5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978
*/

bool TABLE::has_default_function(bool is_update)
{
  Field **dfield_ptr, *dfield;
  bool res= false;
  for (dfield_ptr= default_field; *dfield_ptr; dfield_ptr++)
  {
    dfield= (*dfield_ptr);
    if (is_update)
      res= dfield->has_update_default_function();
    else
      res= dfield->has_insert_default_function();
    if (res)
      return res;
  }
  return res;
}


/**
5979
  Add all fields that have a default function to the table write set.
5980 5981 5982 5983 5984 5985 5986 5987 5988
*/

void TABLE::mark_default_fields_for_write()
{
  Field **dfield_ptr, *dfield;
  enum_sql_command cmd= in_use->lex->sql_command;
  for (dfield_ptr= default_field; *dfield_ptr; dfield_ptr++)
  {
    dfield= (*dfield_ptr);
5989
    if (((sql_command_flags[cmd] & CF_INSERTS_DATA) &&
5990
         dfield->has_insert_default_function()) ||
5991
        ((sql_command_flags[cmd] & CF_UPDATES_DATA) &&
5992 5993 5994 5995 5996 5997
         dfield->has_update_default_function()))
      bitmap_set_bit(write_set, dfield->field_index);
  }
}


unknown's avatar
unknown committed
5998
/**
5999
  @brief
unknown's avatar
unknown committed
6000 6001
  Allocate space for keys

Igor Babaev's avatar
Igor Babaev committed
6002
  @param key_count  number of keys to allocate additionally
unknown's avatar
unknown committed
6003 6004

  @details
Igor Babaev's avatar
Igor Babaev committed
6005 6006
  The function allocates memory  to fit additionally 'key_count' keys 
  for this table.
unknown's avatar
unknown committed
6007

Igor Babaev's avatar
Igor Babaev committed
6008 6009
  @return FALSE   space was successfully allocated
  @return TRUE    an error occur
unknown's avatar
unknown committed
6010 6011 6012 6013
*/

bool TABLE::alloc_keys(uint key_count)
{
Igor Babaev's avatar
Igor Babaev committed
6014 6015 6016 6017 6018
  key_info= (KEY*) alloc_root(&mem_root, sizeof(KEY)*(s->keys+key_count));
  if (s->keys)
    memmove(key_info, s->key_info, sizeof(KEY)*s->keys);
  s->key_info= key_info;
  max_keys= s->keys+key_count;
unknown's avatar
unknown committed
6019 6020 6021 6022
  return !(key_info);
}


6023 6024
void TABLE::create_key_part_by_field(KEY *keyinfo,
                                     KEY_PART_INFO *key_part_info,
Igor Babaev's avatar
Igor Babaev committed
6025
                                     Field *field, uint fieldnr)
6026 6027 6028 6029 6030 6031
{   
  field->flags|= PART_KEY_FLAG;
  key_part_info->null_bit= field->null_bit;
  key_part_info->null_offset= (uint) (field->null_ptr -
                                      (uchar*) record[0]);
  key_part_info->field= field;
Igor Babaev's avatar
Igor Babaev committed
6032
  key_part_info->fieldnr= fieldnr;
6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052
  key_part_info->offset= field->offset(record[0]);
  key_part_info->length=   (uint16) field->pack_length();
  keyinfo->key_length+= key_part_info->length;
  key_part_info->key_part_flag= 0;
  /* TODO:
    The below method of computing the key format length of the
    key part is a copy/paste from opt_range.cc, and table.cc.
    This should be factored out, e.g. as a method of Field.
    In addition it is not clear if any of the Field::*_length
    methods is supposed to compute the same length. If so, it
    might be reused.
  */
  key_part_info->store_length= key_part_info->length;

  if (field->real_maybe_null())
  {
    key_part_info->store_length+= HA_KEY_NULL_LENGTH;
    keyinfo->key_length+= HA_KEY_NULL_LENGTH;
  }
  if (field->type() == MYSQL_TYPE_BLOB || 
6053
      field->type() == MYSQL_TYPE_GEOMETRY ||
6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070
      field->real_type() == MYSQL_TYPE_VARCHAR)
  {
    key_part_info->store_length+= HA_KEY_BLOB_LENGTH;
    keyinfo->key_length+= HA_KEY_BLOB_LENGTH; // ???
    key_part_info->key_part_flag|=
      field->type() == MYSQL_TYPE_BLOB ? HA_BLOB_PART: HA_VAR_LENGTH_PART;
  }

  key_part_info->type=     (uint8) field->key_type();
  key_part_info->key_type =
    ((ha_base_keytype) key_part_info->type == HA_KEYTYPE_TEXT ||
    (ha_base_keytype) key_part_info->type == HA_KEYTYPE_VARTEXT1 ||
    (ha_base_keytype) key_part_info->type == HA_KEYTYPE_VARTEXT2) ?
    0 : FIELDFLAG_BINARY;
}


unknown's avatar
unknown committed
6071
/**
6072 6073
  @brief
  Add one key to a temporary table
unknown's avatar
unknown committed
6074 6075 6076 6077 6078 6079

  @param key            the number of the key
  @param key_parts      number of components of the key
  @param next_field_no  the call-back function that returns the number of
                        the field used as the next component of the key
  @param arg            the argument for the above function
Igor Babaev's avatar
Igor Babaev committed
6080
  @param unique         TRUE <=> it is a unique index
unknown's avatar
unknown committed
6081 6082

  @details
Igor Babaev's avatar
Igor Babaev committed
6083 6084 6085
  The function adds a new key to the table that is assumed to be a temporary
  table. At each its invocation the call-back function must return
  the number of the field that is used as the next component of this key.
unknown's avatar
unknown committed
6086 6087 6088

  @return FALSE is a success
  @return TRUE if a failure
6089

unknown's avatar
unknown committed
6090 6091 6092
*/

bool TABLE::add_tmp_key(uint key, uint key_parts,
unknown's avatar
unknown committed
6093 6094
                        uint (*next_field_no) (uchar *), uchar *arg,
                        bool unique)
unknown's avatar
unknown committed
6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108
{
  DBUG_ASSERT(key < max_keys);

  char buf[NAME_CHAR_LEN];
  KEY* keyinfo;
  Field **reg_field;
  uint i;
  bool key_start= TRUE;
  KEY_PART_INFO* key_part_info=
      (KEY_PART_INFO*) alloc_root(&mem_root, sizeof(KEY_PART_INFO)*key_parts);
  if (!key_part_info)
    return TRUE;
  keyinfo= key_info + key;
  keyinfo->key_part= key_part_info;
6109 6110
  keyinfo->usable_key_parts= keyinfo->user_defined_key_parts = key_parts;
  keyinfo->ext_key_parts= keyinfo->user_defined_key_parts;
unknown's avatar
unknown committed
6111 6112 6113
  keyinfo->key_length=0;
  keyinfo->algorithm= HA_KEY_ALG_UNDEF;
  keyinfo->flags= HA_GENERATED_KEY;
Igor Babaev's avatar
Igor Babaev committed
6114
  keyinfo->ext_key_flags= keyinfo->flags;
6115
  keyinfo->is_statistics_from_stat_tables= FALSE;
unknown's avatar
unknown committed
6116 6117
  if (unique)
    keyinfo->flags|= HA_NOSAME;
unknown's avatar
unknown committed
6118 6119 6120 6121 6122 6123 6124 6125
  sprintf(buf, "key%i", key);
  if (!(keyinfo->name= strdup_root(&mem_root, buf)))
    return TRUE;
  keyinfo->rec_per_key= (ulong*) alloc_root(&mem_root,
                                            sizeof(ulong)*key_parts);
  if (!keyinfo->rec_per_key)
    return TRUE;
  bzero(keyinfo->rec_per_key, sizeof(ulong)*key_parts);
6126 6127
  keyinfo->read_stats= NULL;
  keyinfo->collected_stats= NULL;
6128

unknown's avatar
unknown committed
6129 6130
  for (i= 0; i < key_parts; i++)
  {
Igor Babaev's avatar
Igor Babaev committed
6131 6132
    uint fld_idx= next_field_no(arg); 
    reg_field= field + fld_idx;
unknown's avatar
unknown committed
6133 6134
    if (key_start)
      (*reg_field)->key_start.set_bit(key);
6135
    (*reg_field)->part_of_key.set_bit(key);
Igor Babaev's avatar
Igor Babaev committed
6136
    create_key_part_by_field(keyinfo, key_part_info, *reg_field, fld_idx+1);
unknown's avatar
unknown committed
6137 6138 6139
    key_start= FALSE;
    key_part_info++;
  }
6140

unknown's avatar
unknown committed
6141 6142 6143
  set_if_bigger(s->max_key_length, keyinfo->key_length);
  s->keys++;
  return FALSE;
6144 6145
}

6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163
/*
  @brief
  Drop all indexes except specified one.

  @param key_to_save the key to save

  @details
  Drop all indexes on this table except 'key_to_save'. The saved key becomes
  key #0. Memory occupied by key parts of dropped keys are freed.
  If the 'key_to_save' is negative then all keys are freed.
*/

void TABLE::use_index(int key_to_save)
{
  uint i= 1;
  DBUG_ASSERT(!created && key_to_save < (int)s->keys);
  if (key_to_save >= 0)
    /* Save the given key. */
Igor Babaev's avatar
Igor Babaev committed
6164
    memmove(key_info, key_info + key_to_save, sizeof(KEY));
6165 6166 6167 6168
  else
    /* Drop all keys; */
    i= 0;

Igor Babaev's avatar
Igor Babaev committed
6169
  s->keys= i;
6170
}
unknown's avatar
unknown committed
6171

6172 6173 6174 6175 6176 6177 6178
/*
  Return TRUE if the table is filled at execution phase 
  
  (and so, the optimizer must not do anything that depends on the contents of
   the table, like range analysis or constant table detection)
*/

Sergei Golubchik's avatar
Sergei Golubchik committed
6179
bool TABLE::is_filled_at_execution()
6180
{ 
unknown's avatar
unknown committed
6181 6182 6183 6184 6185 6186 6187
  /*
    pos_in_table_list == NULL for internal temporary tables because they
    do not have a corresponding table reference. Such tables are filled
    during execution.
  */
  return test(!pos_in_table_list ||
              pos_in_table_list->jtbm_subselect || 
6188
              pos_in_table_list->is_active_sjm());
6189 6190
}

6191

6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205
/**
  @brief
  Get actual number of key components

  @param keyinfo

  @details
  The function calculates actual number of key components, possibly including
  components of extended keys, taken into consideration by the optimizer for the
  key described by the parameter keyinfo.

  @return number of considered key components
*/ 

6206
uint TABLE::actual_n_key_parts(KEY *keyinfo)
6207 6208
{
  return optimizer_flag(in_use, OPTIMIZER_SWITCH_EXTENDED_KEYS) ?
6209
           keyinfo->ext_key_parts : keyinfo->user_defined_key_parts;
6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225
}

 
/**
  @brief
  Get actual key flags for a table key 

  @param keyinfo

  @details
  The function finds out actual key flags taken into consideration by the
  optimizer for the key described by the parameter keyinfo.

  @return actual key flags
*/ 

6226
ulong TABLE::actual_key_flags(KEY *keyinfo)
6227 6228 6229 6230 6231 6232
{
  return optimizer_flag(in_use, OPTIMIZER_SWITCH_EXTENDED_KEYS) ?
           keyinfo->ext_key_flags : keyinfo->flags;
} 


6233 6234 6235 6236
/*
  Cleanup this table for re-execution.

  SYNOPSIS
6237
    TABLE_LIST::reinit_before_use()
6238 6239
*/

6240
void TABLE_LIST::reinit_before_use(THD *thd)
6241 6242 6243 6244 6245 6246
{
  /*
    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;
6247
  /* Reset is_schema_table_processed value(needed for I_S tables */
6248
  schema_table_state= NOT_PROCESSED;
6249 6250

  TABLE_LIST *embedded; /* The table at the current level of nesting. */
6251
  TABLE_LIST *parent_embedding= this; /* The parent nested table reference. */
6252 6253
  do
  {
6254
    embedded= parent_embedding;
6255 6256
    if (embedded->prep_on_expr)
      embedded->on_expr= embedded->prep_on_expr->copy_andor_structure(thd);
6257
    parent_embedding= embedded->embedding;
6258
  }
6259 6260
  while (parent_embedding &&
         parent_embedding->nested_join->join_list.head() == embedded);
Konstantin Osipov's avatar
Konstantin Osipov committed
6261 6262

  mdl_request.ticket= NULL;
6263 6264
}

6265

unknown's avatar
unknown committed
6266 6267 6268 6269
/*
  Return subselect that contains the FROM list this table is taken from

  SYNOPSIS
6270
    TABLE_LIST::containing_subselect()
unknown's avatar
unknown committed
6271 6272 6273 6274 6275 6276 6277 6278
 
  RETURN
    Subselect item for the subquery that contains the FROM list
    this table is taken from if there is any
    0 - otherwise

*/

6279
Item_subselect *TABLE_LIST::containing_subselect()
unknown's avatar
unknown committed
6280 6281 6282
{    
  return (select_lex ? select_lex->master_unit()->item : 0);
}
6283

6284 6285 6286 6287 6288 6289 6290 6291 6292
/*
  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" 
6293
    (TABLE_LIST::index_hints). Using the information in this tagged list
Sergei Golubchik's avatar
Sergei Golubchik committed
6294 6295 6296 6297
    this function sets the members TABLE::keys_in_use_for_query,
    TABLE::keys_in_use_for_group_by, TABLE::keys_in_use_for_order_by,
    TABLE::force_index, TABLE::force_index_order,
    TABLE::force_index_group and TABLE::covering_keys.
6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335

    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.
*/
6336
bool TABLE_LIST::process_index_hints(TABLE *tbl)
6337 6338
{
  /* initialize the result variables */
6339 6340
  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;
6341 6342 6343 6344 6345 6346 6347

  /* 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
6348
    Index_hint *hint;
6349 6350 6351
    int type;
    bool have_empty_use_join= FALSE, have_empty_use_order= FALSE, 
         have_empty_use_group= FALSE;
unknown's avatar
unknown committed
6352
    List_iterator <Index_hint> iter(*index_hints);
6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391

    /* 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 
      */
6392 6393
      if (tbl->s->keynames.type_names == 0 ||
          (pos= find_type(&tbl->s->keynames, hint->key_name.str,
6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424
                          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 */
6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441
    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.
    */
6442
    if (!index_join[INDEX_HINT_FORCE].is_clear_all() ||
6443
        tbl->force_index_group || tbl->force_index_order)
6444
    {
6445
      tbl->force_index= TRUE;
6446 6447 6448 6449 6450
      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)
6451
      tbl->keys_in_use_for_query.intersect(index_join[INDEX_HINT_USE]);
6452
    if (!index_order[INDEX_HINT_USE].is_clear_all() || have_empty_use_order)
6453
      tbl->keys_in_use_for_order_by.intersect (index_order[INDEX_HINT_USE]);
6454
    if (!index_group[INDEX_HINT_USE].is_clear_all() || have_empty_use_group)
6455
      tbl->keys_in_use_for_group_by.intersect (index_group[INDEX_HINT_USE]);
6456 6457

    /* apply IGNORE INDEX */
6458 6459 6460
    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]);
6461 6462 6463
  }

  /* make sure covering_keys don't include indexes disabled with a hint */
6464
  tbl->covering_keys.intersect(tbl->keys_in_use_for_query);
6465 6466 6467
  return 0;
}

6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485

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;
}

6486 6487 6488 6489 6490 6491

/**
   Helper function which allows to allocate metadata lock request
   objects for all elements of table list.
*/

Konstantin Osipov's avatar
Konstantin Osipov committed
6492
void init_mdl_requests(TABLE_LIST *table_list)
6493 6494
{
  for ( ; table_list ; table_list= table_list->next_global)
Konstantin Osipov's avatar
Konstantin Osipov committed
6495 6496
    table_list->mdl_request.init(MDL_key::TABLE,
                                 table_list->db, table_list->table_name,
6497
                                 table_list->lock_type >= TL_WRITE_ALLOW_WRITE ?
6498 6499
                                 MDL_SHARED_WRITE : MDL_SHARED_READ,
                                 MDL_TRANSACTION);
6500 6501 6502
}


6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525
/**
  Update TABLE::const_key_parts for single table UPDATE/DELETE query

  @param conds               WHERE clause expression

  @retval TRUE   error (OOM)
  @retval FALSE  success

  @note
    Set const_key_parts bits if key fields are equal to constants in
    the WHERE expression.
*/

bool TABLE::update_const_key_parts(COND *conds)
{
  bzero((char*) const_key_parts, sizeof(key_part_map) * s->keys);

  if (conds == NULL)
    return FALSE;

  for (uint index= 0; index < s->keys; index++)
  {
    KEY_PART_INFO *keyinfo= key_info[index].key_part;
6526
    KEY_PART_INFO *keyinfo_end= keyinfo + key_info[index].user_defined_key_parts;
6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556

    for (key_part_map part_map= (key_part_map)1; 
        keyinfo < keyinfo_end;
        keyinfo++, part_map<<= 1)
    {
      if (const_expression_in_where(conds, NULL, keyinfo->field))
        const_key_parts[index]|= part_map;
    }
  }
  return FALSE;
}

/**
  Test if the order list consists of simple field expressions

  @param order                Linked list of ORDER BY arguments

  @return TRUE if @a order is empty or consist of simple field expressions
*/

bool is_simple_order(ORDER *order)
{
  for (ORDER *ord= order; ord; ord= ord->next)
  {
    if (ord->item[0]->real_item()->type() != Item::FIELD_ITEM)
      return FALSE;
  }
  return TRUE;
}

6557 6558 6559
/*
  @brief Compute values for virtual columns used in query

Igor Babaev's avatar
Igor Babaev committed
6560
  @param  thd              Thread handle
6561
  @param  table            The TABLE object
Igor Babaev's avatar
Igor Babaev committed
6562
  @param  vcol_update_mode Specifies what virtual column are computed   
6563 6564 6565 6566
  
  @details
    The function computes the values of the virtual columns of the table and
    stores them in the table record buffer.
Igor Babaev's avatar
Igor Babaev committed
6567 6568 6569 6570 6571 6572
    If vcol_update_mode is set to VCOL_UPDATE_ALL then all virtual column are
    computed. Otherwise, only fields from vcol_set are computed: all of them,
    if vcol_update_mode is set to VCOL_UPDATE_FOR_WRITE, and, only those with
    the stored_in_db flag set to false, if vcol_update_mode is equal to
    VCOL_UPDATE_FOR_READ.

6573 6574 6575 6576 6577 6578
  @retval
    0    Success
  @retval
    >0   Error occurred when storing a virtual field value
*/

Igor Babaev's avatar
Igor Babaev committed
6579 6580
int update_virtual_fields(THD *thd, TABLE *table,
                          enum enum_vcol_update_mode vcol_update_mode)
6581 6582 6583
{
  DBUG_ENTER("update_virtual_fields");
  Field **vfield_ptr, *vfield;
6584
  int error __attribute__ ((unused))= 0;
Michael Widenius's avatar
Michael Widenius committed
6585
  DBUG_ASSERT(table && table->vfield);
6586

Igor Babaev's avatar
Igor Babaev committed
6587
  thd->reset_arena_for_cached_items(table->expr_arena);
6588 6589 6590 6591 6592
  /* 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);
Igor Babaev's avatar
Igor Babaev committed
6593 6594 6595
    if ((bitmap_is_set(table->vcol_set, vfield->field_index) &&
         (vcol_update_mode == VCOL_UPDATE_FOR_WRITE || !vfield->stored_in_db)) ||
        vcol_update_mode == VCOL_UPDATE_ALL)
6596 6597 6598 6599 6600 6601 6602 6603 6604 6605
    {
      /* 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
6606
  thd->reset_arena_for_cached_items(0);
6607 6608
  DBUG_RETURN(0);
}
6609

6610 6611 6612 6613 6614

/**
  Update all DEFAULT and/or ON INSERT fields.

  @details
6615 6616 6617 6618 6619
    Compute and set the default value of all fields with a default function.
    There are two kinds of default functions - one is used for INSERT-like
    operations, the other for UPDATE-like operations. Depending on the field
    definition and the current operation one or the other kind of update
    function is evaluated.
6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634

  @retval
    0    Success
  @retval
    >0   Error occurred when storing a virtual field value
*/

int TABLE::update_default_fields()
{
  DBUG_ENTER("update_default_fields");
  Field **dfield_ptr, *dfield;
  int res= 0;
  enum_sql_command cmd= in_use->lex->sql_command;

  DBUG_ASSERT(default_field);
6635

6636 6637 6638 6639 6640 6641 6642 6643
  /* Iterate over virtual fields in the table */
  for (dfield_ptr= default_field; *dfield_ptr; dfield_ptr++)
  {
    dfield= (*dfield_ptr);
    /*
      If an explicit default value for a filed overrides the default,
      do not update the field with its automatic default value.
    */
6644
    if (!(dfield->flags & HAS_EXPLICIT_VALUE))
6645 6646 6647 6648 6649 6650 6651 6652 6653
    {
      if (sql_command_flags[cmd] & CF_INSERTS_DATA)
        res= dfield->evaluate_insert_default_function();
      if (sql_command_flags[cmd] & CF_UPDATES_DATA)
        res= dfield->evaluate_update_default_function();
      if (res)
        DBUG_RETURN(res);
    }
    /* Unset the explicit default flag for the next record. */
6654
    dfield->flags&= ~HAS_EXPLICIT_VALUE;
6655 6656 6657 6658 6659
  }
  DBUG_RETURN(res);
}


6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697
/*
  @brief Reset const_table flag

  @detail
  Reset const_table flag for this table. If this table is a merged derived
  table/view the flag is recursively reseted for all tables of the underlying
  select.
*/

void TABLE_LIST::reset_const_table()
{
  table->const_table= 0;
  if (is_merged_derived())
  {
    SELECT_LEX *select_lex= get_unit()->first_select();
    TABLE_LIST *tl;
    List_iterator<TABLE_LIST> ti(select_lex->leaf_tables);
    while ((tl= ti++))
      tl->reset_const_table();
  }
}


/*
  @brief Run derived tables/view handling phases on underlying select_lex.

  @param lex    LEX for this thread
  @param phases derived tables/views handling phases to run
                (set of DT_XXX constants)
  @details
  This function runs this derived table through specified 'phases'.
  Underlying tables of this select are handled prior to this derived.
  'lex' is passed as an argument to called functions.

  @return TRUE on error
  @return FALSE ok
*/

Sergei Golubchik's avatar
Sergei Golubchik committed
6698
bool TABLE_LIST::handle_derived(LEX *lex, uint phases)
6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801
{
  SELECT_LEX_UNIT *unit= get_unit();
  if (unit)
  {
    for (SELECT_LEX *sl= unit->first_select(); sl; sl= sl->next_select())
      if (sl->handle_derived(lex, phases))
        return TRUE;
    return mysql_handle_single_derived(lex, this, phases);
  }
  return FALSE;
}


/**
  @brief
  Return unit of this derived table/view

  @return reference to a unit  if it's a derived table/view.
  @return 0                    when it's not a derived table/view.
*/

st_select_lex_unit *TABLE_LIST::get_unit()
{
  return (view ? &view->unit : derived);
}


/**
  @brief
  Return select_lex of this derived table/view

  @return select_lex of this derived table/view.
  @return 0          when it's not a derived table.
*/

st_select_lex *TABLE_LIST::get_single_select()
{
  SELECT_LEX_UNIT *unit= get_unit();
  return (unit ? unit->first_select() : 0);
}


/**
  @brief
  Attach a join table list as a nested join to this TABLE_LIST.

  @param join_list join table list to attach

  @details
  This function wraps 'join_list' into a nested_join of this table, thus
  turning it to a nested join leaf.
*/

void TABLE_LIST::wrap_into_nested_join(List<TABLE_LIST> &join_list)
{
  TABLE_LIST *tl;
  /*
    Walk through derived table top list and set 'embedding' to point to
    the nesting table.
  */
  nested_join->join_list.empty();
  List_iterator_fast<TABLE_LIST> li(join_list);
  nested_join->join_list= join_list;
  while ((tl= li++))
  {
    tl->embedding= this;
    tl->join_list= &nested_join->join_list;
  }
}


/**
  @brief
  Initialize this derived table/view

  @param thd  Thread handle

  @details
  This function makes initial preparations of this derived table/view for
  further processing:
    if it's a derived table this function marks it either as mergeable or
      materializable
    creates temporary table for name resolution purposes
    creates field translation for mergeable derived table/view

  @return TRUE  an error occur
  @return FALSE ok
*/

bool TABLE_LIST::init_derived(THD *thd, bool init_view)
{
  SELECT_LEX *first_select= get_single_select();
  SELECT_LEX_UNIT *unit= get_unit();

  if (!unit)
    return FALSE;
  /*
    Check whether we can merge this derived table into main select.
    Depending on the result field translation will or will not
    be created.
  */
  TABLE_LIST *first_table= (TABLE_LIST *) first_select->table_list.first;
  if (first_select->table_list.elements > 1 ||
6802
      (first_table && first_table->is_multitable()))
6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814
    set_multitable();

  unit->derived= this;
  if (init_view && !view)
  {
    /* This is all what we can do for a derived table for now. */
    set_derived();
  }

  if (!is_view())
  {
    /* A subquery might be forced to be materialized due to a side-effect. */
6815
    if (!is_materialized_derived() && first_select->is_mergeable() &&
6816
        optimizer_flag(thd, OPTIMIZER_SWITCH_DERIVED_MERGE) &&
6817
        !(thd->lex->sql_command == SQLCOM_UPDATE_MULTI ||
6818
          thd->lex->sql_command == SQLCOM_DELETE_MULTI))
6819 6820 6821 6822 6823 6824 6825 6826 6827 6828
      set_merged_derived();
    else
      set_materialized_derived();
  }
  /*
    Derived tables/view are materialized prior to UPDATE, thus we can skip
    them from table uniqueness check
  */
  if (is_materialized_derived())
  {
6829
    set_check_materialized();
6830
  }
6831

6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863
  /*
    Create field translation for mergeable derived tables/views.
    For derived tables field translation can be created only after
    unit is prepared so all '*' are get unrolled.
  */
  if (is_merged_derived())
  {
    if (is_view() || unit->prepared)
      create_field_translation(thd);
  }

  return FALSE;
}


/**
  @brief
  Retrieve number of rows in the table

  @details
  Retrieve number of rows in the table referred by this TABLE_LIST and
  store it in the table's stats.records variable. If this TABLE_LIST refers
  to a materialized derived table/view then the estimated number of rows of
  the derived table/view is used instead.

  @return 0          ok
  @return non zero   error
*/

int TABLE_LIST::fetch_number_of_rows()
{
  int error= 0;
6864 6865
  if (jtbm_subselect)
    return 0;
6866 6867 6868 6869 6870
  if (is_materialized_derived() && !fill_me)

  {
    table->file->stats.records= ((select_union*)derived->result)->records;
    set_if_bigger(table->file->stats.records, 2);
6871
    table->used_stat_records= table->file->stats.records;
6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947
  }
  else
    error= table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
  return error;
}

/*
  Procedure of keys generation for result tables of materialized derived
  tables/views.

  A key is generated for each equi-join pair derived table-another table.
  Each generated key consists of fields of derived table used in equi-join.
  Example:

    SELECT * FROM (SELECT * FROM t1 GROUP BY 1) tt JOIN
                  t1 ON tt.f1=t1.f3 and tt.f2.=t1.f4;
  In this case for the derived table tt one key will be generated. It will
  consist of two parts f1 and f2.
  Example:

    SELECT * FROM (SELECT * FROM t1 GROUP BY 1) tt JOIN
                  t1 ON tt.f1=t1.f3 JOIN
                  t2 ON tt.f2=t2.f4;
  In this case for the derived table tt two keys will be generated.
  One key over f1 field, and another key over f2 field.
  Currently optimizer may choose to use only one such key, thus the second
  one will be dropped after range optimizer is finished.
  See also JOIN::drop_unused_derived_keys function.
  Example:

    SELECT * FROM (SELECT * FROM t1 GROUP BY 1) tt JOIN
                  t1 ON tt.f1=a_function(t1.f3);
  In this case for the derived table tt one key will be generated. It will
  consist of one field - f1.
*/



/*
  @brief
  Change references to underlying items of a merged derived table/view
  for fields in derived table's result table.

  @return FALSE ok
  @return TRUE  Out of memory
*/
bool TABLE_LIST::change_refs_to_fields()
{
  List_iterator<Item> li(used_items);
  Item_direct_ref *ref;
  Field_iterator_view field_it;
  THD *thd= table->in_use;
  DBUG_ASSERT(is_merged_derived());

  if (!used_items.elements)
    return FALSE;

  materialized_items= (Item**)thd->calloc(sizeof(void*) * table->s->fields);

  while ((ref= (Item_direct_ref*)li++))
  {
    uint idx;
    Item *orig_item= *ref->ref;
    field_it.set(this);
    for (idx= 0; !field_it.end_of_fields(); field_it.next(), idx++)
    {
      if (field_it.item() == orig_item)
        break;
    }
    DBUG_ASSERT(!field_it.end_of_fields());
    if (!materialized_items[idx])
    {
      materialized_items[idx]= new Item_field(table->field[idx]);
      if (!materialized_items[idx])
        return TRUE;
    }
unknown's avatar
unknown committed
6948 6949 6950 6951
    /*
      We need to restore the pointers after the execution of the
      prepared statement.
    */
unknown's avatar
unknown committed
6952 6953
    thd->change_item_tree((Item **)&ref->ref,
                          (Item*)(materialized_items + idx));
6954 6955 6956 6957 6958 6959
  }

  return FALSE;
}


6960 6961 6962 6963 6964 6965 6966 6967
uint TABLE_SHARE::actual_n_key_parts(THD *thd)
{
  return use_ext_keys &&
         optimizer_flag(thd, OPTIMIZER_SWITCH_EXTENDED_KEYS) ?
           ext_key_parts : key_parts;
}  


6968
double KEY::actual_rec_per_key(uint i)
6969 6970 6971 6972 6973 6974 6975
{ 
  if (rec_per_key == 0)
    return 0;
  return (is_statistics_from_stat_tables ?
          read_stats->get_avg_frequency(i) : (double) rec_per_key[i]);
}