table.cc 80.8 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 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
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   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.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

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


/* Some general useful functions */

#include "mysql_priv.h"
#include <errno.h>
#include <m_ctype.h>
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
23
#include "md5.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
24 25 26

	/* Functions defined in this file */

27 28
static void frm_error(int error,TABLE *form,const char *name,
                      int errortype, int errarg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
29 30 31 32 33
static void fix_type_pointers(const char ***array, TYPELIB *point_to_type,
			      uint types, char **names);
static uint find_field(TABLE *form,uint start,uint length);


34
static byte* get_field_name(Field **buff,uint *length,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
35 36
			    my_bool not_used __attribute__((unused)))
{
37 38
  *length= (uint) strlen((*buff)->field_name);
  return (byte*) (*buff)->field_name;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
39 40
}

41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/*
  Open a .frm file 

  SYNOPSIS
    openfrm()

    name           path to table-file "db/name"
    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 frm_error)
   2    Error (see frm_error)
   3    Wrong data in .frm file
   4    Error (see frm_error)
61
   5    Error (see frm_error: charset unavailable)
62
   6    Unknown .frm version
63
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
64

65 66
int openfrm(THD *thd, const char *name, const char *alias, uint db_stat,
            uint prgflag, uint ha_open_flags, TABLE *outparam)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
67 68 69
{
  reg1 uint i;
  reg2 uchar *strpos;
70
  int	 j,error, errarg= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
71
  uint	 rec_buff_length,n_length,int_length,records,key_parts,keys,
72
         interval_count,interval_parts,read_length,db_create_options;
73
  uint	 key_info_length, com_length;
74
  ulong  pos, record_offset;
75
  char	 index_file[FN_REFLEN], *names, *keynames, *comment_pos;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
76 77 78
  uchar  head[288],*disk_buff,new_field_pack_flag;
  my_string record;
  const char **int_array;
79
  bool	 use_hash, null_field_first;
80
  bool   error_reported= FALSE;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
81 82 83 84 85
  File	 file;
  Field  **field_ptr,*reg_field;
  KEY	 *keyinfo;
  KEY_PART_INFO *key_part;
  uchar *null_pos;
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
86
  uint null_bit_pos, new_frm_ver, field_pack_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
87
  SQL_CRYPT *crypted=0;
88
  MEM_ROOT **root_ptr, *old_root;
89
  TABLE_SHARE *share;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
90
  DBUG_ENTER("openfrm");
91
  DBUG_PRINT("enter",("name: '%s'  form: 0x%lx",name,outparam));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
92

93 94
  error= 1;
  disk_buff= NULL;
monty@mysql.com's avatar
monty@mysql.com committed
95 96
  root_ptr= my_pthread_getspecific_ptr(MEM_ROOT**, THR_MALLOC);
  old_root= *root_ptr;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
97

98 99 100 101
  bzero((char*) outparam,sizeof(*outparam));
  outparam->in_use= thd;
  outparam->s= share= &outparam->share_not_to_be_used;

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
102 103 104 105 106
  if ((file=my_open(fn_format(index_file, name, "", reg_ext,
			      MY_UNPACK_FILENAME),
		    O_RDONLY | O_SHARE,
		    MYF(0)))
      < 0)
107
    goto err;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
108

109
  error= 4;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
110
  if (my_read(file,(byte*) head,64,MYF(MY_NABP)))
111
    goto err;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
112

113
  if (memcmp(head, STRING_WITH_LEN("TYPE=")) == 0)
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
114 115 116 117 118 119
  {
    // new .frm
    my_close(file,MYF(MY_WME));

    if (db_stat & NO_ERR_ON_NEW_FRM)
      DBUG_RETURN(5);
120
    file= -1;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
121
    // caller can't process new .frm
122
    goto err;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
123 124
  }

125 126
  share->blob_ptr_size= sizeof(char*);
  outparam->db_stat= db_stat;
127
  init_sql_alloc(&outparam->mem_root, TABLE_ALLOC_BLOCK_SIZE, 0);
128
  *root_ptr= &outparam->mem_root;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
129

130 131 132 133 134
  share->table_name= strdup_root(&outparam->mem_root,
                                 name+dirname_length(name));
  share->path= strdup_root(&outparam->mem_root, name);
  outparam->alias= my_strdup(alias, MYF(MY_WME));
  if (!share->table_name || !share->path || !outparam->alias)
135
    goto err;
136 137
  *fn_ext(share->table_name)='\0';		// Remove extension
  *fn_ext(share->path)='\0';                    // Remove extension
bk@work.mysql.com's avatar
bk@work.mysql.com committed
138

139
  if (head[0] != (uchar) 254 || head[1] != 1)
140
    goto err;                                   /* purecov: inspected */
jimw@mysql.com's avatar
Merge  
jimw@mysql.com committed
141 142
  if (head[2] != FRM_VER && head[2] != FRM_VER+1 &&
       ! (head[2] >= FRM_VER+3 && head[2] <= FRM_VER+4))
143 144
  {
    error= 6;
jimw@mysql.com's avatar
Merge  
jimw@mysql.com committed
145
    goto err;                                   /* purecov: inspected */
146
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
147
  new_field_pack_flag=head[27];
148
  new_frm_ver= (head[2] - FRM_VER);
149
  field_pack_length= new_frm_ver < 2 ? 11 : 17;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
150 151 152

  error=3;
  if (!(pos=get_form_pos(file,head,(TYPELIB*) 0)))
153
    goto err;                                   /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
154 155
  *fn_ext(index_file)='\0';			// Remove .frm extension

156
  share->frm_version= head[2];
157 158 159 160 161 162 163 164 165
  /*
    Check if .frm file created by MySQL 5.0. In this case we want to
    display CHAR fields as CHAR and not as VARCHAR.
    We do it this way as we want to keep the old frm version to enable
    MySQL 4.1 to read these files.
  */
  if (share->frm_version == FRM_VER_TRUE_VARCHAR -1 && head[33] == 5)
    share->frm_version= FRM_VER_TRUE_VARCHAR;

166
  share->db_type= ha_checktype(thd,(enum db_type) (uint) *(head+3),0,0);
167 168
  share->db_create_options= db_create_options=uint2korr(head+30);
  share->db_options_in_use= share->db_create_options;
169
  share->mysql_version= uint4korr(head+51);
170
  null_field_first= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
171 172
  if (!head[32])				// New frm file in 3.23
  {
173 174 175 176 177 178 179 180 181 182 183
    share->avg_row_length= uint4korr(head+34);
    share-> row_type= (row_type) head[40];
    share->raid_type=   head[41];
    share->raid_chunks= head[42];
    share->raid_chunksize= uint4korr(head+43);
    share->table_charset= get_charset((uint) head[38],MYF(0));
    null_field_first= 1;
  }
  if (!share->table_charset)
  {
    /* unknown charset in head[38] or pre-3.23 frm */
184 185 186 187 188 189 190 191
    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",
                        name);
    }
192
    share->table_charset= default_charset_info;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
193
  }
194
  share->db_record_offset= 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
195
  if (db_create_options & HA_OPTION_LONG_BLOB_PTR)
196
    share->blob_ptr_size= portable_sizeof_char_ptr;
197
  /* Set temporarily a good value for db_low_byte_first */
198
  share->db_low_byte_first= test(share->db_type != DB_TYPE_ISAM);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
199
  error=4;
200 201
  share->max_rows= uint4korr(head+18);
  share->min_rows= uint4korr(head+22);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
202 203

  /* Read keyinformation */
204
  key_info_length= (uint) uint2korr(head+28);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
205
  VOID(my_seek(file,(ulong) uint2korr(head+6),MY_SEEK_SET,MYF(0)));
206
  if (read_string(file,(gptr*) &disk_buff,key_info_length))
207
    goto err;                                   /* purecov: inspected */
serg@serg.mylan's avatar
serg@serg.mylan committed
208
  if (disk_buff[0] & 0x80)
serg@serg.mylan's avatar
serg@serg.mylan committed
209
  {
210 211
    share->keys=      keys=      (disk_buff[1] << 7) | (disk_buff[0] & 0x7f);
    share->key_parts= key_parts= uint2korr(disk_buff+2);
serg@serg.mylan's avatar
serg@serg.mylan committed
212 213 214
  }
  else
  {
215 216
    share->keys=      keys=      disk_buff[0];
    share->key_parts= key_parts= disk_buff[1];
serg@serg.mylan's avatar
serg@serg.mylan committed
217
  }
218 219
  share->keys_for_keyread.init(0);
  share->keys_in_use.init(keys);
220 221 222
  outparam->quick_keys.init();
  outparam->used_keys.init();
  outparam->keys_in_use_for_query.init();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
223 224 225 226

  n_length=keys*sizeof(KEY)+key_parts*sizeof(KEY_PART_INFO);
  if (!(keyinfo = (KEY*) alloc_root(&outparam->mem_root,
				    n_length+uint2korr(disk_buff+4))))
227
    goto err;                                   /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228 229
  bzero((char*) keyinfo,n_length);
  outparam->key_info=keyinfo;
230
  key_part= my_reinterpret_cast(KEY_PART_INFO*) (keyinfo+keys);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
231 232 233 234 235
  strpos=disk_buff+6;

  ulong *rec_per_key;
  if (!(rec_per_key= (ulong*) alloc_root(&outparam->mem_root,
					 sizeof(ulong*)*key_parts)))
236
    goto err;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
237 238 239

  for (i=0 ; i < keys ; i++, keyinfo++)
  {
240 241
    keyinfo->table= outparam;
    if (new_frm_ver >= 3)
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
    {
      keyinfo->flags=	   (uint) uint2korr(strpos) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+2);
      keyinfo->key_parts=  (uint) strpos[4];
      keyinfo->algorithm=  (enum ha_key_alg) strpos[5];
      strpos+=8;
    }
    else
    {
      keyinfo->flags=	 ((uint) strpos[0]) ^ HA_NOSAME;
      keyinfo->key_length= (uint) uint2korr(strpos+1);
      keyinfo->key_parts=  (uint) strpos[3];
      keyinfo->algorithm= HA_KEY_ALG_UNDEF;
      strpos+=4;
    }
257

bk@work.mysql.com's avatar
bk@work.mysql.com committed
258 259 260 261 262 263 264 265 266
    keyinfo->key_part=	 key_part;
    keyinfo->rec_per_key= rec_per_key;
    for (j=keyinfo->key_parts ; j-- ; key_part++)
    {
      *rec_per_key++=0;
      key_part->fieldnr=	(uint16) (uint2korr(strpos) & FIELD_NR_MASK);
      key_part->offset= (uint) uint2korr(strpos+2)-1;
      key_part->key_type=	(uint) uint2korr(strpos+5);
      // key_part->field=	(Field*) 0;	// Will be fixed later
267
      if (new_frm_ver >= 1)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
      {
	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;
    }
  }
287 288
  keynames=(char*) key_part;
  strpos+= (strmov(keynames, (char *) strpos) - keynames)+1;
289

290
  share->reclength = uint2korr((head+16));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
291
  if (*(head+26) == 1)
292
    share->system= 1;				/* one-record-database */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
293 294 295
#ifdef HAVE_CRYPTED_FRM
  else if (*(head+26) == 2)
  {
296
    *root_ptr= old_root
bk@work.mysql.com's avatar
bk@work.mysql.com committed
297
    crypted=get_crypt_for_frm();
298
    *root_ptr= &outparam->mem_root;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
299 300 301 302
    outparam->crypted=1;
  }
#endif

303 304 305 306 307 308 309 310 311 312
  record_offset= (ulong) (uint2korr(head+6)+
                          ((uint2korr(head+14) == 0xffff ?
                            uint4korr(head+47) : uint2korr(head+14))));
 
  if ((n_length= uint2korr(head+55)))
  {
    /* Read extra data segment */
    char *buff, *next_chunk, *buff_end;
    if (!(next_chunk= buff= my_malloc(n_length, MYF(MY_WME))))
      goto err;
313
    buff_end= buff + n_length;
314 315 316 317 318 319
    if (my_pread(file, (byte*)buff, n_length, record_offset + share->reclength,
                 MYF(MY_NABP)))
    {
      my_free(buff, MYF(0));
      goto err;
    }
320 321 322
    share->connect_string.length= uint2korr(buff);
    if (! (share->connect_string.str= strmake_root(&outparam->mem_root,
            next_chunk + 2, share->connect_string.length)))
323
    {
324 325
      my_free(buff, MYF(0));
      goto err;
326
    }
327
    next_chunk+= share->connect_string.length + 2;
328 329 330 331
    if (next_chunk + 2 < buff_end)
    {
      uint str_db_type_length= uint2korr(next_chunk);
      share->db_type= ha_resolve_by_name(next_chunk + 2, str_db_type_length);
332 333 334 335
      DBUG_PRINT("enter", ("Setting dbtype to: %d - %d - '%.*s'\n",
                           share->db_type,
                           str_db_type_length, str_db_type_length,
                           next_chunk + 2));
336 337 338 339
      next_chunk+= str_db_type_length + 2;
    }
    my_free(buff, MYF(0));
  }
340
  /* Allocate handler */
341 342
  if (!(outparam->file= get_new_handler(outparam, &outparam->mem_root,
                                        share->db_type)))
343
    goto err;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
344 345 346 347

  error=4;
  outparam->reginfo.lock_type= TL_UNLOCK;
  outparam->current_lock=F_UNLCK;
348 349 350 351
  if ((db_stat & HA_OPEN_KEYFILE) || (prgflag & DELAYED_OPEN))
    records=2;
  else
    records=1;
352 353
  if (prgflag & (READ_ALL+EXTRA_RECORD))
    records++;
354
  /* QQ: TODO, remove the +1 from below */
355 356 357 358 359
  rec_buff_length= ALIGN_SIZE(share->reclength + 1 +
                              outparam->file->extra_rec_buf_length());
  share->rec_buff_length= rec_buff_length;
  if (!(record= (char *) alloc_root(&outparam->mem_root,
                                    rec_buff_length * records)))
360
    goto err;                                   /* purecov: inspected */
361
  share->default_values= (byte *) record;
362

363
  if (my_pread(file,(byte*) record, (uint) share->reclength,
364
               record_offset, MYF(MY_NABP)))
365
    goto err; /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
366

367 368 369 370 371
  if (records == 1)
  {
    /* We are probably in hard repair, and the buffers should not be used */
    outparam->record[0]= outparam->record[1]= share->default_values;
  }
372
  else
373
  {
374
    outparam->record[0]= (byte *) record+ rec_buff_length;
375
    if (records > 2)
376
      outparam->record[1]= (byte *) record+ rec_buff_length*2;
377 378 379
    else
      outparam->record[1]= outparam->record[0];   // Safety
  }
380
 
381 382 383 384 385 386 387 388 389 390 391 392
#ifdef HAVE_purify
  /*
    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, rec_buff_length);
    if (records > 2)
      memcpy(outparam->record[1], share->default_values, rec_buff_length);
  }
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
393
  VOID(my_seek(file,pos,MY_SEEK_SET,MYF(0)));
394 395
  if (my_read(file,(byte*) head,288,MYF(MY_NABP)))
    goto err;
396
#ifdef HAVE_CRYPTED_FRM
bk@work.mysql.com's avatar
bk@work.mysql.com committed
397 398 399 400
  if (crypted)
  {
    crypted->decode((char*) head+256,288-256);
    if (sint2korr(head+284) != 0)		// Should be 0
401
      goto err;                                 // Wrong password
bk@work.mysql.com's avatar
bk@work.mysql.com committed
402
  }
403
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
404

405 406 407 408 409 410 411 412 413
  share->fields= uint2korr(head+258);
  pos= uint2korr(head+260);			/* Length of all screens */
  n_length= uint2korr(head+268);
  interval_count= uint2korr(head+270);
  interval_parts= uint2korr(head+272);
  int_length= uint2korr(head+274);
  share->null_fields= uint2korr(head+282);
  com_length= uint2korr(head+284);
  share->comment= strdup_root(&outparam->mem_root, (char*) head+47);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
414

415
  DBUG_PRINT("info",("i_count: %d  i_parts: %d  index: %d  n_length: %d  int_length: %d  com_length: %d", interval_count,interval_parts, share->keys,n_length,int_length, com_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
416 417 418

  if (!(field_ptr = (Field **)
	alloc_root(&outparam->mem_root,
419
		   (uint) ((share->fields+1)*sizeof(Field*)+
bk@work.mysql.com's avatar
bk@work.mysql.com committed
420
			   interval_count*sizeof(TYPELIB)+
421
			   (share->fields+interval_parts+
bk@work.mysql.com's avatar
bk@work.mysql.com committed
422
			    keys+3)*sizeof(my_string)+
423
			   (n_length+int_length+com_length)))))
424
    goto err;                                   /* purecov: inspected */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
425 426

  outparam->field=field_ptr;
427
  read_length=(uint) (share->fields * field_pack_length +
428
		      pos+ (uint) (n_length+int_length+com_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
429
  if (read_string(file,(gptr*) &disk_buff,read_length))
430
    goto err;                                   /* purecov: inspected */
431
#ifdef HAVE_CRYPTED_FRM
bk@work.mysql.com's avatar
bk@work.mysql.com committed
432 433 434 435 436 437
  if (crypted)
  {
    crypted->decode((char*) disk_buff,read_length);
    delete crypted;
    crypted=0;
  }
438
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
439 440
  strpos= disk_buff+pos;

441 442 443
  share->intervals= (TYPELIB*) (field_ptr+share->fields+1);
  int_array= (const char **) (share->intervals+interval_count);
  names= (char*) (int_array+share->fields+interval_parts+keys+3);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
444
  if (!interval_count)
445 446
    share->intervals= 0;			// For better debugging
  memcpy((char*) names, strpos+(share->fields*field_pack_length),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
447
	 (uint) (n_length+int_length));
448
  comment_pos= names+(n_length+int_length);
449
  memcpy(comment_pos, disk_buff+read_length-com_length, com_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
450

451 452
  fix_type_pointers(&int_array, &share->fieldnames, 1, &names);
  fix_type_pointers(&int_array, share->intervals, interval_count,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
453
		    &names);
454 455 456 457

  {
    /* Set ENUM and SET lengths */
    TYPELIB *interval;
458 459
    for (interval= share->intervals;
         interval < share->intervals + interval_count;
460 461 462 463 464
         interval++)
    {
      uint count= (uint) (interval->count + 1) * sizeof(uint);
      if (!(interval->type_lengths= (uint *) alloc_root(&outparam->mem_root,
                                                        count)))
465
        goto err;
466 467 468 469 470 471
      for (count= 0; count < interval->count; count++)
        interval->type_lengths[count]= strlen(interval->type_names[count]);
      interval->type_lengths[count]= 0;
    }
  }

bk@work.mysql.com's avatar
bk@work.mysql.com committed
472
  if (keynames)
473
    fix_type_pointers(&int_array, &share->keynames, 1, &keynames);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
474
  VOID(my_close(file,MYF(MY_WME)));
475
  file= -1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
476

477
  record= (char*) outparam->record[0]-1;	/* Fieldstart = 1 */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
478 479 480
  if (null_field_first)
  {
    outparam->null_flags=null_pos=(uchar*) record+1;
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
481
    null_bit_pos= (db_create_options & HA_OPTION_PACK_RECORD) ? 0 : 1;
482 483 484 485 486
    /*
      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
    */
487
    share->null_bytes= (share->null_fields + null_bit_pos + 7) / 8;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
488 489 490
  }
  else
  {
491 492 493
    share->null_bytes= (share->null_fields+7)/8;
    outparam->null_flags= null_pos=
      (uchar*) (record+1+share->reclength-share->null_bytes);
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
494
    null_bit_pos= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
495 496
  }

497
  use_hash= share->fields >= MAX_FIELDS_BEFORE_HASH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
498
  if (use_hash)
499
    use_hash= !hash_init(&share->name_hash,
500
			 system_charset_info,
501
			 share->fields,0,0,
502
			 (hash_get_key) get_field_name,0,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
503

504
  for (i=0 ; i < share->fields; i++, strpos+=field_pack_length, field_ptr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
505
  {
506
    uint pack_flag, interval_nr, unireg_type, recpos, field_length;
507
    enum_field_types field_type;
508
    CHARSET_INFO *charset=NULL;
509
    Field::geometry_type geom_type= Field::GEOM_GEOMETRY;
510
    LEX_STRING comment;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
511

512
    if (new_frm_ver >= 3)
513 514
    {
      /* new frm file in 4.1 */
515 516 517 518 519 520 521
      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];
522

523
      /* charset and geometry_type share the same byte in frm */
524 525
      if (field_type == FIELD_TYPE_GEOMETRY)
      {
hf@deer.(none)'s avatar
hf@deer.(none) committed
526
#ifdef HAVE_SPATIAL
527 528
	geom_type= (Field::geometry_type) strpos[14];
	charset= &my_charset_bin;
hf@deer.(none)'s avatar
hf@deer.(none) committed
529 530
#else
	error= 4;  // unsupported field type
531
	goto err;
hf@deer.(none)'s avatar
hf@deer.(none) committed
532
#endif
533 534 535
      }
      else
      {
536 537 538 539 540 541
        if (!strpos[14])
          charset= &my_charset_bin;
        else if (!(charset=get_charset((uint) strpos[14], MYF(0))))
        {
          error= 5; // Unknown or unavailable charset
          errarg= (int) strpos[14];
542
          goto err;
543
        }
544
      }
545 546 547 548 549 550 551 552 553 554 555 556 557 558
      if (!comment_length)
      {
	comment.str= (char*) "";
	comment.length=0;
      }
      else
      {
	comment.str=    (char*) comment_pos;
	comment.length= comment_length;
	comment_pos+=   comment_length;
      }
    }
    else
    {
559 560 561
      field_length= (uint) strpos[3];
      recpos=	    uint2korr(strpos+4),
      pack_flag=    uint2korr(strpos+6);
562
      pack_flag&=   ~FIELDFLAG_NO_DEFAULT;     // Safety for old files
563 564 565
      unireg_type=  (uint) strpos[8];
      interval_nr=  (uint) strpos[10];

566 567
      /* old frm file */
      field_type= (enum_field_types) f_packtype(pack_flag);
bar@mysql.com's avatar
bar@mysql.com committed
568 569 570 571 572 573 574 575 576 577 578
      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
579
          if (!(charset= get_charset_by_csname(share->table_charset->csname,
bar@mysql.com's avatar
bar@mysql.com committed
580 581 582 583 584 585 586
                                               MY_CS_BINSORT, MYF(0))))
            charset= &my_charset_bin;
        }
        else
          charset= &my_charset_bin;
      }
      else
587
        charset= share->table_charset;
588 589
      bzero((char*) &comment, sizeof(comment));
    }
590 591 592 593

    if (interval_nr && charset->mbminlen > 1)
    {
      /* Unescape UCS2 intervals from HEX notation */
594
      TYPELIB *interval= share->intervals + interval_nr - 1;
595
      unhex_type2(interval);
596 597
    }
    
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
#ifndef TO_BE_DELETED_ON_PRODUCTION
    if (field_type == FIELD_TYPE_NEWDECIMAL && !share->mysql_version)
    {
      /*
        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);
      sql_print_error("Found incompatible DECIMAL field '%s' in %s; Please do \"ALTER TABLE '%s' FORCE\" to fix it!", share->fieldnames.type_names[i], name, share->table_name);
      push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                          ER_CRASHED_ON_USAGE,
                          "Found incompatible DECIMAL field '%s' in %s; Please do \"ALTER TABLE '%s' FORCE\" to fix it!", share->fieldnames.type_names[i], name, share->table_name);
      share->crashed= 1;                        // Marker for CHECK TABLE
    }
#endif

bk@work.mysql.com's avatar
bk@work.mysql.com committed
618
    *field_ptr=reg_field=
619 620
      make_field(record+recpos,
		 (uint32) field_length,
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
621
		 null_pos, null_bit_pos,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
622
		 pack_flag,
623
		 field_type,
624
		 charset,
625
		 geom_type,
626
		 (Field::utype) MTYP_TYPENR(unireg_type),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
627
		 (interval_nr ?
628
		  share->intervals+interval_nr-1 :
bk@work.mysql.com's avatar
bk@work.mysql.com committed
629
		  (TYPELIB*) 0),
630
		 share->fieldnames.type_names[i],
bk@work.mysql.com's avatar
bk@work.mysql.com committed
631
		 outparam);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
632
    if (!reg_field)				// Not supported field type
633 634
    {
      error= 4;
635
      goto err;			/* purecov: inspected */
636
    }
637

638
    reg_field->field_index= i;
639
    reg_field->comment=comment;
640
    if (field_type == FIELD_TYPE_BIT && !f_bit_as_char(pack_flag))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
641
    {
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
642
      if ((null_bit_pos+= field_length & 7) > 7)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
643
      {
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
644 645
        null_pos++;
        null_bit_pos-= 8;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
646 647
      }
    }
ram@gw.mysql.r18.ru's avatar
ram@gw.mysql.r18.ru committed
648 649 650 651 652
    if (!(reg_field->flags & NOT_NULL_FLAG))
    {
      if (!(null_bit_pos= (null_bit_pos + 1) & 7))
        null_pos++;
    }
653 654
    if (f_no_default(pack_flag))
      reg_field->flags|= NO_DEFAULT_VALUE_FLAG;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
655
    if (reg_field->unireg_check == Field::NEXT_NUMBER)
656
      outparam->found_next_number_field= reg_field;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
657
    if (outparam->timestamp_field == reg_field)
658
      share->timestamp_field_offset= i;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
659
    if (use_hash)
660
      (void) my_hash_insert(&share->name_hash,(byte*) field_ptr); // never fail
bk@work.mysql.com's avatar
bk@work.mysql.com committed
661 662 663 664 665 666
  }
  *field_ptr=0;					// End marker

  /* Fix key->name and key_part->field */
  if (key_parts)
  {
667
    uint primary_key=(uint) (find_type((char*) primary_key_name,
668
				       &share->keynames, 3) - 1);
669
    uint ha_option=outparam->file->table_flags();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
670 671 672
    keyinfo=outparam->key_info;
    key_part=keyinfo->key_part;

673
    for (uint key=0 ; key < share->keys ; key++,keyinfo++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
674 675
    {
      uint usable_parts=0;
676
      keyinfo->name=(char*) share->keynames.type_names[key];
677 678 679 680
      /* Fix fulltext keys for old .frm files */
      if (outparam->key_info[key].flags & HA_FULLTEXT)
	outparam->key_info[key].algorithm= HA_KEY_ALG_FULLTEXT;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
681 682 683
      if (primary_key >= MAX_KEY && (keyinfo->flags & HA_NOSAME))
      {
	/*
684 685
	  If the UNIQUE key doesn't have NULL columns and is not a part key
	  declare this as a primary key.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
686 687 688 689
	*/
	primary_key=key;
	for (i=0 ; i < keyinfo->key_parts ;i++)
	{
690 691 692 693 694
	  uint fieldnr= key_part[i].fieldnr;
	  if (!fieldnr ||
	      outparam->field[fieldnr-1]->null_ptr ||
	      outparam->field[fieldnr-1]->key_length() !=
	      key_part[i].length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
695 696 697 698 699 700 701 702 703 704 705 706 707 708
	  {
	    primary_key=MAX_KEY;		// Can't be used
	    break;
	  }
	}
      }

      for (i=0 ; i < keyinfo->key_parts ; key_part++,i++)
      {
	if (new_field_pack_flag <= 1)
	  key_part->fieldnr=(uint16) find_field(outparam,
						(uint) key_part->offset,
						(uint) key_part->length);
#ifdef EXTRA_DEBUG
709
	if (key_part->fieldnr > share->fields)
710
	  goto err;                             // sanity check
bk@work.mysql.com's avatar
bk@work.mysql.com committed
711 712 713 714 715 716 717 718 719 720 721 722
#endif
	if (key_part->fieldnr)
	{					// Should always be true !
	  Field *field=key_part->field=outparam->field[key_part->fieldnr-1];
	  if (field->null_ptr)
	  {
	    key_part->null_offset=(uint) ((byte*) field->null_ptr -
					  outparam->record[0]);
	    key_part->null_bit= field->null_bit;
	    key_part->store_length+=HA_KEY_NULL_LENGTH;
	    keyinfo->flags|=HA_NULL_PART_KEY;
	    keyinfo->extra_length+= HA_KEY_NULL_LENGTH;
723
	    keyinfo->key_length+= HA_KEY_NULL_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
724 725
	  }
	  if (field->type() == FIELD_TYPE_BLOB ||
726
	      field->real_type() == MYSQL_TYPE_VARCHAR)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
727 728 729
	  {
	    if (field->type() == FIELD_TYPE_BLOB)
	      key_part->key_part_flag|= HA_BLOB_PART;
730 731
            else
              key_part->key_part_flag|= HA_VAR_LENGTH_PART;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
732 733
	    keyinfo->extra_length+=HA_KEY_BLOB_LENGTH;
	    key_part->store_length+=HA_KEY_BLOB_LENGTH;
734
	    keyinfo->key_length+= HA_KEY_BLOB_LENGTH;
735 736 737 738 739 740
	    /*
	      Mark that there may be many matching values for one key
	      combination ('a', 'a ', 'a  '...)
	    */
	    if (!(field->flags & BINARY_FLAG))
	      keyinfo->flags|= HA_END_SPACE_KEY;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
741
	  }
monty@mysql.com's avatar
monty@mysql.com committed
742 743 744
	  if (field->type() == MYSQL_TYPE_BIT)
            key_part->key_part_flag|= HA_BIT_PART;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
745
	  if (i == 0 && key != primary_key)
746 747 748
	    field->flags |= ((keyinfo->flags & HA_NOSAME) &&
                             (keyinfo->key_parts == 1)) ?
                            UNIQUE_KEY_FLAG : MULTIPLE_KEY_FLAG;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
749
	  if (i == 0)
750
	    field->key_start.set_bit(key);
751
	  if (field->key_length() == key_part->length &&
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
752
	      !(field->flags & BLOB_FLAG))
753
	  {
754
            if (outparam->file->index_flags(key, i, 0) & HA_KEYREAD_ONLY)
755
            {
756
              share->keys_for_keyread.set_bit(key);
757
	      field->part_of_key.set_bit(key);
758
            }
759
	    if (outparam->file->index_flags(key, i, 1) & HA_READ_ORDER)
760
	      field->part_of_sortkey.set_bit(key);
761
	  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
762 763 764 765 766 767 768
	  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;
769 770 771 772
	    /*
	      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
	    */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
773
	    if (ha_option & HA_PRIMARY_KEY_IN_READ_INDEX)
774
	      field->part_of_key= share->keys_in_use;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
775 776 777
	  }
	  if (field->key_length() != key_part->length)
	  {
778 779 780 781 782 783 784 785 786 787 788
#ifndef TO_BE_DELETED_ON_PRODUCTION
            if (field->type() == FIELD_TYPE_NEWDECIMAL)
            {
              /*
                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());
789 790 791
	      key_part->store_length-= (uint16)(key_part->length -
                                                field->key_length());
              key_part->length= (uint16)field->key_length();
792 793 794 795 796 797 798 799 800
              sql_print_error("Found wrong key definition in %s; Please do \"ALTER TABLE '%s' FORCE \" to fix it!", name, share->table_name);
              push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                                  ER_CRASHED_ON_USAGE,
                                  "Found wrong key definition in %s; Please do \"ALTER TABLE '%s' FORCE\" to fix it!", name, share->table_name);

              share->crashed= 1;                // Marker for CHECK TABLE
	      goto to_be_deleted;
            }
#endif
801
	    key_part->key_part_flag|= HA_PART_KEY_SEG;
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
802
	    if (!(field->flags & BLOB_FLAG))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
803
	    {					// Create a new field
804 805
	      field=key_part->field=field->new_field(&outparam->mem_root,
						     outparam);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
806 807 808
	      field->field_length=key_part->length;
	    }
	  }
809 810 811

	to_be_deleted:

812 813 814 815 816 817
	  /*
	    If the field can be NULL, don't optimize away the test
	    key_part_column = expression from the WHERE clause
	    as we need to test for NULL = NULL.
	  */
	  if (field->real_maybe_null())
818
	    key_part->key_part_flag|= HA_PART_KEY_SEG;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
819 820 821 822 823 824 825 826
	}
	else
	{					// Error: shorten key
	  keyinfo->key_parts=usable_parts;
	  keyinfo->flags=0;
	}
      }
      keyinfo->usable_key_parts=usable_parts; // Filesort
827

828
      set_if_bigger(share->max_key_length,keyinfo->key_length+
829
                    keyinfo->key_parts);
830
      share->total_key_length+= keyinfo->key_length;
831 832 833 834 835 836
      /*
        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))
jimw@mysql.com's avatar
jimw@mysql.com committed
837
        set_if_bigger(share->max_unique_length,keyinfo->key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
838
    }
839
    if (primary_key < MAX_KEY &&
840
	(share->keys_in_use.is_set(primary_key)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
841
    {
842
      share->primary_key= primary_key;
843 844 845 846
      /*
	If we are using an integer as the primary key then allow the user to
	refer to it as '_rowid'
      */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
847 848 849 850 851 852 853 854
      if (outparam->key_info[primary_key].key_parts == 1)
      {
	Field *field= outparam->key_info[primary_key].key_part[0].field;
	if (field && field->result_type() == INT_RESULT)
	  outparam->rowid_field=field;
      }
    }
    else
855
      share->primary_key = MAX_KEY; // we do not have a primary key
bk@work.mysql.com's avatar
bk@work.mysql.com committed
856
  }
857
  else
858
    share->primary_key= MAX_KEY;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
859
  x_free((gptr) disk_buff);
860
  disk_buff=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
861
  if (new_field_pack_flag <= 1)
862 863 864 865 866
  {
    /* Old file format with default as not null */
    uint null_length= (share->null_fields+7)/8;
    bfill(share->default_values + (outparam->null_flags - (uchar*) record),
          null_length, 255);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
867 868
  }

869 870
  if ((reg_field=outparam->found_next_number_field))
  {
871
    if ((int) (share->next_number_index= (uint)
872
	       find_ref_key(outparam,reg_field,
873
			    &share->next_number_key_offset)) < 0)
874 875 876 877 878 879 880 881
    {
      reg_field->unireg_check=Field::NONE;	/* purecov: inspected */
      outparam->found_next_number_field=0;
    }
    else
      reg_field->flags|=AUTO_INCREMENT_FLAG;
  }

882
  if (share->blob_fields)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
883 884
  {
    Field **ptr;
885
    uint i, *save;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
886

887 888 889 890
    /* Store offsets to blob fields to find them fast */
    if (!(share->blob_field= save=
	  (uint*) alloc_root(&outparam->mem_root,
                             (uint) (share->blob_fields* sizeof(uint)))))
891
      goto err;
892
    for (i=0, ptr= outparam->field ; *ptr ; ptr++, i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
893 894
    {
      if ((*ptr)->flags & BLOB_FLAG)
895
	(*save++)= i;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
896 897 898
    }
  }

899 900 901 902 903 904
  /*
    the correct null_bytes can now be set, since bitfields have been taken
    into account
  */
  share->null_bytes= (null_pos - (uchar*) outparam->null_flags +
                      (null_bit_pos + 7) / 8);
905
  share->last_null_bit_pos= null_bit_pos;
906

907
  /* The table struct is now initialized;  Open the table */
908 909 910
  error=2;
  if (db_stat)
  {
911
    int ha_err;
912
    unpack_filename(index_file,index_file);
913 914 915 916 917 918 919 920 921 922
    if ((ha_err= (outparam->file->
                  ha_open(index_file,
                          (db_stat & HA_READ_ONLY ? O_RDONLY : O_RDWR),
                          (db_stat & HA_OPEN_TEMPORARY ? HA_OPEN_TMP_TABLE :
                           ((db_stat & HA_WAIT_IF_LOCKED) ||
                            (specialflag & SPECIAL_WAIT_IF_LOCKED)) ?
                           HA_OPEN_WAIT_IF_LOCKED :
                           (db_stat & (HA_ABORT_IF_LOCKED | HA_GET_INFO)) ?
                          HA_OPEN_ABORT_IF_LOCKED :
                           HA_OPEN_IGNORE_IF_LOCKED) | ha_open_flags))))
923 924
    {
      /* Set a flag if the table is crashed and it can be auto. repaired */
925
      share->crashed= ((ha_err == HA_ERR_CRASHED_ON_USAGE) &&
926 927
                       outparam->file->auto_repair() &&
                       !(ha_open_flags & HA_OPEN_FOR_REPAIR));
928

929
      if (ha_err == HA_ERR_NO_SUCH_TABLE)
930 931 932 933 934 935
      {
	/* The table did not exists in storage engine, use same error message
	   as if the .frm file didn't exist */
	error= 1;
	my_errno= ENOENT;
      }
936 937
      else
      {
938
        outparam->file->print_error(ha_err, MYF(0));
939 940
        error_reported= TRUE;
      }
941
      goto err;                                 /* purecov: inspected */
942 943
    }
  }
944
  share->db_low_byte_first= outparam->file->low_byte_first();
945

946
  *root_ptr= old_root;
947
  thd->status_var.opened_tables++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
948 949
#ifndef DBUG_OFF
  if (use_hash)
950
    (void) hash_check(&share->name_hash);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
951 952 953
#endif
  DBUG_RETURN (0);

954
 err:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
955
  x_free((gptr) disk_buff);
956 957
  if (file > 0)
    VOID(my_close(file,MYF(MY_WME)));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
958 959

  delete crypted;
960
  *root_ptr= old_root;
961
  if (! error_reported)
serg@sergbook.mysql.com's avatar
serg@sergbook.mysql.com committed
962
    frm_error(error,outparam,name,ME_ERROR+ME_WAITTANG, errarg);
963
  delete outparam->file;
964
  outparam->file=0;				// For easier errorchecking
965
  outparam->db_stat=0;
966
  hash_free(&share->name_hash);
967
  free_root(&outparam->mem_root, MYF(0));       // Safe to call on bzero'd root
968
  my_free((char*) outparam->alias, MYF(MY_ALLOW_ZERO_PTR));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
969 970 971 972 973 974 975 976 977 978 979 980
  DBUG_RETURN (error);
} /* openfrm */


	/* close a .frm file and it's tables */

int closefrm(register TABLE *table)
{
  int error=0;
  DBUG_ENTER("closefrm");
  if (table->db_stat)
    error=table->file->close();
981 982 983
  my_free((char*) table->alias, MYF(MY_ALLOW_ZERO_PTR));
  table->alias= 0;
  if (table->field)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
984 985 986
  {
    for (Field **ptr=table->field ; *ptr ; ptr++)
      delete *ptr;
987
    table->field= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
988 989
  }
  delete table->file;
990 991 992
  table->file= 0;				/* For easier errorchecking */
  hash_free(&table->s->name_hash);
  free_root(&table->mem_root, MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
993 994 995 996 997 998 999 1000
  DBUG_RETURN(error);
}


/* Deallocate temporary blob storage */

void free_blobs(register TABLE *table)
{
1001 1002 1003 1004 1005
  uint *ptr, *end;
  for (ptr= table->s->blob_field, end=ptr + table->s->blob_fields ;
       ptr != end ;
       ptr++)
    ((Field_blob*) table->field[*ptr])->free();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
}


	/* Find where a form starts */
	/* if formname is NullS then only formnames is read */

ulong get_form_pos(File file, uchar *head, TYPELIB *save_names)
{
  uint a_length,names,length;
  uchar *pos,*buf;
  ulong ret_value=0;
  DBUG_ENTER("get_form_pos");

  names=uint2korr(head+8);
  a_length=(names+2)*sizeof(my_string);		/* Room for two extra */

  if (!save_names)
    a_length=0;
  else
    save_names->type_names=0;			/* Clear if error */

  if (names)
  {
    length=uint2korr(head+4);
    VOID(my_seek(file,64L,MY_SEEK_SET,MYF(0)));
    if (!(buf= (uchar*) my_malloc((uint) length+a_length+names*4,
				  MYF(MY_WME))) ||
	my_read(file,(byte*) buf+a_length,(uint) (length+names*4),
		MYF(MY_NABP)))
    {						/* purecov: inspected */
      x_free((gptr) buf);			/* purecov: inspected */
      DBUG_RETURN(0L);				/* purecov: inspected */
    }
    pos= buf+a_length+length;
    ret_value=uint4korr(pos);
  }
  if (! save_names)
    my_free((gptr) buf,MYF(0));
  else if (!names)
    bzero((char*) save_names,sizeof(save_names));
  else
  {
    char *str;
    str=(char *) (buf+a_length);
    fix_type_pointers((const char ***) &buf,save_names,1,&str);
  }
  DBUG_RETURN(ret_value);
}


	/* Read string from a file with malloc */

int read_string(File file, gptr *to, uint length)
{
  DBUG_ENTER("read_string");

  x_free((gptr) *to);
  if (!(*to= (gptr) my_malloc(length+1,MYF(MY_WME))) ||
      my_read(file,(byte*) *to,length,MYF(MY_NABP)))
  {
    x_free((gptr) *to); /* purecov: inspected */
    *to= 0; /* purecov: inspected */
    DBUG_RETURN(1); /* purecov: inspected */
  }
  *((char*) *to+length)= '\0';
  DBUG_RETURN (0);
} /* read_string */


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

ulong make_new_entry(File file, uchar *fileinfo, TYPELIB *formnames,
		     const char *newname)
{
  uint i,bufflength,maxlength,n_length,length,names;
  ulong endpos,newpos;
  char buff[IO_SIZE];
  uchar *pos;
  DBUG_ENTER("make_new_entry");

1086
  length=(uint) strlen(newname)+1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1087 1088 1089 1090 1091 1092 1093 1094 1095
  n_length=uint2korr(fileinfo+4);
  maxlength=uint2korr(fileinfo+6);
  names=uint2korr(fileinfo+8);
  newpos=uint4korr(fileinfo+10);

  if (64+length+n_length+(names+1)*4 > maxlength)
  {						/* Expand file */
    newpos+=IO_SIZE;
    int4store(fileinfo+10,newpos);
1096
    endpos=(ulong) my_seek(file,0L,MY_SEEK_END,MYF(0));/* Copy from file-end */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
    bufflength= (uint) (endpos & (IO_SIZE-1));	/* IO_SIZE is a power of 2 */

    while (endpos > maxlength)
    {
      VOID(my_seek(file,(ulong) (endpos-bufflength),MY_SEEK_SET,MYF(0)));
      if (my_read(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME)))
	DBUG_RETURN(0L);
      VOID(my_seek(file,(ulong) (endpos-bufflength+IO_SIZE),MY_SEEK_SET,
		   MYF(0)));
      if ((my_write(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME))))
	DBUG_RETURN(0);
      endpos-=bufflength; bufflength=IO_SIZE;
    }
    bzero(buff,IO_SIZE);			/* Null new block */
    VOID(my_seek(file,(ulong) maxlength,MY_SEEK_SET,MYF(0)));
    if (my_write(file,(byte*) buff,bufflength,MYF(MY_NABP+MY_WME)))
	DBUG_RETURN(0L);
    maxlength+=IO_SIZE;				/* Fix old ref */
    int2store(fileinfo+6,maxlength);
    for (i=names, pos= (uchar*) *formnames->type_names+n_length-1; i-- ;
	 pos+=4)
    {
      endpos=uint4korr(pos)+IO_SIZE;
      int4store(pos,endpos);
    }
  }

  if (n_length == 1 )
  {						/* First name */
    length++;
    VOID(strxmov(buff,"/",newname,"/",NullS));
  }
  else
    VOID(strxmov(buff,newname,"/",NullS)); /* purecov: inspected */
  VOID(my_seek(file,63L+(ulong) n_length,MY_SEEK_SET,MYF(0)));
  if (my_write(file,(byte*) buff,(uint) length+1,MYF(MY_NABP+MY_WME)) ||
      (names && my_write(file,(byte*) (*formnames->type_names+n_length-1),
			 names*4, MYF(MY_NABP+MY_WME))) ||
      my_write(file,(byte*) fileinfo+10,(uint) 4,MYF(MY_NABP+MY_WME)))
    DBUG_RETURN(0L); /* purecov: inspected */

  int2store(fileinfo+8,names+1);
  int2store(fileinfo+4,n_length+length);
1140
  VOID(my_chsize(file, newpos, 0, MYF(MY_WME)));/* Append file with '\0' */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1141 1142 1143 1144 1145 1146
  DBUG_RETURN(newpos);
} /* make_new_entry */


	/* error message when opening a form file */

1147 1148
static void frm_error(int error, TABLE *form, const char *name,
                      myf errortype, int errarg)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1149 1150 1151 1152
{
  int err_no;
  char buff[FN_REFLEN];
  const char *form_dev="",*datext;
1153
  const char *real_name= (char*) name+dirname_length(name);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
  DBUG_ENTER("frm_error");

  switch (error) {
  case 1:
    if (my_errno == ENOENT)
    {
      char *db;
      uint length=dirname_part(buff,name);
      buff[length-1]=0;
      db=buff+dirname_length(buff);
1164
      my_error(ER_NO_SUCH_TABLE, MYF(0), db, real_name);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1165 1166
    }
    else
1167 1168
      my_error(ER_FILE_NOT_FOUND, errortype,
               fn_format(buff, name, form_dev, reg_ext, 0), my_errno);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1169 1170 1171
    break;
  case 2:
  {
1172 1173
    datext= form->file ? *form->file->bas_ext() : "";
    datext= datext==NullS ? "" : datext;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1174 1175 1176
    err_no= (my_errno == ENOENT) ? ER_FILE_NOT_FOUND : (my_errno == EAGAIN) ?
      ER_FILE_USED : ER_CANT_OPEN_FILE;
    my_error(err_no,errortype,
1177
	     fn_format(buff,real_name,form_dev,datext,2),my_errno);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1178 1179
    break;
  }
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
  case 5:
  {
    const char *csname= get_charset_name((uint) errarg);
    char tmp[10];
    if (!csname || csname[0] =='?')
    {
      my_snprintf(tmp, sizeof(tmp), "#%d", errarg);
      csname= tmp;
    }
    my_printf_error(ER_UNKNOWN_COLLATION,
                    "Unknown collation '%s' in table '%-.64s' definition", 
1191
                    MYF(0), csname, real_name);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1192 1193
    break;
  }
1194 1195 1196 1197 1198 1199
  case 6:
    my_printf_error(ER_NOT_FORM_FILE,
                    "Table '%-.64s' was created with a different version "
                    "of MySQL and cannot be read",
                    MYF(0), name);
    break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1200 1201
  default:				/* Better wrong error than none */
  case 4:
1202 1203
    my_error(ER_NOT_FORM_FILE, errortype,
             fn_format(buff, name, form_dev, reg_ext, 0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1204 1205 1206 1207 1208 1209 1210 1211
    break;
  }
  DBUG_VOID_RETURN;
} /* frm_error */


	/*
	** fix a str_type to a array type
1212
	** typeparts separated with some char. differents types are separated
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
	** 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;
      }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1237
      ptr+=2;				/* Skip end mark and last 0 */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
    }
    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 */


1250
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1251
{
1252
  TYPELIB *result= (TYPELIB*) alloc_root(mem_root, sizeof(TYPELIB));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1253 1254 1255 1256
  if (!result)
    return 0;
  result->count=strings.elements;
  result->name="";
1257
  uint nbytes= (sizeof(char*) + sizeof(uint)) * (result->count + 1);
1258
  if (!(result->type_names= (const char**) alloc_root(mem_root, nbytes)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1259
    return 0;
1260
  result->type_lengths= (uint*) (result->type_names + result->count + 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1261 1262 1263
  List_iterator<String> it(strings);
  String *tmp;
  for (uint i=0; (tmp=it++) ; i++)
1264 1265 1266 1267 1268 1269
  {
    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;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1270 1271 1272 1273
  return result;
}


1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
/*
 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
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1286 1287 1288 1289

static uint find_field(TABLE *form,uint start,uint length)
{
  Field **field;
1290
  uint i, pos, fields;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1291 1292

  pos=0;
1293 1294
  fields= form->s->fields;
  for (field=form->field, i=1 ; i<= fields ; i++,field++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
  {
    if ((*field)->offset() == start)
    {
      if ((*field)->key_length() == length)
	return (i);
      if (!pos || form->field[pos-1]->pack_length() <
	  (*field)->pack_length())
	pos=i;
    }
  }
  return (pos);
}


1309
	/* Check that the integer is in the internal */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330

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

	/* Adjust number to next larger disk buffer */

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


1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
/*
  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.
*/
1344

1345
void append_unescaped(String *res, const char *pos, uint length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1346
{
1347 1348 1349 1350
  const char *end= pos+length;
  res->append('\'');

  for (; pos != end ; pos++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1351
  {
monty@mysql.com's avatar
monty@mysql.com committed
1352
#if defined(USE_MB) && MYSQL_VERSION_ID < 40100
bar@mysql.com's avatar
bar@mysql.com committed
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
    uint mblen;
    if (use_mb(default_charset_info) &&
        (mblen= my_ismbchar(default_charset_info, pos, end)))
    {
      res->append(pos, mblen);
      pos+= mblen;
      continue;
    }
#endif

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
    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':
1373
      res->append('\\');		/* This gives better readability */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
      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;
    }
  }
1389
  res->append('\'');
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1390 1391 1392 1393
}

	/* Create a .frm file */

1394 1395
File create_frm(THD *thd, my_string name, const char *db,
                const char *table, uint reclength, uchar *fileinfo,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1396 1397 1398 1399 1400
		HA_CREATE_INFO *create_info, uint keys)
{
  register File file;
  ulong length;
  char fill[IO_SIZE];
1401 1402 1403 1404
  int create_flags= O_RDWR | O_TRUNC;

  if (create_info->options & HA_LEX_CREATE_TMP_TABLE)
    create_flags|= O_EXCL | O_NOFOLLOW;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1405 1406

#if SIZEOF_OFF_T > 4
monty@mysql.com's avatar
monty@mysql.com committed
1407
  /* Fix this when we have new .frm files;  Current limit is 4G rows (QQ) */
1408 1409 1410 1411
  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;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1412
#endif
1413 1414 1415 1416 1417
  /*
    Ensure that raid_chunks can't be larger than 255, as this would cause
    problems with drop database
  */
  set_if_smaller(create_info->raid_chunks, 255);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1418

1419
  if ((file= my_create(name, CREATE_MODE, create_flags, MYF(0))) >= 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1420
  {
1421 1422
    uint key_length, tmp_key_length;
    uint tmp;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1423
    bzero((char*) fileinfo,64);
1424 1425 1426 1427 1428
    /* header */
    fileinfo[0]=(uchar) 254;
    fileinfo[1]= 1;
    fileinfo[2]= FRM_VER+3+ test(create_info->varchar);

1429
    fileinfo[3]= (uchar) ha_checktype(thd,create_info->db_type,0,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1430 1431 1432
    fileinfo[4]=1;
    int2store(fileinfo+6,IO_SIZE);		/* Next block starts here */
    key_length=keys*(7+NAME_LEN+MAX_REF_PARTS*9)+16;
1433 1434
    length= next_io_size((ulong) (IO_SIZE+key_length+reclength+
                                  create_info->extra_size));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1435
    int4store(fileinfo+10,length);
1436 1437
    tmp_key_length= (key_length < 0xffff) ? key_length : 0xffff;
    int2store(fileinfo+14,tmp_key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1438 1439 1440 1441 1442 1443 1444
    int2store(fileinfo+16,reclength);
    int4store(fileinfo+18,create_info->max_rows);
    int4store(fileinfo+22,create_info->min_rows);
    fileinfo[27]=2;				// Use long pack-fields
    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
1445
    fileinfo[33]=5;                             // Mark for 5.0 frm file
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1446
    int4store(fileinfo+34,create_info->avg_row_length);
1447 1448
    fileinfo[38]= (create_info->default_table_charset ?
		   create_info->default_table_charset->number : 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1449 1450 1451 1452
    fileinfo[40]= (uchar) create_info->row_type;
    fileinfo[41]= (uchar) create_info->raid_type;
    fileinfo[42]= (uchar) create_info->raid_chunks;
    int4store(fileinfo+43,create_info->raid_chunksize);
1453 1454 1455
    int4store(fileinfo+47, key_length);
    tmp= MYSQL_VERSION_ID;          // Store to avoid warning from int4store
    int4store(fileinfo+51, tmp);
1456
    int2store(fileinfo+55, create_info->extra_size);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
    bzero(fill,IO_SIZE);
    for (; length > IO_SIZE ; length-= IO_SIZE)
    {
      if (my_write(file,(byte*) fill,IO_SIZE,MYF(MY_WME | MY_NABP)))
      {
	VOID(my_close(file,MYF(0)));
	VOID(my_delete(name,MYF(0)));
	return(-1);
      }
    }
  }
1468 1469 1470 1471 1472 1473 1474
  else
  {
    if (my_errno == ENOENT)
      my_error(ER_BAD_DB_ERROR,MYF(0),db);
    else
      my_error(ER_CANT_CREATE_TABLE,MYF(0),table,my_errno);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1475 1476 1477 1478 1479 1480
  return (file);
} /* create_frm */


void update_create_info_from_table(HA_CREATE_INFO *create_info, TABLE *table)
{
1481
  TABLE_SHARE *share= table->s;
1482
  DBUG_ENTER("update_create_info_from_table");
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492

  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->raid_type= share->raid_type;
  create_info->raid_chunks= share->raid_chunks;
  create_info->raid_chunksize= share->raid_chunksize;
  create_info->default_table_charset= share->table_charset;
1493
  create_info->table_charset= 0;
1494

1495
  DBUG_VOID_RETURN;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1496
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507

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


vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
/*
  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
1518 1519
    1   string is empty
    0	all ok
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1520 1521 1522 1523
*/

bool get_field(MEM_ROOT *mem, Field *field, String *res)
{
1524
  char buff[MAX_FIELD_WIDTH], *to;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1525
  String str(buff,sizeof(buff),&my_charset_bin);
1526 1527
  uint length;

1528
  field->val_str(&str);
1529
  if (!(length= str.length()))
1530 1531
  {
    res->length(0);
1532
    return 1;
1533 1534 1535
  }
  if (!(to= strmake_root(mem, str.ptr(), length)))
    length= 0;                                  // Safety fix
1536 1537
  res->set(to, length, ((Field_str*)field)->charset());
  return 0;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1538 1539
}

1540

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1541
/*
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
  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
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1552 1553
*/

1554
char *get_field(MEM_ROOT *mem, Field *field)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1555
{
monty@mysql.com's avatar
monty@mysql.com committed
1556
  char buff[MAX_FIELD_WIDTH], *to;
1557
  String str(buff,sizeof(buff),&my_charset_bin);
1558 1559
  uint length;

1560
  field->val_str(&str);
monty@mysql.com's avatar
monty@mysql.com committed
1561
  length= str.length();
1562
  if (!length || !(to= (char*) alloc_root(mem,length+1)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1563 1564 1565 1566 1567 1568
    return NullS;
  memcpy(to,str.ptr(),(uint) length);
  to[length]=0;
  return to;
}

1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585

/*
  Check if database name is valid

  SYNPOSIS
    check_db_name()
    name		Name of database

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

  RETURN
    0	ok
    1   error
*/

bool check_db_name(char *name)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1586
{
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1587
  char *start=name;
monty@mysql.com's avatar
monty@mysql.com committed
1588 1589
  /* Used to catch empty names and names with end space */
  bool last_char_is_space= TRUE;
1590

1591
  if (lower_case_table_names && name != any_db)
1592
    my_casedn_str(files_charset_info, name);
1593

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1594 1595 1596
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1597
    last_char_is_space= my_isspace(default_charset_info, *name);
1598
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1599
    {
1600
      int len=my_ismbchar(system_charset_info, name, 
1601
                          name+system_charset_info->mbmaxlen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1602 1603 1604 1605 1606 1607
      if (len)
      {
        name += len;
        continue;
      }
    }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1608
#else
1609
    last_char_is_space= *name==' ';
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1610
#endif
1611 1612
    if (*name == '/' || *name == '\\' || *name == FN_LIBCHAR ||
	*name == FN_EXTCHAR)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1613 1614 1615
      return 1;
    name++;
  }
1616
  return last_char_is_space || (uint) (name - start) > NAME_LEN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1617 1618 1619 1620 1621 1622
}


/*
  Allow anything as a table name, as long as it doesn't contain an
  a '/', or a '.' character
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1623
  or ' ' at the end
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1624 1625 1626 1627 1628 1629 1630
  returns 1 on error
*/


bool check_table_name(const char *name, uint length)
{
  const char *end= name+length;
1631 1632
  if (!length || length > NAME_LEN)
    return 1;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1633
#if defined(USE_MB) && defined(USE_MB_IDENT)
1634
  bool last_char_is_space= FALSE;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1635 1636 1637 1638
#else
  if (name[length-1]==' ')
    return 1;
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1639 1640 1641 1642

  while (name != end)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1643
    last_char_is_space= my_isspace(default_charset_info, *name);
1644
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1645
    {
1646
      int len=my_ismbchar(system_charset_info, name, end);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1647 1648 1649 1650 1651 1652 1653
      if (len)
      {
        name += len;
        continue;
      }
    }
#endif
1654
    if (*name == '/' || *name == '\\' || *name == FN_EXTCHAR)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1655 1656 1657
      return 1;
    name++;
  }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1658
#if defined(USE_MB) && defined(USE_MB_IDENT)
1659 1660
  return last_char_is_space;
#else
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1661
  return 0;
1662
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1663 1664
}

monty@mysql.com's avatar
monty@mysql.com committed
1665

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1666 1667
bool check_column_name(const char *name)
{
1668
  const char *start= name;
monty@mysql.com's avatar
monty@mysql.com committed
1669
  bool last_char_is_space= TRUE;
1670
  
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1671 1672 1673
  while (*name)
  {
#if defined(USE_MB) && defined(USE_MB_IDENT)
1674
    last_char_is_space= my_isspace(default_charset_info, *name);
1675
    if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1676
    {
1677
      int len=my_ismbchar(system_charset_info, name, 
1678
                          name+system_charset_info->mbmaxlen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1679 1680 1681 1682 1683 1684
      if (len)
      {
        name += len;
        continue;
      }
    }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1685
#else
1686
    last_char_is_space= *name==' ';
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1687 1688 1689 1690 1691
#endif
    if (*name == NAMES_SEP_CHAR)
      return 1;
    name++;
  }
1692
  /* Error if empty or too long column name */
monty@mysql.com's avatar
monty@mysql.com committed
1693
  return last_char_is_space || (uint) (name - start) > NAME_LEN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1694 1695 1696
}

/*
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
  Create Item_field for each column in the table.

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

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

  RETURN VALUE
    0                    success
    1                    out of memory
*/

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

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

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

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

void st_table::reset_item_list(List<Item> *item_list) const
{
  List_iterator_fast<Item> it(*item_list);
  for (Field **ptr= field; *ptr; ptr++)
  {
    Item_field *item_field= (Item_field*) it++;
    DBUG_ASSERT(item_field != 0);
    item_field->reset_field(*ptr);
  }
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1753

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1754 1755 1756 1757 1758 1759 1760
/*
  calculate md5 of query

  SYNOPSIS
    st_table_list::calc_md5()
    buffer	buffer for md5 writing
*/
1761

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1762 1763 1764
void  st_table_list::calc_md5(char *buffer)
{
  my_MD5_CTX context;
1765 1766 1767 1768
  uchar digest[16];
  my_MD5Init(&context);
  my_MD5Update(&context,(uchar *) query.str, query.length);
  my_MD5Final(digest, &context);
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
  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]);
}


/*
1779
  set underlying TABLE for table place holder of VIEW
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1780

1781 1782 1783
  DESCRIPTION
    Replace all views that only uses one table with the table itself.
    This allows us to treat the view as a simple table and even update
1784
    it (it is a kind of optimisation)
1785

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1786
  SYNOPSIS
1787
    st_table_list::set_underlying_merge()
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1788
*/
1789

1790
void st_table_list::set_underlying_merge()
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1791
{
1792 1793
  TABLE_LIST *tbl;

1794
  if ((tbl= merge_underlying_list))
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
1795
  {
1796
    /* This is a view. Process all tables of view */
1797
    DBUG_ASSERT(view && effective_algorithm == VIEW_ALGORITHM_MERGE);
1798 1799
    do
    {
1800
      if (tbl->merge_underlying_list)          // This is a view
1801
      {
1802 1803
        DBUG_ASSERT(tbl->view &&
                    tbl->effective_algorithm == VIEW_ALGORITHM_MERGE);
1804 1805 1806 1807
        /*
          This is the only case where set_ancestor is called on an object
          that may not be a view (in which case ancestor is 0)
        */
1808
        tbl->merge_underlying_list->set_underlying_merge();
1809 1810 1811
      }
    } while ((tbl= tbl->next_local));

igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
1812
    if (!multitable_view)
1813
    {
1814 1815
      table= merge_underlying_list->table;
      schema_table= merge_underlying_list->schema_table;
1816
    }
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
1817
  }
1818 1819 1820
}


bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1821 1822 1823 1824
/*
  setup fields of placeholder of merged VIEW

  SYNOPSIS
1825
    st_table_list::setup_underlying()
1826
    thd		    - thread handler
1827

1828 1829
  DESCRIPTION
    It is:
1830
    - preparing translation table for view columns
1831 1832
    If there are underlying view(s) procedure first will be called for them.

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1833
  RETURN
1834 1835
    FALSE - OK
    TRUE  - error
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1836
*/
1837

1838
bool st_table_list::setup_underlying(THD *thd)
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1839
{
1840 1841 1842
  DBUG_ENTER("st_table_list::setup_underlying");

  if (!field_translation && merge_underlying_list)
1843
  {
1844 1845 1846 1847 1848 1849 1850 1851 1852
    Field_translator *transl;
    SELECT_LEX *select= &view->select_lex;
    Item *item;
    TABLE_LIST *tbl;
    List_iterator_fast<Item> it(select->item_list);
    uint field_count= 0;

    if (check_stack_overrun(thd, STACK_MIN_SIZE, (char *)&field_count))
    {
1853
      DBUG_RETURN(TRUE);
1854
    }
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1855

1856
    for (tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
1857
    {
1858 1859
      if (tbl->merge_underlying_list &&
          tbl->setup_underlying(thd))
1860 1861 1862 1863
      {
        DBUG_RETURN(TRUE);
      }
    }
1864

1865 1866 1867
    /* Create view fields translation table */

    if (!(transl=
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1868
          (Field_translator*)(thd->stmt_arena->
1869 1870
                              alloc(select->item_list.elements *
                                    sizeof(Field_translator)))))
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1871
    {
1872
      DBUG_RETURN(TRUE);
1873
    }
1874 1875

    while ((item= it++))
1876
    {
1877 1878
      transl[field_count].name= item->name;
      transl[field_count++].item= item;
1879
    }
1880 1881 1882
    field_translation= transl;
    field_translation_end= transl + field_count;
    /* TODO: use hash for big number of fields */
1883

1884 1885
    /* full text function moving to current select */
    if (view->select_lex.ftfunc_list->elements)
1886
    {
1887 1888 1889 1890 1891 1892
      Item_func_match *ifm;
      SELECT_LEX *current_select= thd->lex->current_select;
      List_iterator_fast<Item_func_match>
        li(*(view->select_lex.ftfunc_list));
      while ((ifm= li++))
        current_select->ftfunc_list->push_front(ifm);
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1893 1894
    }
  }
1895 1896
  DBUG_RETURN(FALSE);
}
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1897

1898

1899 1900
/*
  Prepare where expression of view
1901

1902 1903 1904 1905 1906 1907
  SYNOPSIS
    st_table_list::prep_where()
    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
1908

1909 1910
  NOTE: have to be called befor CHECK OPTION preparation, because it makes
  fix_fields for view WHERE clause
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1911

1912 1913 1914 1915
  RETURN
    FALSE - OK
    TRUE  - error
*/
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1916

1917 1918 1919 1920 1921
bool st_table_list::prep_where(THD *thd, Item **conds,
                               bool no_where_clause)
{
  DBUG_ENTER("st_table_list::prep_where");

1922
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
1923
  {
1924 1925 1926 1927
    if (tbl->view && tbl->prep_where(thd, conds, no_where_clause))
    {
      DBUG_RETURN(TRUE);
    }
1928
  }
1929

1930 1931 1932
  if (where)
  {
    if (!where->fixed && where->fix_fields(thd, &where))
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1933
    {
1934
      DBUG_RETURN(TRUE);
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1935
    }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1936 1937 1938 1939 1940

    /*
      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)
    */
1941
    if (!no_where_clause && !where_processed)
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1942
    {
1943
      TABLE_LIST *tbl= this;
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1944 1945
      Query_arena *arena= thd->stmt_arena, backup;
      arena= thd->activate_stmt_arena_if_needed(&backup);  // For easier test
1946

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1947 1948
      /* Go up to join tree and try to find left join */
      for (; tbl; tbl= tbl->embedding)
1949
      {
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1950 1951 1952 1953
        if (tbl->outer_join)
        {
          /*
            Store WHERE condition to ON expression for outer join, because
1954
            we can't use WHERE to correctly execute left joins on VIEWs and
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1955 1956 1957 1958 1959 1960
            this expression will not be moved to WHERE condition (i.e. will
            be clean correctly for PS/SP)
          */
          tbl->on_expr= and_conds(tbl->on_expr, where);
          break;
        }
1961
      }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1962
      if (tbl == 0)
1963 1964
        *conds= and_conds(*conds, where);
      if (arena)
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1965
        thd->restore_active_arena(arena, &backup);
1966
      where_processed= TRUE;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1967 1968
    }
  }
1969

1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
  DBUG_RETURN(FALSE);
}


/*
  Prepare check option expression of table

  SYNOPSIS
    st_table_list::prep_check_option()
    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
    This method build check options for every call
    (usual execution or every SP/PS call)
    This method have to be called after WHERE preparation
    (st_table_list::prep_where)
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1994

1995 1996 1997 1998 1999 2000 2001 2002 2003
  RETURN
    FALSE - OK
    TRUE  - error
*/

bool st_table_list::prep_check_option(THD *thd, uint8 check_opt_type)
{
  DBUG_ENTER("st_table_list::prep_check_option");

2004
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
2005
  {
2006 2007 2008 2009 2010 2011
    /* see comment of check_opt_type parameter */
    if (tbl->view &&
        tbl->prep_check_option(thd,
                               ((check_opt_type == VIEW_CHECK_CASCADED) ?
                                VIEW_CHECK_CASCADED :
                                VIEW_CHECK_NONE)))
2012
    {
2013
      DBUG_RETURN(TRUE);
2014 2015
    }
  }
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2016

2017
  if (check_opt_type)
2018
  {
2019 2020 2021 2022 2023 2024 2025 2026
    Item *item= 0;
    if (where)
    {
      DBUG_ASSERT(where->fixed);
      item= where->copy_andor_structure(thd);
    }
    if (check_opt_type == VIEW_CHECK_CASCADED)
    {
2027
      for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047
      {
        if (tbl->check_option)
          item= and_conds(item, tbl->check_option);
      }
    }
    if (item)
      thd->change_item_tree(&check_option, item);
  }

  if (check_option)
  {
    const char *save_where= thd->where;
    thd->where= "check option";
    if (!check_option->fixed &&
        check_option->fix_fields(thd, &check_option) ||
        check_option->check_cols(1))
    {
      DBUG_RETURN(TRUE);
    }
    thd->where= save_where;
2048
  }
2049 2050 2051
  DBUG_RETURN(FALSE);
}

2052

2053 2054 2055 2056 2057 2058
/*
  Hide errors which show view underlying table information

  SYNOPSIS
    st_table_list::hide_view_error()
    thd     thread handler
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2059

2060 2061 2062 2063
*/

void st_table_list::hide_view_error(THD *thd)
{
2064 2065
  /* Hide "Unknown column" or "Unknown function" error */
  if (thd->net.last_errno == ER_BAD_FIELD_ERROR ||
2066 2067 2068
      thd->net.last_errno == ER_SP_DOES_NOT_EXIST ||
      thd->net.last_errno == ER_PROCACCESS_DENIED_ERROR ||
      thd->net.last_errno == ER_COLUMNACCESS_DENIED_ERROR)
2069
  {
2070
    TABLE_LIST *top= top_table();
2071
    thd->clear_error();
2072
    my_error(ER_VIEW_INVALID, MYF(0), top->view_db.str, top->view_name.str);
2073
  }
2074 2075
  else if (thd->net.last_errno == ER_NO_DEFAULT_FOR_FIELD)
  {
2076
    TABLE_LIST *top= top_table();
2077 2078
    thd->clear_error();
    // TODO: make correct error message
2079 2080
    my_error(ER_NO_DEFAULT_FOR_VIEW_FIELD, MYF(0),
             top->view_db.str, top->view_name.str);
2081
  }
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2082 2083 2084
}


2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100
/*
  Find underlying base tables (TABLE_LIST) which represent given
  table_to_find (TABLE)

  SYNOPSIS
    st_table_list::find_underlying_table()
    table_to_find table to find

  RETURN
    0  table is not found
    found table reference
*/

st_table_list *st_table_list::find_underlying_table(TABLE *table_to_find)
{
  /* is this real table and table which we are looking for? */
2101
  if (table == table_to_find && merge_underlying_list == 0)
2102 2103
    return this;

2104
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
2105 2106 2107 2108 2109 2110 2111 2112
  {
    TABLE_LIST *result;
    if ((result= tbl->find_underlying_table(table_to_find)))
      return result;
  }
  return 0;
}

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
/*
  cleunup items belonged to view fields translation table

  SYNOPSIS
    st_table_list::cleanup_items()
*/

void st_table_list::cleanup_items()
{
  if (!field_translation)
    return;

2125 2126 2127
  for (Field_translator *transl= field_translation;
       transl < field_translation_end;
       transl++)
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2128
    transl->item->walk(&Item::cleanup_processor, 0);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2129 2130 2131
}


bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148
/*
  check CHECK OPTION condition

  SYNOPSIS
    check_option()
    ignore_failure ignore check option fail

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

int st_table_list::view_check_option(THD *thd, bool ignore_failure)
{
  if (check_option && check_option->val_int() == 0)
  {
2149
    TABLE_LIST *view= top_table();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2150 2151 2152 2153
    if (ignore_failure)
    {
      push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
                          ER_VIEW_CHECK_FAILED, ER(ER_VIEW_CHECK_FAILED),
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2154
                          view->view_db.str, view->view_name.str);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2155 2156 2157 2158
      return(VIEW_CHECK_SKIP);
    }
    else
    {
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2159
      my_error(ER_VIEW_CHECK_FAILED, MYF(0), view->view_db.str, view->view_name.str);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2160 2161 2162 2163 2164 2165 2166
      return(VIEW_CHECK_ERROR);
    }
  }
  return(VIEW_CHECK_OK);
}


2167
/*
2168
  Find table in underlying tables by mask and check that only this
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2169
  table belong to given mask
2170 2171 2172 2173 2174 2175 2176

  SYNOPSIS
    st_table_list::check_single_table()
    table	reference on variable where to store found table
		(should be 0 on call, to find table, or point to table for
		unique test)
    map         bit mask of tables
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2177
    view        view for which we are looking table
2178 2179

  RETURN
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2180 2181
    FALSE table not found or found only one
    TRUE  found several tables
2182 2183
*/

igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2184 2185
bool st_table_list::check_single_table(st_table_list **table, table_map map,
                                       st_table_list *view)
2186
{
2187
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
2188 2189 2190 2191 2192 2193
  {
    if (tbl->table)
    {
      if (tbl->table->map & map)
      {
	if (*table)
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2194
	  return TRUE;
2195 2196
        *table= tbl;
        tbl->check_option= view->check_option;
2197 2198
      }
    }
2199 2200
    else if (tbl->check_single_table(table, map, view))
      return TRUE;
2201
  }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2202
  return FALSE;
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223
}


/*
  Set insert_values buffer

  SYNOPSIS
    set_insert_values()
    mem_root   memory pool for allocating

  RETURN
    FALSE - OK
    TRUE  - out of memory
*/

bool st_table_list::set_insert_values(MEM_ROOT *mem_root)
{
  if (table)
  {
    if (!table->insert_values &&
        !(table->insert_values= (byte *)alloc_root(mem_root,
2224
                                                   table->s->rec_buff_length)))
2225 2226 2227 2228
      return TRUE;
  }
  else
  {
2229 2230
    DBUG_ASSERT(view && merge_underlying_list);
    for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
2231 2232 2233 2234 2235 2236 2237
      if (tbl->set_insert_values(mem_root))
        return TRUE;
  }
  return FALSE;
}


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 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
/*
  Test if this is a leaf with respect to name resolution.

  SYNOPSIS
    st_table_list::is_leaf_for_name_resolution()

  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.
*/
bool st_table_list::is_leaf_for_name_resolution()
{
  return (view || is_natural_join || is_join_columns_complete ||
          !nested_join);
}


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

  SYNOPSIS
    st_table_list::first_leaf_for_name_resolution()

  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
2279
    If 'this' is a nested table reference - the left-most child of
2280
      the tree rooted in 'this',
2281
    else return 'this'
2282 2283 2284 2285
*/

TABLE_LIST *st_table_list::first_leaf_for_name_resolution()
{
2286 2287 2288
  TABLE_LIST *cur_table_ref;
  NESTED_JOIN *cur_nested_join;
  LINT_INIT(cur_table_ref);
2289

2290
  if (is_leaf_for_name_resolution())
2291
    return this;
2292
  DBUG_ASSERT(nested_join);
2293

2294 2295 2296
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
2297 2298 2299 2300
  {
    List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
    cur_table_ref= it++;
    /*
2301 2302 2303 2304
      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.
2305 2306 2307
    */
    if (!(cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
2308
      TABLE_LIST *next;
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 2341 2342 2343 2344
      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
    st_table_list::last_leaf_for_name_resolution()

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

TABLE_LIST *st_table_list::last_leaf_for_name_resolution()
{
  TABLE_LIST *cur_table_ref= this;
2345
  NESTED_JOIN *cur_nested_join;
2346

2347
  if (is_leaf_for_name_resolution())
2348
    return this;
2349
  DBUG_ASSERT(nested_join);
2350

2351 2352 2353
  for (cur_nested_join= nested_join;
       cur_nested_join;
       cur_nested_join= cur_table_ref->nested_join)
2354
  {
2355
    cur_table_ref= cur_nested_join->join_list.head();
2356
    /*
2357 2358 2359
      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.
2360 2361 2362 2363
    */
    if ((cur_table_ref->outer_join & JOIN_TYPE_RIGHT))
    {
      List_iterator_fast<TABLE_LIST> it(cur_nested_join->join_list);
2364
      TABLE_LIST *next;
2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375
      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;
}


2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
/*
  Register access mode which we need for underlying tables

  SYNOPSIS
    register_want_access()
    want_access          Acess which we require
*/

void st_table_list::register_want_access(ulong want_access)
{
  /* Remove SHOW_VIEW_ACL, because it will be checked during making view */
  want_access&= ~SHOW_VIEW_ACL;
  if (belong_to_view)
  {
    grant.want_privilege= want_access;
    if (table)
      table->grant.want_privilege= want_access;
  }
  for (TABLE_LIST *tbl= merge_underlying_list; tbl; tbl= tbl->next_local)
    tbl->register_want_access(want_access);
}


/*
2400
  Load security context information for this view
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491

  SYNOPSIS
    st_table_list::prepare_view_securety_context()
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
bool st_table_list::prepare_view_securety_context(THD *thd)
{
  DBUG_ENTER("st_table_list::prepare_view_securety_context");
  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);
    if (acl_getroot_no_password(view_sctx,
                                definer.user.str,
                                definer.host.str,
                                definer.host.str,
                                thd->db))
    {
      my_error(ER_NO_SUCH_USER, MYF(0), definer.user.str, definer.host.str);
      DBUG_RETURN(TRUE);
    }
  }
  DBUG_RETURN(FALSE);
}
#endif


/*
  Find security context of current view

  SYNOPSIS
    st_table_list::find_view_security_context()
    thd                  [in] thread handler

*/

#ifndef NO_EMBEDDED_ACCESS_CHECKS
Security_context *st_table_list::find_view_security_context(THD *thd)
{
  Security_context *sctx;
  TABLE_LIST *upper_view= this;
  DBUG_ENTER("st_table_list::find_view_security_context");

  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
    st_table_list::prepare_security()
    thd                  [in] thread handler

  RETURN
    FALSE  OK
    TRUE   Error
*/

bool st_table_list::prepare_security(THD *thd)
{
  List_iterator_fast<TABLE_LIST> tb(*view_tables);
  TABLE_LIST *tbl;
2492
  DBUG_ENTER("st_table_list::prepare_security");
2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  Security_context *save_security_ctx= thd->security_ctx;

  DBUG_ASSERT(!prelocking_placeholder);
  if (prepare_view_securety_context(thd))
    DBUG_RETURN(TRUE);
  thd->security_ctx= find_view_security_context(thd);
  while ((tbl= tb++))
  {
    DBUG_ASSERT(tbl->referencing_view);
    char *db, *table_name;
    if (tbl->view)
    {
      db= tbl->view_db.str;
      table_name= tbl->view_name.str;
    }
    else
    {
      db= tbl->db;
      table_name= tbl->table_name;
    }
    fill_effective_table_privileges(thd, &tbl->grant, db, table_name);
    if (tbl->table)
      tbl->table->grant= grant;
  }
  thd->security_ctx= save_security_ctx;
#else
  while ((tbl= tb++))
    tbl->grant.privilege= ~NO_ACCESS;
#endif
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2523
  DBUG_RETURN(FALSE);
2524 2525 2526
}


2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
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;
}


Natural_join_column::Natural_join_column(Field *field_param,
                                         TABLE_LIST *tab)
{
2541
  DBUG_ASSERT(tab->table == field_param->table);
2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555
  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;
  }
2556 2557

  return table_field->field_name;
2558 2559 2560 2561 2562 2563 2564 2565
}


Item *Natural_join_column::create_item(THD *thd)
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
2566 2567
    return create_view_field(thd, table_ref, &view_field->item,
                             view_field->name);
2568
  }
2569
  return new Item_field(thd, &thd->lex->current_select->context, table_field);
2570 2571 2572 2573 2574 2575 2576 2577 2578 2579
}


Field *Natural_join_column::field()
{
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
    return NULL;
  }
2580
  return table_field;
2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593
}


const char *Natural_join_column::table_name()
{
  return table_ref->alias;
}


const char *Natural_join_column::db_name()
{
  if (view_field)
    return table_ref->view_db.str;
2594 2595 2596 2597

  DBUG_ASSERT(!strcmp(table_ref->db,
                      table_ref->table->s->db));
  return table_ref->db;
2598 2599 2600 2601 2602 2603 2604
}


GRANT_INFO *Natural_join_column::grant()
{
  if (view_field)
    return &(table_ref->grant);
2605
  return &(table_ref->table->grant);
2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624
}



#ifndef NO_EMBEDDED_ACCESS_CHECKS

/*
  Check the access rights for the current join column.
  columns.

  SYNOPSIS
    Natural_join_column::check_grants()

  DESCRIPTION
    Check the access rights to a column from a natural join in a generic
    way that hides the heterogeneity of the column representation - whether
    it is a view or a stored table colum.

  RETURN
2625 2626
    FALSE  The column can be accessed
    TRUE   There are no access rights to all equivalent columns
2627 2628 2629 2630 2631
*/

bool
Natural_join_column::check_grants(THD *thd, const char *name, uint length)
{
2632
  GRANT_INFO *grant;
2633 2634
  const char *db_name;
  const char *table_name;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2635
  Security_context *save_security_ctx= thd->security_ctx;
2636 2637
  Security_context *new_sctx= table_ref->security_ctx;
  bool res;
2638

2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653
  if (view_field)
  {
    DBUG_ASSERT(table_field == NULL);
    grant= &(table_ref->grant);
    db_name= table_ref->view_db.str;
    table_name= table_ref->view_name.str;
  }
  else
  {
    DBUG_ASSERT(table_field && view_field == NULL);
    grant= &(table_ref->table->grant);
    db_name= table_ref->table->s->db;
    table_name= table_ref->table->s->table_name;
  }

2654 2655 2656
  if (new_sctx)
    thd->security_ctx= new_sctx;
  res= check_grant_column(thd, grant, db_name, table_name, name, length);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2657
  thd->security_ctx= save_security_ctx;
2658
  return res;
2659 2660 2661 2662
}
#endif


bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2663 2664
void Field_iterator_view::set(TABLE_LIST *table)
{
2665
  DBUG_ASSERT(table->field_translation);
2666
  view= table;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2667
  ptr= table->field_translation;
2668
  array_end= table->field_translation_end;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2669 2670 2671 2672 2673 2674 2675 2676 2677
}


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


2678
Item *Field_iterator_table::create_item(THD *thd)
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2679
{
2680
  return new Item_field(thd, &thd->lex->current_select->context, *ptr);
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2681 2682 2683 2684 2685
}


const char *Field_iterator_view::name()
{
2686
  return ptr->name;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2687 2688 2689
}


2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728
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)
  {
    /*
      In case of SHOW command (schema_table_reformed set) all items are
      fixed
    */
    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;
  if (thd->lex->current_select->no_wrap_view_item)
  {
    DBUG_RETURN(field);
  }
  Item *item= new Item_direct_view_ref(&view->view->select_lex.context,
2729
                                       field_ref, view->alias,
2730 2731 2732 2733 2734
                                       name);
  DBUG_RETURN(item);
}


2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749
void Field_iterator_natural_join::set(TABLE_LIST *table_ref)
{
  DBUG_ASSERT(table_ref->join_columns);
  delete column_ref_it;

  /*
    TODO: try not to allocate new iterator every time. If we have to,
    then check for out of memory condition.
  */
  column_ref_it= new List_iterator_fast<Natural_join_column>
                     (*(table_ref->join_columns));
  cur_column_ref= (*column_ref_it)++;
}


2750 2751 2752
void Field_iterator_natural_join::next()
{
  cur_column_ref= (*column_ref_it)++;
2753 2754 2755
  DBUG_ASSERT(!cur_column_ref || ! cur_column_ref->table_field ||
              cur_column_ref->table_ref->table ==
              cur_column_ref->table_field->table);
2756 2757 2758
}


2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785
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 ||
                table_ref->join_columns &&
                /* This is a merge view. */
                ((table_ref->field_translation &&
                  table_ref->join_columns->elements ==
                  (ulong)(table_ref->field_translation_end -
                          table_ref->field_translation)) ||
                 /* This is stored table or a tmptable view. */
                 (!table_ref->field_translation &&
                  table_ref->join_columns->elements ==
                  table_ref->table->s->fields)));
    field_it= &natural_join_it;
    DBUG_PRINT("info",("field_it for '%s' is Field_iterator_natural_join",
2786
                       table_ref->alias));
2787 2788 2789 2790 2791 2792 2793 2794
  }
  /* This is a merge view, so use field_translation. */
  else if (table_ref->field_translation)
  {
    DBUG_ASSERT(table_ref->view &&
                table_ref->effective_algorithm == VIEW_ALGORITHM_MERGE);
    field_it= &view_field_it;
    DBUG_PRINT("info", ("field_it for '%s' is Field_iterator_view",
2795
                        table_ref->alias));
2796 2797 2798 2799 2800 2801 2802
  }
  /* 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",
2803
                        table_ref->alias));
2804
  }
2805
  field_it->set(table_ref);
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
  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();
  }
}


const char *Field_iterator_table_ref::table_name()
{
  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();
2844 2845 2846 2847

  DBUG_ASSERT(!strcmp(table_ref->table_name,
                      table_ref->table->s->table_name));
  return table_ref->table_name;
2848 2849 2850 2851 2852 2853 2854 2855 2856
}


const char *Field_iterator_table_ref::db_name()
{
  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();
2857 2858 2859

  DBUG_ASSERT(!strcmp(table_ref->db, table_ref->table->s->db));
  return table_ref->db;
2860 2861 2862 2863 2864 2865 2866 2867 2868
}


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();
2869
  return &(table_ref->table->grant);
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886
}


/*
  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()
    thd         [in]  pointer to current thread
    is_created  [out] set to TRUE if the column was created,
                      FALSE if we return an already created colum

  DESCRIPTION
    TODO

  RETURN
2887 2888
    #     Pointer to a column of a natural join (or its operand)
    NULL  No memory to allocate the column
2889 2890 2891 2892 2893
*/

Natural_join_column *
Field_iterator_table_ref::get_or_create_column_ref(THD *thd, bool *is_created)
{
2894 2895
  Natural_join_column *nj_col;

2896 2897
  *is_created= TRUE;
  if (field_it == &table_field_it)
2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919
  {
    /* The field belongs to a stored table. */
    Field *field= table_field_it.field();
    nj_col= new Natural_join_column(field, table_ref);
  }
  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);
  }
  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.
    */
    *is_created= FALSE;
    nj_col= natural_join_it.column_ref();
    DBUG_ASSERT(nj_col);
  }
2920 2921
  DBUG_ASSERT(!nj_col->table_field ||
              nj_col->table_ref->table == nj_col->table_field->table);
2922
  return nj_col;
2923 2924 2925
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
2926 2927 2928 2929
/*****************************************************************************
** Instansiate templates
*****************************************************************************/

2930
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2931 2932 2933
template class List<String>;
template class List_iterator<String>;
#endif