~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2006 MySQL AB
2
1046 by Brian Aker
Merge Jay.
3
  This program is free software; you can redistribute it and/or modify
4
  it under the terms of the GNU General Public License as published by
5
  the Free Software Foundation; version 2 of the License.
6
7
  This program is distributed in the hope that it will be useful,
8
  but WITHOUT ANY WARRANTY; without even the implied warranty of
9
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
  GNU General Public License for more details.
11
12
  You should have received a copy of the GNU General Public License
13
  along with this program; if not, write to the Free Software
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
14
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
1 by brian
clean slate
15
16
17
/* Basic functions needed by many modules */
1241.9.36 by Monty Taylor
ZOMG. I deleted drizzled/server_includes.h.
18
#include "config.h"
1046.1.4 by Brian Aker
Move lazy read of refresh to outside of LOCK_open (we don't lock the refresh
19
#include <assert.h>
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
20
575.4.7 by Monty Taylor
More header cleanup.
21
#include <signal.h>
1 by brian
clean slate
22
481.1.15 by Monty Taylor
Removed time.h and sys/time.h from global.h.
23
#if TIME_WITH_SYS_TIME
24
# include <sys/time.h>
25
# include <time.h>
26
#else
27
# if HAVE_SYS_TIME_H
28
#  include <sys/time.h>
29
# else
30
#  include <time.h>
31
# endif
32
#endif
1241.9.64 by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal.
33
#include "drizzled/internal/my_pthread.h"
1689.2.10 by Brian Aker
Move thread_var out to its own include file.
34
#include "drizzled/internal/thread_var.h"
575.4.7 by Monty Taylor
More header cleanup.
35
36
#include <drizzled/sql_select.h>
37
#include <drizzled/error.h>
38
#include <drizzled/gettext.h>
39
#include <drizzled/nested_join.h>
40
#include <drizzled/sql_base.h>
41
#include <drizzled/show.h>
584.4.7 by Monty Taylor
Removed a big bank of includes from item.h.
42
#include <drizzled/item/cmpfunc.h>
1039.5.31 by Jay Pipes
This patch does a few things:
43
#include <drizzled/replication_services.h>
670.2.4 by Monty Taylor
Removed more stuff from the headers.
44
#include <drizzled/check_stack_overrun.h>
45
#include <drizzled/lock.h>
1130.1.12 by Monty Taylor
Moved service stuff into plugin/
46
#include <drizzled/plugin/listen.h>
1241.9.44 by Monty Taylor
Made magic with cached_directory.
47
#include "drizzled/cached_directory.h"
1130.3.1 by Monty Taylor
Moved multi_malloc into drizzled since it's not going away any time soon. Also,
48
#include <drizzled/field/timestamp.h>
49
#include <drizzled/field/null.h>
1241.9.23 by Monty Taylor
Removed sql_table.h from server_includes.h.
50
#include "drizzled/sql_table.h"
1241.9.28 by Monty Taylor
Removed global_charset_info.h from server_includes.h
51
#include "drizzled/global_charset_info.h"
1241.9.31 by Monty Taylor
Moved global pthread variables into their own header.
52
#include "drizzled/pthread_globals.h"
1241.9.64 by Monty Taylor
Moved remaining non-public portions of mysys and mystrings to drizzled/internal.
53
#include "drizzled/internal/iocache.h"
1300.5.2 by Monty Taylor
Changed build to build the almost all of drizzle into libdrizzled and then
54
#include "drizzled/drizzled.h"
1317.2.5 by Monty Taylor
Prevent the user from seeing or attempting to access tables that he is not
55
#include "drizzled/plugin/authorization.h"
1843.8.4 by Brian Aker
Committing refactor of table out (this is part of the concurrency work).
56
#include "drizzled/table/temporary.h"
1843.8.6 by Brian Aker
Move placeholder to table directory.
57
#include "drizzled/table/placeholder.h"
1241.9.28 by Monty Taylor
Removed global_charset_info.h from server_includes.h
58
1089.2.4 by David Shrewsbury
Put CachedDirectory in mysys namespace; added std namespace to sql_base.cc and default.cc to replace std::
59
using namespace std;
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
60
61
namespace drizzled
62
{
1089.2.4 by David Shrewsbury
Put CachedDirectory in mysys namespace; added std namespace to sql_base.cc and default.cc to replace std::
63
1241.9.33 by Monty Taylor
Moved most of the global vars to set_var where they belong.
64
extern bool volatile shutdown_in_progress;
65
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
66
TableOpenCache &get_open_cache()
1643 by Brian Aker
Encapsulate HASH for open_cache
67
{
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
68
  static TableOpenCache open_cache;				/* Used by mysql_test */
1643 by Brian Aker
Encapsulate HASH for open_cache
69
70
  return open_cache;
71
}
1637.4.1 by Brian Aker
Wrap unused access with a class.
72
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
73
static void free_cache_entry(table::Concurrent *entry);
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
74
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
75
void remove_table(table::Concurrent *arg)
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
76
{
77
  TableOpenCacheRange ppp;
78
  ppp= get_open_cache().equal_range(arg->getShare()->getCacheKey());
79
80
  for (TableOpenCache::const_iterator iter= ppp.first;
81
         iter != ppp.second; ++iter)
82
  {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
83
    table::Concurrent *found_table= (*iter).second;
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
84
85
    if (found_table == arg)
86
    {
87
      free_cache_entry(arg);
88
      get_open_cache().erase(iter);
89
      return;
90
    }
91
  }
92
}
93
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
94
static bool add_table(table::Concurrent *arg)
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
95
{
96
  TableOpenCache &open_cache(get_open_cache());
97
98
  TableOpenCache::iterator returnable= open_cache.insert(make_pair(arg->getShare()->getCacheKey(), arg));
99
100
  return not (returnable == open_cache.end());
101
}
102
1637.4.1 by Brian Aker
Wrap unused access with a class.
103
class UnusedTables {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
104
  table::Concurrent *tables;				/* Used by mysql_test */
1637.4.1 by Brian Aker
Wrap unused access with a class.
105
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
106
  table::Concurrent *getTable() const
1637.4.1 by Brian Aker
Wrap unused access with a class.
107
  {
108
    return tables;
109
  }
110
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
111
  table::Concurrent *setTable(Table *arg)
1637.4.1 by Brian Aker
Wrap unused access with a class.
112
  {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
113
    return tables= dynamic_cast<table::Concurrent *>(arg);
1637.4.1 by Brian Aker
Wrap unused access with a class.
114
  }
115
116
public:
117
118
  void cull()
119
  {
120
    /* Free cache if too big */
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
121
    while (cached_open_tables() > table_cache_size && getTable())
122
      remove_table(getTable());
1637.4.1 by Brian Aker
Wrap unused access with a class.
123
  }
124
125
  void cullByVersion()
126
  {
127
    while (getTable() && not getTable()->getShare()->getVersion())
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
128
      remove_table(getTable());
1637.4.1 by Brian Aker
Wrap unused access with a class.
129
  }
130
  
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
131
  void link(table::Concurrent *table)
1637.4.1 by Brian Aker
Wrap unused access with a class.
132
  {
133
    if (getTable())
134
    {
135
      table->setNext(getTable());		/* Link in last */
136
      table->setPrev(getTable()->getPrev());
137
      getTable()->setPrev(table);
138
      table->getPrev()->setNext(table);
139
    }
140
    else
141
    {
142
      table->setPrev(setTable(table));
143
      table->setNext(table->getPrev());
144
      assert(table->getNext() == table && table->getPrev() == table);
145
    }
146
  }
147
148
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
149
  void unlink(table::Concurrent *table)
1637.4.1 by Brian Aker
Wrap unused access with a class.
150
  {
151
    table->unlink();
152
153
    /* Unlink the table from "unused_tables" list. */
154
    if (table == getTable())
155
    {  // First unused
156
      setTable(getTable()->getNext()); // Remove from link
157
      if (table == getTable())
158
        setTable(NULL);
159
    }
160
  }
161
162
/* move table first in unused links */
163
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
164
  void relink(table::Concurrent *table)
1637.4.1 by Brian Aker
Wrap unused access with a class.
165
  {
166
    if (table != getTable())
167
    {
168
      table->unlink();
169
170
      table->setNext(getTable());			/* Link in unused tables */
171
      table->setPrev(getTable()->getPrev());
172
      getTable()->getPrev()->setNext(table);
173
      getTable()->setPrev(table);
174
      setTable(table);
175
    }
176
  }
177
178
179
  void clear()
180
  {
181
    while (getTable())
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
182
      remove_table(getTable());
1637.4.1 by Brian Aker
Wrap unused access with a class.
183
  }
184
185
  UnusedTables():
186
    tables(NULL)
187
  { }
188
189
  ~UnusedTables()
190
  { 
191
  }
192
};
193
194
static UnusedTables unused_tables;
1502.1.16 by Brian Aker
Remove members to functions that are no longer used.
195
static int open_unireg_entry(Session *session,
196
                             Table *entry,
356 by Brian Aker
Class cleanups... duplicates are in definitions and unireg :(
197
                             const char *alias,
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
198
                             TableIdentifier &identifier);
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
199
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
200
unsigned char *table_cache_key(const unsigned char *record,
201
                               size_t *length,
202
                               bool );
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
203
204
unsigned char *table_cache_key(const unsigned char *record,
205
                               size_t *length,
206
                               bool )
1 by brian
clean slate
207
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
208
  Table *entry=(Table*) record;
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
209
  *length= entry->getShare()->getCacheKey().size();
210
  return (unsigned char*) &entry->getShare()->getCacheKey()[0];
1 by brian
clean slate
211
}
212
213
bool table_cache_init(void)
214
{
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
215
  return false;
216
}
217
218
uint32_t cached_open_tables(void)
219
{
220
  return get_open_cache().size();
1 by brian
clean slate
221
}
222
223
void table_cache_free(void)
224
{
1109.1.4 by Brian Aker
More Table refactor
225
  refresh_version++;				// Force close of open tables
226
1637.4.1 by Brian Aker
Wrap unused access with a class.
227
  unused_tables.clear();
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
228
  get_open_cache().clear();
229
}
1 by brian
clean slate
230
231
/*
1208.3.2 by brian
Update for Cursor renaming.
232
  Close cursor handle, but leave the table in the table cache
1 by brian
clean slate
233
234
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
235
  close_handle_and_leave_table_as_lock()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
236
  table		Table Cursor
1 by brian
clean slate
237
238
  NOTES
1046 by Brian Aker
Merge Jay.
239
  By leaving the table in the table cache, it disallows any other thread
240
  to open the table
241
242
  session->killed will be set if we run out of memory
243
244
  If closing a MERGE child, the calling function has to take care for
245
  closing the parent too, if necessary.
1 by brian
clean slate
246
*/
247
248
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
249
void close_handle_and_leave_table_as_lock(Table *table)
1 by brian
clean slate
250
{
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
251
  assert(table->db_stat);
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
252
  assert(table->getShare()->getType() == message::Table::STANDARD);
1 by brian
clean slate
253
254
  /*
255
    Make a local copy of the table share and free the current one.
256
    This has to be done to ensure that the table share is removed from
257
    the table defintion cache as soon as the last instance is removed
258
  */
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
259
  TableIdentifier identifier(table->getShare()->getSchemaName(), table->getShare()->getTableName(), message::Table::INTERNAL);
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
260
  const TableIdentifier::Key &key(identifier.getKey());
1835.1.5 by Brian Aker
Cleans up some spots where we were using mutable but did not need too.
261
  TableShare *share= new TableShare(identifier.getType(),
262
                                    identifier,
263
                                    const_cast<char *>(&key[0]),  static_cast<uint32_t>(table->getShare()->getCacheKeySize()));
1 by brian
clean slate
264
1208.3.2 by brian
Update for Cursor renaming.
265
  table->cursor->close();
266
  table->db_stat= 0;                            // Mark cursor closed
1574 by Brian Aker
Rollup patch for hiding tableshare.
267
  TableShare::release(table->getMutableShare());
268
  table->setShare(share);
1 by brian
clean slate
269
}
270
271
272
/*****************************************************************************
273
 *	 Functions to free open table cache
274
 ****************************************************************************/
275
276
1109.1.4 by Brian Aker
More Table refactor
277
void Table::intern_close_table()
1 by brian
clean slate
278
{						// Free all structures
1109.1.4 by Brian Aker
More Table refactor
279
  free_io_cache();
1208.3.2 by brian
Update for Cursor renaming.
280
  if (cursor)                              // Not true if name lock
1502.1.13 by Brian Aker
Next bit of TableShare to c++.
281
  {
1502.1.3 by Brian Aker
Cleanup to use references.
282
    delete_table(true);			// close cursor
1502.1.13 by Brian Aker
Next bit of TableShare to c++.
283
  }
1 by brian
clean slate
284
}
285
286
/*
287
  Remove table from the open table cache
288
289
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
290
  free_cache_entry()
291
  entry		Table to remove
1 by brian
clean slate
292
293
  NOTE
1046 by Brian Aker
Merge Jay.
294
  We need to have a lock on LOCK_open when calling this
1 by brian
clean slate
295
*/
296
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
297
void free_cache_entry(table::Concurrent *table)
1 by brian
clean slate
298
{
1109.1.4 by Brian Aker
More Table refactor
299
  table->intern_close_table();
1320.1.18 by Brian Aker
Overhaul of SHOW TABLE STATUS.
300
  if (not table->in_use)
1 by brian
clean slate
301
  {
1637.4.1 by Brian Aker
Wrap unused access with a class.
302
    unused_tables.unlink(table);
1 by brian
clean slate
303
  }
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
304
1669.2.3 by Brian Aker
new is now the new for Table. It is the shiny.
305
  delete table;
1 by brian
clean slate
306
}
307
308
/* Free resources allocated by filesort() and read_record() */
309
1109.1.4 by Brian Aker
More Table refactor
310
void Table::free_io_cache()
1 by brian
clean slate
311
{
1109.1.4 by Brian Aker
More Table refactor
312
  if (sort.io_cache)
1 by brian
clean slate
313
  {
1109.1.4 by Brian Aker
More Table refactor
314
    close_cached_file(sort.io_cache);
315
    delete sort.io_cache;
316
    sort.io_cache= 0;
1 by brian
clean slate
317
  }
318
}
319
320
321
/*
322
  Close all tables which aren't in use by any thread
323
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
324
  @param session Thread context (may be NULL)
1 by brian
clean slate
325
  @param tables List of tables to remove from the cache
326
  @param have_lock If LOCK_open is locked
327
  @param wait_for_refresh Wait for a impending flush
328
  @param wait_for_placeholders Wait for tables being reopened so that the GRL
1046 by Brian Aker
Merge Jay.
329
  won't proceed while write-locked tables are being reopened by other
330
  threads.
1 by brian
clean slate
331
520.1.21 by Brian Aker
THD -> Session rename
332
  @remark Session can be NULL, but then wait_for_refresh must be false
1046 by Brian Aker
Merge Jay.
333
  and tables must be NULL.
1 by brian
clean slate
334
*/
335
1109.1.4 by Brian Aker
More Table refactor
336
bool Session::close_cached_tables(TableList *tables, bool wait_for_refresh, bool wait_for_placeholders)
1 by brian
clean slate
337
{
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
338
  bool result= false;
1109.1.4 by Brian Aker
More Table refactor
339
  Session *session= this;
1 by brian
clean slate
340
341
  {
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
342
    LOCK_open.lock(); /* Optionally lock for remove tables from open_cahe if not in use */
343
344
    if (tables == NULL)
345
    {
346
      refresh_version++;				// Force close of open tables
347
348
      unused_tables.clear();
349
350
      if (wait_for_refresh)
351
      {
352
        /*
353
          Other threads could wait in a loop in open_and_lock_tables(),
354
          trying to lock one or more of our tables.
355
356
          If they wait for the locks in thr_multi_lock(), their lock
357
          request is aborted. They loop in open_and_lock_tables() and
358
          enter open_table(). Here they notice the table is refreshed and
359
          wait for COND_refresh. Then they loop again in
360
          openTablesLock() and this time open_table() succeeds. At
361
          this moment, if we (the FLUSH TABLES thread) are scheduled and
362
          on another FLUSH TABLES enter close_cached_tables(), they could
363
          awake while we sleep below, waiting for others threads (us) to
364
          close their open tables. If this happens, the other threads
365
          would find the tables unlocked. They would get the locks, one
366
          after the other, and could do their destructive work. This is an
367
          issue if we have LOCK TABLES in effect.
368
369
          The problem is that the other threads passed all checks in
370
          open_table() before we refresh the table.
371
372
          The fix for this problem is to set some_tables_deleted for all
373
          threads with open tables. These threads can still get their
374
          locks, but will immediately release them again after checking
375
          this variable. They will then loop in openTablesLock()
376
          again. There they will wait until we update all tables version
377
          below.
378
379
          Setting some_tables_deleted is done by remove_table_from_cache()
380
          in the other branch.
381
382
          In other words (reviewer suggestion): You need this setting of
383
          some_tables_deleted for the case when table was opened and all
384
          related checks were passed before incrementing refresh_version
385
          (which you already have) but attempt to lock the table happened
386
          after the call to Session::close_old_data_files() i.e. after removal of
387
          current thread locks.
388
        */
389
        for (TableOpenCache::const_iterator iter= get_open_cache().begin();
390
             iter != get_open_cache().end();
391
             iter++)
392
        {
393
          Table *table= (*iter).second;
394
          if (table->in_use)
395
            table->in_use->some_tables_deleted= false;
396
        }
397
      }
398
    }
399
    else
400
    {
401
      bool found= false;
402
      for (TableList *table= tables; table; table= table->next_local)
403
      {
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
404
        TableIdentifier identifier(table->getSchemaName(), table->table_name);
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
405
        if (remove_table_from_cache(session, identifier,
406
                                    RTFC_OWNED_BY_Session_FLAG))
407
        {
408
          found= true;
409
        }
410
      }
411
      if (!found)
412
        wait_for_refresh= false;			// Nothing to wait for
413
    }
1109.1.4 by Brian Aker
More Table refactor
414
1 by brian
clean slate
415
    if (wait_for_refresh)
416
    {
417
      /*
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
418
        If there is any table that has a lower refresh_version, wait until
419
        this is closed (or this thread is killed) before returning
420
      */
421
      session->mysys_var->current_mutex= &LOCK_open;
422
      session->mysys_var->current_cond= &COND_refresh;
423
      session->set_proc_info("Flushing tables");
424
425
      session->close_old_data_files();
426
427
      bool found= true;
428
      /* Wait until all threads has closed all the tables we had locked */
429
      while (found && ! session->killed)
430
      {
431
        found= false;
432
        for (TableOpenCache::const_iterator iter= get_open_cache().begin();
433
             iter != get_open_cache().end();
434
             iter++)
435
        {
436
          Table *table= (*iter).second;
437
          /* Avoid a self-deadlock. */
438
          if (table->in_use == session)
439
            continue;
440
          /*
441
            Note that we wait here only for tables which are actually open, and
442
            not for placeholders with Table::open_placeholder set. Waiting for
443
            latter will cause deadlock in the following scenario, for example:
444
445
            conn1-> lock table t1 write;
446
            conn2-> lock table t2 write;
447
            conn1-> flush tables;
448
            conn2-> flush tables;
449
450
            It also does not make sense to wait for those of placeholders that
451
            are employed by CREATE TABLE as in this case table simply does not
452
            exist yet.
453
          */
454
          if (table->needs_reopen_or_name_lock() && (table->db_stat ||
455
                                                     (table->open_placeholder && wait_for_placeholders)))
456
          {
457
            found= true;
1812.3.7 by Brian Aker
Typdef our lock type.
458
            boost_unique_lock_t scoped(LOCK_open, boost::adopt_lock_t());
1798.3.10 by Brian Aker
Remove additional (maybe last of?) native_handle actual calls (safe_mutex is
459
            COND_refresh.wait(scoped);
460
            scoped.release();
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
461
            break;
462
          }
463
        }
464
      }
465
      /*
466
        No other thread has the locked tables open; reopen them and get the
467
        old locks. This should always succeed (unless some external process
468
        has removed the tables)
469
      */
470
      result= session->reopen_tables(true, true);
471
472
      /* Set version for table */
473
      for (Table *table= session->open_tables; table ; table= table->getNext())
474
      {
1 by brian
clean slate
475
        /*
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
476
          Preserve the version (0) of write locked tables so that a impending
477
          global read lock won't sneak in.
1 by brian
clean slate
478
        */
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
479
        if (table->reginfo.lock_type < TL_WRITE_ALLOW_WRITE)
480
          table->getMutableShare()->refreshVersion();
1 by brian
clean slate
481
      }
482
    }
1046.1.13 by Brian Aker
Remove malloc() of table.
483
1798.3.4 by Brian Aker
Remove a if 0 block, capture a lock inside of {}
484
    LOCK_open.unlock();
1 by brian
clean slate
485
  }
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
486
1 by brian
clean slate
487
  if (wait_for_refresh)
488
  {
1812.3.7 by Brian Aker
Typdef our lock type.
489
    boost_unique_lock_t scopedLock(session->mysys_var->mutex);
520.1.22 by Brian Aker
Second pass of thd cleanup
490
    session->mysys_var->current_mutex= 0;
491
    session->mysys_var->current_cond= 0;
492
    session->set_proc_info(0);
1 by brian
clean slate
493
  }
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
494
495
  return result;
1 by brian
clean slate
496
}
497
498
499
/**
1046.1.6 by Brian Aker
Formatting/style cleanup.
500
  move one table to free list 
1 by brian
clean slate
501
*/
502
1089.1.7 by Brian Aker
Shuffled free_cached_table() to table
503
bool Session::free_cached_table()
1 by brian
clean slate
504
{
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
505
  bool found_old_table= false;
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
506
  table::Concurrent *table= dynamic_cast<table::Concurrent *>(open_tables);
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
507
1689.2.7 by Brian Aker
LOCK_open to boost.
508
  safe_mutex_assert_owner(LOCK_open.native_handle());
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
509
  assert(table->key_read == 0);
1208.3.2 by brian
Update for Cursor renaming.
510
  assert(!table->cursor || table->cursor->inited == Cursor::NONE);
1 by brian
clean slate
511
1608 by Brian Aker
This encapsulates prev/next.
512
  open_tables= table->getNext();
1 by brian
clean slate
513
514
  if (table->needs_reopen_or_name_lock() ||
1089.1.7 by Brian Aker
Shuffled free_cached_table() to table
515
      version != refresh_version || !table->db_stat)
1 by brian
clean slate
516
  {
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
517
    remove_table(table);
1046.1.6 by Brian Aker
Formatting/style cleanup.
518
    found_old_table= true;
1 by brian
clean slate
519
  }
520
  else
521
  {
522
    /*
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
523
      Open placeholders have Table::db_stat set to 0, so they should be
1 by brian
clean slate
524
      handled by the first alternative.
525
    */
1372.1.1 by Brian Aker
Removed/rewrite to remove goto in alter table.
526
    assert(not table->open_placeholder);
1 by brian
clean slate
527
528
    /* Free memory and reset for next loop */
1208.3.2 by brian
Update for Cursor renaming.
529
    table->cursor->ha_reset();
1046.1.4 by Brian Aker
Move lazy read of refresh to outside of LOCK_open (we don't lock the refresh
530
    table->in_use= false;
1089.1.7 by Brian Aker
Shuffled free_cached_table() to table
531
1637.4.1 by Brian Aker
Wrap unused access with a class.
532
    unused_tables.link(table);
1 by brian
clean slate
533
  }
1046.1.6 by Brian Aker
Formatting/style cleanup.
534
535
  return found_old_table;
536
}
537
538
539
/**
540
  Auxiliary function to close all tables in the open_tables list.
541
542
  @param session Thread context.
543
544
  @remark It should not ordinarily be called directly.
545
*/
546
547
void Session::close_open_tables()
548
{
549
  bool found_old_table= false;
550
1689.2.7 by Brian Aker
LOCK_open to boost.
551
  safe_mutex_assert_not_owner(LOCK_open.native_handle());
1046.1.6 by Brian Aker
Formatting/style cleanup.
552
1812.3.7 by Brian Aker
Typdef our lock type.
553
  boost_unique_lock_t scoped_lock(LOCK_open); /* Close all open tables on Session */
1046.1.6 by Brian Aker
Formatting/style cleanup.
554
555
  while (open_tables)
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
556
  {
1089.1.7 by Brian Aker
Shuffled free_cached_table() to table
557
    found_old_table|= free_cached_table();
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
558
  }
1046.1.6 by Brian Aker
Formatting/style cleanup.
559
  some_tables_deleted= false;
560
561
  if (found_old_table)
562
  {
563
    /* Tell threads waiting for refresh that something has happened */
564
    broadcast_refresh();
565
  }
1 by brian
clean slate
566
}
567
568
/*
569
  Find table in list.
570
571
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
572
  find_table_in_list()
573
  table		Pointer to table list
574
  offset		Offset to which list in table structure to use
575
  db_name		Data base name
576
  table_name		Table name
577
578
NOTES:
1109.1.5 by Brian Aker
More extraction from sql_base
579
This is called by find_table_in_global_list().
1046 by Brian Aker
Merge Jay.
580
581
RETURN VALUES
582
NULL	Table not found
583
#		Pointer to found table.
1 by brian
clean slate
584
*/
585
327.2.4 by Brian Aker
Refactoring table.h
586
TableList *find_table_in_list(TableList *table,
1046 by Brian Aker
Merge Jay.
587
                              TableList *TableList::*link,
588
                              const char *db_name,
589
                              const char *table_name)
1 by brian
clean slate
590
{
591
  for (; table; table= table->*link )
592
  {
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
593
    if ((table->table == 0 || table->table->getShare()->getType() == message::Table::STANDARD) &&
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
594
        strcasecmp(table->getSchemaName(), db_name) == 0 &&
1415 by Brian Aker
Mass overhaul to use schema_identifier.
595
        strcasecmp(table->table_name, table_name) == 0)
1 by brian
clean slate
596
      break;
597
  }
598
  return table;
599
}
600
601
602
/*
603
  Test that table is unique (It's only exists once in the table list)
604
605
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
606
  unique_table()
607
  session                   thread handle
608
  table                 table which should be checked
609
  table_list            list of tables
610
  check_alias           whether to check tables' aliases
611
612
NOTE: to exclude derived tables from check we use following mechanism:
613
a) during derived table processing set Session::derived_tables_processing
614
b) JOIN::prepare set SELECT::exclude_from_table_unique_test if
615
Session::derived_tables_processing set. (we can't use JOIN::execute
616
because for PS we perform only JOIN::prepare, but we can't set this
617
flag in JOIN::prepare if we are not sure that we are in derived table
618
processing loop, because multi-update call fix_fields() for some its
619
items (which mean JOIN::prepare for subqueries) before unique_table
620
call to detect which tables should be locked for write).
621
c) unique_table skip all tables which belong to SELECT with
622
SELECT::exclude_from_table_unique_test set.
623
Also SELECT::exclude_from_table_unique_test used to exclude from check
624
tables of main SELECT of multi-delete and multi-update
625
626
We also skip tables with TableList::prelocking_placeholder set,
627
because we want to allow SELECTs from them, and their modification
628
will rise the error anyway.
629
630
TODO: when we will have table/view change detection we can do this check
631
only once for PS/SP
632
633
RETURN
634
found duplicate
635
0 if table is unique
1 by brian
clean slate
636
*/
637
1220.1.13 by Brian Aker
Remove mysql_lock_have_duplicate() (we don't have merge, and our partition
638
TableList* unique_table(TableList *table, TableList *table_list,
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
639
                        bool check_alias)
1 by brian
clean slate
640
{
327.2.4 by Brian Aker
Refactoring table.h
641
  TableList *res;
1 by brian
clean slate
642
  const char *d_name, *t_name, *t_alias;
643
644
  /*
645
    If this function called for query which update table (INSERT/UPDATE/...)
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
646
    then we have in table->table pointer to Table object which we are
327.2.4 by Brian Aker
Refactoring table.h
647
    updating even if it is VIEW so we need TableList of this Table object
1 by brian
clean slate
648
    to get right names (even if lower_case_table_names used).
649
650
    If this function called for CREATE command that we have not opened table
327.2.4 by Brian Aker
Refactoring table.h
651
    (table->table equal to 0) and right names is in current TableList
1 by brian
clean slate
652
    object.
653
  */
654
  if (table->table)
655
  {
656
    /* temporary table is always unique */
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
657
    if (table->table && table->table->getShare()->getType() != message::Table::STANDARD)
1046.1.10 by Brian Aker
Formatting around return (style)
658
      return 0;
1 by brian
clean slate
659
    table= table->find_underlying_table(table->table);
660
    /*
327.2.4 by Brian Aker
Refactoring table.h
661
      as far as we have table->table we have to find real TableList of
1 by brian
clean slate
662
      it in underlying tables
663
    */
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
664
    assert(table);
1 by brian
clean slate
665
  }
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
666
  d_name= table->getSchemaName();
1 by brian
clean slate
667
  t_name= table->table_name;
668
  t_alias= table->alias;
669
670
  for (;;)
671
  {
1220.1.13 by Brian Aker
Remove mysql_lock_have_duplicate() (we don't have merge, and our partition
672
    if ((! (res= find_table_in_global_list(table_list, d_name, t_name))) ||
1 by brian
clean slate
673
        ((!res->table || res->table != table->table) &&
1039.1.5 by Brian Aker
Remove lower case filename bits (aka we just lock into the most compatible
674
         (!check_alias || !(my_strcasecmp(files_charset_info, t_alias, res->alias))) &&
1 by brian
clean slate
675
         res->select_lex && !res->select_lex->exclude_from_table_unique_test))
676
      break;
677
    /*
678
      If we found entry of this table or table of SELECT which already
679
      processed in derived table or top select of multi-update/multi-delete
680
      (exclude_from_table_unique_test) or prelocking placeholder.
681
    */
682
    table_list= res->next_global;
683
  }
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
684
  return(res);
1 by brian
clean slate
685
}
686
687
1642 by Brian Aker
This adds const to SchemaIdentifier.
688
void Session::doGetTableNames(const SchemaIdentifier &schema_identifier,
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
689
                              std::set<std::string>& set_of_names)
690
{
1608 by Brian Aker
This encapsulates prev/next.
691
  for (Table *table= temporary_tables ; table ; table= table->getNext())
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
692
  {
1532.1.15 by Brian Aker
Partial encapsulation of TableShare from Table.
693
    if (schema_identifier.compare(table->getShare()->getSchemaName()))
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
694
    {
1532.1.15 by Brian Aker
Partial encapsulation of TableShare from Table.
695
      set_of_names.insert(table->getShare()->getTableName());
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
696
    }
697
  }
698
}
699
1387 by Brian Aker
Fix for cases where not all files are removed during a deletion of a schema.
700
void Session::doGetTableNames(CachedDirectory &,
1642 by Brian Aker
This adds const to SchemaIdentifier.
701
			      const SchemaIdentifier &schema_identifier,
1387 by Brian Aker
Fix for cases where not all files are removed during a deletion of a schema.
702
                              std::set<std::string> &set_of_names)
703
{
1415 by Brian Aker
Mass overhaul to use schema_identifier.
704
  doGetTableNames(schema_identifier, set_of_names);
1387 by Brian Aker
Fix for cases where not all files are removed during a deletion of a schema.
705
}
706
1642 by Brian Aker
This adds const to SchemaIdentifier.
707
void Session::doGetTableIdentifiers(const SchemaIdentifier &schema_identifier,
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
708
                                    TableIdentifiers &set_of_identifiers)
709
{
1608 by Brian Aker
This encapsulates prev/next.
710
  for (Table *table= temporary_tables ; table ; table= table->getNext())
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
711
  {
1532.1.15 by Brian Aker
Partial encapsulation of TableShare from Table.
712
    if (schema_identifier.compare(table->getShare()->getSchemaName()))
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
713
    {
714
      set_of_identifiers.push_back(TableIdentifier(table->getShare()->getSchemaName(),
715
                                                   table->getShare()->getTableName(),
716
                                                   table->getShare()->getPath()));
717
    }
718
  }
719
}
720
721
void Session::doGetTableIdentifiers(CachedDirectory &,
1642 by Brian Aker
This adds const to SchemaIdentifier.
722
                                    const SchemaIdentifier &schema_identifier,
1429.1.3 by Brian Aker
Merge in work for fetching a list of table identifiers.
723
                                    TableIdentifiers &set_of_identifiers)
724
{
725
  doGetTableIdentifiers(schema_identifier, set_of_identifiers);
726
}
727
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
728
bool Session::doDoesTableExist(const TableIdentifier &identifier)
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
729
{
1608 by Brian Aker
This encapsulates prev/next.
730
  for (Table *table= temporary_tables ; table ; table= table->getNext())
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
731
  {
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
732
    if (table->getShare()->getType() == message::Table::TEMPORARY)
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
733
    {
1669.2.2 by Brian Aker
Remove compare and need to keep around lower_table.
734
      if (identifier.getKey() == table->getShare()->getCacheKey())
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
735
      {
1415 by Brian Aker
Mass overhaul to use schema_identifier.
736
        return true;
1358.1.1 by Brian Aker
Fixes regression in performance from Exists patch.
737
      }
738
    }
739
  }
740
741
  return false;
742
}
743
1618.1.1 by Brian Aker
Modify TableIdentifier to be const
744
int Session::doGetTableDefinition(const TableIdentifier &identifier,
1354.1.1 by Brian Aker
Modify ptr to reference.
745
                                  message::Table &table_proto)
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
746
{
1608 by Brian Aker
This encapsulates prev/next.
747
  for (Table *table= temporary_tables ; table ; table= table->getNext())
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
748
  {
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
749
    if (table->getShare()->getType() == message::Table::TEMPORARY)
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
750
    {
1669.2.2 by Brian Aker
Remove compare and need to keep around lower_table.
751
      if (identifier.getKey() == table->getShare()->getCacheKey())
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
752
      {
1574 by Brian Aker
Rollup patch for hiding tableshare.
753
        table_proto.CopyFrom(*(table->getShare()->getTableProto()));
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
754
1415 by Brian Aker
Mass overhaul to use schema_identifier.
755
        return EEXIST;
1273.19.10 by Brian Aker
Add support for listing temporay tables from show commands.
756
      }
757
    }
758
  }
759
760
  return ENOENT;
761
}
762
1864.3.13 by Brian Aker
Usage of find_temporary_table() to identifier.
763
Table *Session::find_temporary_table(const TableIdentifier &identifier)
1369 by Brian Aker
Small interface bits.
764
{
1608 by Brian Aker
This encapsulates prev/next.
765
  for (Table *table= temporary_tables ; table ; table= table->getNext())
1371 by Brian Aker
Small corrections.
766
  {
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
767
    if (identifier.getKey() == table->getShare()->getCacheKey())
1371 by Brian Aker
Small corrections.
768
      return table;
769
  }
770
771
  return NULL;                               // Not a temporary table
1369 by Brian Aker
Small interface bits.
772
}
773
1 by brian
clean slate
774
775
/**
776
  Drop a temporary table.
777
520.1.22 by Brian Aker
Second pass of thd cleanup
778
  Try to locate the table in the list of session->temporary_tables.
1 by brian
clean slate
779
  If the table is found:
1046 by Brian Aker
Merge Jay.
780
  - if the table is being used by some outer statement, fail.
781
  - if the table is in session->locked_tables, unlock it and
782
  remove it from the list of locked tables. Currently only transactional
783
  temporary tables are present in the locked_tables list.
784
  - Close the temporary table, remove its .FRM
785
  - remove the table from the list of temporary tables
1 by brian
clean slate
786
787
  This function is used to drop user temporary tables, as well as
788
  internal tables created in CREATE TEMPORARY TABLE ... SELECT
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
789
  or ALTER Table. Even though part of the work done by this function
1 by brian
clean slate
790
  is redundant when the table is internal, as long as we
791
  link both internal and user temporary tables into the same
520.1.22 by Brian Aker
Second pass of thd cleanup
792
  session->temporary_tables list, it's impossible to tell here whether
1 by brian
clean slate
793
  we're dealing with an internal or a user temporary table.
794
795
  @retval  0  the table was found and dropped successfully.
796
  @retval  1  the table was not found in the list of temporary tables
1046 by Brian Aker
Merge Jay.
797
  of this thread
1 by brian
clean slate
798
  @retval -1  the table is in use by a outer query
799
*/
800
1864.3.13 by Brian Aker
Usage of find_temporary_table() to identifier.
801
int Session::drop_temporary_table(const drizzled::TableIdentifier &identifier)
802
{
803
  Table *table;
804
805
  if (not (table= find_temporary_table(identifier)))
806
    return 1;
807
808
  /* Table might be in use by some outer statement. */
809
  if (table->query_id && table->query_id != query_id)
810
  {
811
    my_error(ER_CANT_REOPEN_TABLE, MYF(0), table->getAlias());
812
    return -1;
813
  }
814
815
  close_temporary_table(table);
816
817
  return 0;
818
}
819
1 by brian
clean slate
820
821
/**
1046 by Brian Aker
Merge Jay.
822
  Remove all instances of table from thread's open list and
823
  table cache.
824
825
  @param  session     Thread context
826
  @param  find    Table to remove
1859.2.8 by Brian Aker
Remove memcpy (though really this is just a shell, since it is still a
827
828
  @note because we risk the chance of deleting the share, we can't assume that it will exist past, this should be modified once we can use a TableSharePtr here.
1 by brian
clean slate
829
*/
830
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
831
void Session::unlink_open_table(Table *find)
1 by brian
clean slate
832
{
1859.2.8 by Brian Aker
Remove memcpy (though really this is just a shell, since it is still a
833
  const TableIdentifier::Key find_key(find->getShare()->getCacheKey());
834
  Table **prev;
1689.2.7 by Brian Aker
LOCK_open to boost.
835
  safe_mutex_assert_owner(LOCK_open.native_handle());
1 by brian
clean slate
836
837
  /*
838
    Note that we need to hold LOCK_open while changing the
839
    open_tables list. Another thread may work on it.
840
    (See: remove_table_from_cache(), mysql_wait_completed_table())
841
    Closing a MERGE child before the parent would be fatal if the
842
    other thread tries to abort the MERGE lock in between.
843
  */
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
844
  for (prev= &open_tables; *prev; )
1 by brian
clean slate
845
  {
1859.2.8 by Brian Aker
Remove memcpy (though really this is just a shell, since it is still a
846
    Table *list= *prev;
1 by brian
clean slate
847
1859.2.8 by Brian Aker
Remove memcpy (though really this is just a shell, since it is still a
848
    if (list->getShare()->getCacheKey() == find_key)
1 by brian
clean slate
849
    {
850
      /* Remove table from open_tables list. */
1608 by Brian Aker
This encapsulates prev/next.
851
      *prev= list->getNext();
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
852
1 by brian
clean slate
853
      /* Close table. */
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
854
      remove_table(dynamic_cast<table::Concurrent *>(list));
1 by brian
clean slate
855
    }
856
    else
857
    {
858
      /* Step to next entry in open_tables list. */
1608 by Brian Aker
This encapsulates prev/next.
859
      prev= list->getNextPtr();
1 by brian
clean slate
860
    }
861
  }
862
863
  // Notify any 'refresh' threads
864
  broadcast_refresh();
865
}
866
867
868
/**
1046 by Brian Aker
Merge Jay.
869
  Auxiliary routine which closes and drops open table.
870
871
  @param  session         Thread handle
872
  @param  table       Table object for table to be dropped
873
  @param  db_name     Name of database for this table
874
  @param  table_name  Name of this table
875
876
  @note This routine assumes that table to be closed is open only
877
  by calling thread so we needn't wait until other threads
878
  will close the table. Also unless called under implicit or
879
  explicit LOCK TABLES mode it assumes that table to be
880
  dropped is already unlocked. In the former case it will
881
  also remove lock on the table. But one should not rely on
882
  this behaviour as it may change in future.
883
  Currently, however, this function is never called for a
884
  table that was locked with LOCK TABLES.
1 by brian
clean slate
885
*/
886
1372.1.1 by Brian Aker
Removed/rewrite to remove goto in alter table.
887
void Session::drop_open_table(Table *table, TableIdentifier &identifier)
1 by brian
clean slate
888
{
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
889
  if (table->getShare()->getType())
1237.6.12 by Brian Aker
Adding patch for engine methods for definition files.
890
  {
1216.1.1 by Brian Aker
Move print_error up to Engine.
891
    close_temporary_table(table);
1237.6.12 by Brian Aker
Adding patch for engine methods for definition files.
892
  }
1 by brian
clean slate
893
  else
894
  {
1812.3.7 by Brian Aker
Typdef our lock type.
895
    boost_unique_lock_t scoped_lock(LOCK_open); /* Close and drop a table (AUX routine) */
1 by brian
clean slate
896
    /*
897
      unlink_open_table() also tells threads waiting for refresh or close
898
      that something has happened.
899
    */
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
900
    unlink_open_table(table);
1235.2.1 by Brian Aker
More identifier work.
901
    quick_rm_table(*this, identifier);
1 by brian
clean slate
902
  }
903
}
904
905
906
/*
1046 by Brian Aker
Merge Jay.
907
  Wait for condition but allow the user to send a kill to mysqld
1 by brian
clean slate
908
1046 by Brian Aker
Merge Jay.
909
  SYNOPSIS
910
  wait_for_condition()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
911
  session	Thread Cursor
1046 by Brian Aker
Merge Jay.
912
  mutex	mutex that is currently hold that is associated with condition
913
  Will be unlocked on return
914
  cond	Condition to wait for
1 by brian
clean slate
915
*/
916
1812.3.5 by Brian Aker
Move to boost condition_any
917
void Session::wait_for_condition(boost::mutex &mutex, boost::condition_variable_any &cond)
1 by brian
clean slate
918
{
919
  /* Wait until the current table is up to date */
1054.1.10 by Brian Aker
Move open_table() to session.
920
  const char *saved_proc_info;
1786.2.1 by Brian Aker
Current boost work (more conversion).
921
  mysys_var->current_mutex= &mutex;
922
  mysys_var->current_cond= &cond;
1054.1.10 by Brian Aker
Move open_table() to session.
923
  saved_proc_info= get_proc_info();
924
  set_proc_info("Waiting for table");
1798.3.5 by Brian Aker
Scope wait_for_condition().
925
  {
926
    /*
927
      We must unlock mutex first to avoid deadlock becasue conditions are
928
      sent to this thread by doing locks in the following order:
929
      lock(mysys_var->mutex)
930
      lock(mysys_var->current_mutex)
931
932
      One by effect of this that one can only use wait_for_condition with
933
      condition variables that are guranteed to not disapper (freed) even if this
934
      mutex is unlocked
935
    */
1812.3.7 by Brian Aker
Typdef our lock type.
936
    boost_unique_lock_t scopedLock(mutex, boost::adopt_lock_t());
1798.3.5 by Brian Aker
Scope wait_for_condition().
937
    if (not killed)
938
    {
939
      cond.wait(scopedLock);
940
    }
941
  }
1812.3.7 by Brian Aker
Typdef our lock type.
942
  boost_unique_lock_t mysys_scopedLock(mysys_var->mutex);
1054.1.10 by Brian Aker
Move open_table() to session.
943
  mysys_var->current_mutex= 0;
944
  mysys_var->current_cond= 0;
945
  set_proc_info(saved_proc_info);
1 by brian
clean slate
946
}
947
948
949
/*
950
  Open table which is already name-locked by this thread.
951
952
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
953
  reopen_name_locked_table()
954
  session         Thread handle
955
  table_list  TableList object for table to be open, TableList::table
956
  member should point to Table object which was used for
957
  name-locking.
958
  link_in     true  - if Table object for table to be opened should be
959
  linked into Session::open_tables list.
960
  false - placeholder used for name-locking is already in
961
  this list so we only need to preserve Table::next
962
  pointer.
1 by brian
clean slate
963
964
  NOTE
1046 by Brian Aker
Merge Jay.
965
  This function assumes that its caller already acquired LOCK_open mutex.
1 by brian
clean slate
966
967
  RETURN VALUE
1046 by Brian Aker
Merge Jay.
968
  false - Success
969
  true  - Error
1 by brian
clean slate
970
*/
971
1859.2.7 by Brian Aker
Remove option (we no longer need a Table to delete a table, and we only call
972
bool Session::reopen_name_locked_table(TableList* table_list)
1 by brian
clean slate
973
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
974
  Table *table= table_list->table;
1 by brian
clean slate
975
  char *table_name= table_list->table_name;
976
1689.2.7 by Brian Aker
LOCK_open to boost.
977
  safe_mutex_assert_owner(LOCK_open.native_handle());
1 by brian
clean slate
978
1859.2.7 by Brian Aker
Remove option (we no longer need a Table to delete a table, and we only call
979
  if (killed || not table)
1046.1.2 by Brian Aker
Comments on LOCK_open
980
    return true;
1 by brian
clean slate
981
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
982
  TableIdentifier identifier(table_list->getSchemaName(), table_list->table_name);
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
983
  if (open_unireg_entry(this, table, table_name, identifier))
1 by brian
clean slate
984
  {
1109.1.4 by Brian Aker
More Table refactor
985
    table->intern_close_table();
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
986
    return true;
1 by brian
clean slate
987
  }
988
989
  /*
990
    We want to prevent other connections from opening this table until end
991
    of statement as it is likely that modifications of table's metadata are
1208.3.2 by brian
Update for Cursor renaming.
992
    not yet finished (for example CREATE TRIGGER have to change .TRG cursor,
1 by brian
clean slate
993
    or we might want to drop table if CREATE TABLE ... SELECT fails).
994
    This also allows us to assume that no other connection will sneak in
995
    before we will get table-level lock on this table.
996
  */
1835.1.4 by Brian Aker
Update to remove more of the getMutableShare() uses.
997
  table->getMutableShare()->resetVersion();
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
998
  table->in_use = this;
1 by brian
clean slate
999
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1000
  table->tablenr= current_tablenr++;
1001
  table->used_fields= 0;
1002
  table->const_table= 0;
274 by Brian Aker
my_bool conversion in Table
1003
  table->null_row= false;
1004
  table->maybe_null= false;
1005
  table->force_index= false;
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1006
  table->status= STATUS_NO_RECORD;
1046.1.2 by Brian Aker
Comments on LOCK_open
1007
274 by Brian Aker
my_bool conversion in Table
1008
  return false;
1 by brian
clean slate
1009
}
1010
1011
1012
/**
1046 by Brian Aker
Merge Jay.
1013
  Create and insert into table cache placeholder for table
1014
  which will prevent its opening (or creation) (a.k.a lock
1015
  table name).
1016
1017
  @param session         Thread context
1018
  @param key         Table cache key for name to be locked
1019
  @param key_length  Table cache key length
1020
1021
  @return Pointer to Table object used for name locking or 0 in
1022
  case of failure.
1 by brian
clean slate
1023
*/
1024
1864.3.15 by Brian Aker
Fix placeholder to take identifier.
1025
Table *Session::table_cache_insert_placeholder(const drizzled::TableIdentifier &arg)
1 by brian
clean slate
1026
{
1689.2.7 by Brian Aker
LOCK_open to boost.
1027
  safe_mutex_assert_owner(LOCK_open.native_handle());
1 by brian
clean slate
1028
1029
  /*
1030
    Create a table entry with the right key and with an old refresh version
1031
  */
1864.3.15 by Brian Aker
Fix placeholder to take identifier.
1032
  TableIdentifier identifier(arg.getSchemaName(), arg.getTableName(), message::Table::INTERNAL);
1843.8.6 by Brian Aker
Move placeholder to table directory.
1033
  table::Placeholder *table= new table::Placeholder(this, identifier);
1 by brian
clean slate
1034
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1035
  if (not add_table(table))
1 by brian
clean slate
1036
  {
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
1037
    delete table;
1038
1019.1.6 by Brian Aker
A number of random cleanups.
1039
    return NULL;
1 by brian
clean slate
1040
  }
1041
1039.1.10 by Brian Aker
Minor formating, change of one name to make grep easier :)
1042
  return table;
1 by brian
clean slate
1043
}
1044
1045
1046
/**
1046 by Brian Aker
Merge Jay.
1047
  Obtain an exclusive name lock on the table if it is not cached
1048
  in the table cache.
1049
1050
  @param      session         Thread context
1051
  @param      db          Name of database
1052
  @param      table_name  Name of table
1053
  @param[out] table       Out parameter which is either:
1054
  - set to NULL if table cache contains record for
1055
  the table or
1056
  - set to point to the Table instance used for
1057
  name-locking.
1058
1059
  @note This function takes into account all records for table in table
1060
  cache, even placeholders used for name-locking. This means that
1061
  'table' parameter can be set to NULL for some situations when
1062
  table does not really exist.
1063
1064
  @retval  true   Error occured (OOM)
1065
  @retval  false  Success. 'table' parameter set according to above rules.
1 by brian
clean slate
1066
*/
1358.1.9 by Brian Aker
Update for std::string
1067
bool Session::lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table)
1068
{
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1069
  const TableIdentifier::Key &key(identifier.getKey());
641.4.1 by Toru Maesaka
First pass of replacing MySQL's my_stpcpy() with appropriate libc calls
1070
1812.3.7 by Brian Aker
Typdef our lock type.
1071
  boost_unique_lock_t scope_lock(LOCK_open); /* Obtain a name lock even though table is not in cache (like for create table)  */
1 by brian
clean slate
1072
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1073
  TableOpenCache::iterator iter;
1074
1075
  iter= get_open_cache().find(key);
1076
1077
  if (iter != get_open_cache().end())
1 by brian
clean slate
1078
  {
1079
    *table= 0;
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
1080
    return false;
1 by brian
clean slate
1081
  }
1532.1.14 by Brian Aker
We no longer use alloc for placeholders (due to HASH I didn't use a
1082
1864.3.15 by Brian Aker
Fix placeholder to take identifier.
1083
  if (not (*table= table_cache_insert_placeholder(identifier)))
1 by brian
clean slate
1084
  {
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
1085
    return true;
1 by brian
clean slate
1086
  }
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1087
  (*table)->open_placeholder= true;
1608 by Brian Aker
This encapsulates prev/next.
1088
  (*table)->setNext(open_tables);
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1089
  open_tables= *table;
1090
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
1091
  return false;
1 by brian
clean slate
1092
}
1093
1094
/*
1095
  Open a table.
1096
1097
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
1098
  open_table()
1099
  session                 Thread context.
1100
  table_list          Open first table in list.
1101
  refresh      INOUT  Pointer to memory that will be set to 1 if
1102
  we need to close all tables and reopen them.
1103
  If this is a NULL pointer, then the table is not
1104
  put in the thread-open-list.
1105
  flags               Bitmap of flags to modify how open works:
1106
  DRIZZLE_LOCK_IGNORE_FLUSH - Open table even if
1107
  someone has done a flush or namelock on it.
1108
  No version number checking is done.
1109
  DRIZZLE_OPEN_TEMPORARY_ONLY - Open only temporary
1110
  table not the base table or view.
1 by brian
clean slate
1111
1112
  IMPLEMENTATION
1046 by Brian Aker
Merge Jay.
1113
  Uses a cache of open tables to find a table not in use.
1 by brian
clean slate
1114
1046 by Brian Aker
Merge Jay.
1115
  If table list element for the table to be opened has "create" flag
1116
  set and table does not exist, this function will automatically insert
1117
  a placeholder for exclusive name lock into the open tables cache and
1118
  will return the Table instance that corresponds to this placeholder.
1 by brian
clean slate
1119
1120
  RETURN
1046 by Brian Aker
Merge Jay.
1121
  NULL  Open failed.  If refresh is set then one should close
1122
  all other tables and retry the open.
1123
#     Success. Pointer to Table object for open table.
1 by brian
clean slate
1124
*/
1125
1126
1109.1.3 by Brian Aker
Move names around a bit (to align similar methods)
1127
Table *Session::openTable(TableList *table_list, bool *refresh, uint32_t flags)
1 by brian
clean slate
1128
{
1220.1.7 by Brian Aker
Cleanup interface for open session.
1129
  Table *table;
1039.1.4 by Brian Aker
Modified alias to being const.
1130
  const char *alias= table_list->alias;
1 by brian
clean slate
1131
520.1.22 by Brian Aker
Second pass of thd cleanup
1132
  /* Parsing of partitioning information from .frm needs session->lex set up. */
1054.1.10 by Brian Aker
Move open_table() to session.
1133
  assert(lex->is_lex_started);
1 by brian
clean slate
1134
1135
  /* find a unused table in the open table cache */
1136
  if (refresh)
1046.1.5 by Brian Aker
Codestyle cleanup.
1137
    *refresh= false;
1 by brian
clean slate
1138
1139
  /* an open table operation needs a lot of the stack space */
1054.1.10 by Brian Aker
Move open_table() to session.
1140
  if (check_stack_overrun(this, STACK_MIN_SIZE_FOR_OPEN, (unsigned char *)&alias))
1046.1.5 by Brian Aker
Codestyle cleanup.
1141
    return NULL;
520.1.22 by Brian Aker
Second pass of thd cleanup
1142
1054.1.10 by Brian Aker
Move open_table() to session.
1143
  if (killed)
1046.1.5 by Brian Aker
Codestyle cleanup.
1144
    return NULL;
520.1.22 by Brian Aker
Second pass of thd cleanup
1145
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
1146
  TableIdentifier identifier(table_list->getSchemaName(), table_list->table_name);
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
1147
  const TableIdentifier::Key &key(identifier.getKey());
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1148
  TableOpenCacheRange ppp;
1 by brian
clean slate
1149
1150
  /*
1151
    Unless requested otherwise, try to resolve this table in the list
1152
    of temporary tables of this thread. In MySQL temporary tables
1153
    are always thread-local and "shadow" possible base tables with the
1154
    same name. This block implements the behaviour.
1046.1.5 by Brian Aker
Codestyle cleanup.
1155
    TODO -> move this block into a separate function.
1 by brian
clean slate
1156
  */
1798.3.2 by Brian Aker
Remove goto for reset.
1157
  bool reset= false;
1608 by Brian Aker
This encapsulates prev/next.
1158
  for (table= temporary_tables; table ; table=table->getNext())
1 by brian
clean slate
1159
  {
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
1160
    if (table->getShare()->getCacheKey() == key)
1 by brian
clean slate
1161
    {
1046.1.4 by Brian Aker
Move lazy read of refresh to outside of LOCK_open (we don't lock the refresh
1162
      /*
1163
        We're trying to use the same temporary table twice in a query.
1164
        Right now we don't support this because a temporary table
1165
        is always represented by only one Table object in Session, and
1166
        it can not be cloned. Emit an error for an unsupported behaviour.
1167
      */
1168
      if (table->query_id)
1 by brian
clean slate
1169
      {
1669.2.6 by Brian Aker
First pass through encapsulating getAlias() from table.
1170
        my_error(ER_CANT_REOPEN_TABLE, MYF(0), table->getAlias());
1046.1.5 by Brian Aker
Codestyle cleanup.
1171
        return NULL;
1 by brian
clean slate
1172
      }
1273.1.1 by Jay Pipes
* Changes Session::warn_id to Session::warn_query_id
1173
      table->query_id= getQueryId();
1798.3.2 by Brian Aker
Remove goto for reset.
1174
      reset= true;
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1175
      break;
1798.3.2 by Brian Aker
Remove goto for reset.
1176
    }
1177
  }
1178
1179
  if (not reset)
1180
  {
1181
    if (flags & DRIZZLE_OPEN_TEMPORARY_ONLY)
1182
    {
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
1183
      my_error(ER_NO_SUCH_TABLE, MYF(0), table_list->getSchemaName(), table_list->table_name);
1798.3.2 by Brian Aker
Remove goto for reset.
1184
      return NULL;
1185
    }
1186
1 by brian
clean slate
1187
    /*
1798.3.2 by Brian Aker
Remove goto for reset.
1188
      If it's the first table from a list of tables used in a query,
1189
      remember refresh_version (the version of open_cache state).
1190
      If the version changes while we're opening the remaining tables,
1191
      we will have to back off, close all the tables opened-so-far,
1192
      and try to reopen them.
1193
1194
      Note-> refresh_version is currently changed only during FLUSH TABLES.
1 by brian
clean slate
1195
    */
1798.3.2 by Brian Aker
Remove goto for reset.
1196
    if (!open_tables)
1197
    {
1198
      version= refresh_version;
1199
    }
1200
    else if ((version != refresh_version) &&
1201
             ! (flags & DRIZZLE_LOCK_IGNORE_FLUSH))
1202
    {
1203
      /* Someone did a refresh while thread was opening tables */
1 by brian
clean slate
1204
      if (refresh)
1046.1.5 by Brian Aker
Codestyle cleanup.
1205
        *refresh= true;
1798.3.2 by Brian Aker
Remove goto for reset.
1206
1046.1.5 by Brian Aker
Codestyle cleanup.
1207
      return NULL;
1 by brian
clean slate
1208
    }
1798.3.2 by Brian Aker
Remove goto for reset.
1209
1210
    /*
1211
      Before we test the global cache, we test our local session cache.
1212
    */
1213
    if (cached_table)
1214
    {
1215
      assert(false); /* Not implemented yet */
1216
    }
1217
1218
    /*
1219
      Non pre-locked/LOCK TABLES mode, and the table is not temporary:
1220
      this is the normal use case.
1221
      Now we should:
1222
      - try to find the table in the table cache.
1223
      - if one of the discovered Table instances is name-locked
1224
      (table->getShare()->version == 0) back off -- we have to wait
1225
      until no one holds a name lock on the table.
1226
      - if there is no such Table in the name cache, read the table definition
1227
      and insert it into the cache.
1228
      We perform all of the above under LOCK_open which currently protects
1229
      the open cache (also known as table cache) and table definitions stored
1230
      on disk.
1231
    */
1232
1233
    {
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1234
      LOCK_open.lock(); /* Lock for FLUSH TABLES for open table */
1798.3.2 by Brian Aker
Remove goto for reset.
1235
1236
      /*
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1237
        Actually try to find the table in the open_cache.
1238
        The cache may contain several "Table" instances for the same
1239
        physical table. The instances that are currently "in use" by
1240
        some thread have their "in_use" member != NULL.
1241
        There is no good reason for having more than one entry in the
1242
        hash for the same physical table, except that we use this as
1243
        an implicit "pending locks queue" - see
1244
        wait_for_locked_table_names for details.
1798.3.2 by Brian Aker
Remove goto for reset.
1245
      */
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1246
      ppp= get_open_cache().equal_range(key);
1247
1248
      table= NULL;
1249
      for (TableOpenCache::const_iterator iter= ppp.first;
1250
           iter != ppp.second; ++iter, table= NULL)
1251
      {
1252
        table= (*iter).second;
1253
1254
        if (not table->in_use)
1255
          break;
1256
        /*
1257
          Here we flush tables marked for flush.
1258
          Normally, table->getShare()->version contains the value of
1259
          refresh_version from the moment when this table was
1260
          (re-)opened and added to the cache.
1261
          If since then we did (or just started) FLUSH TABLES
1262
          statement, refresh_version has been increased.
1263
          For "name-locked" Table instances, table->getShare()->version is set
1264
          to 0 (see lock_table_name for details).
1265
          In case there is a pending FLUSH TABLES or a name lock, we
1266
          need to back off and re-start opening tables.
1267
          If we do not back off now, we may dead lock in case of lock
1268
          order mismatch with some other thread:
1269
          c1-> name lock t1; -- sort of exclusive lock
1270
          c2-> open t2;      -- sort of shared lock
1271
          c1-> name lock t2; -- blocks
1272
          c2-> open t1; -- blocks
1273
        */
1274
        if (table->needs_reopen_or_name_lock())
1275
        {
1276
          if (flags & DRIZZLE_LOCK_IGNORE_FLUSH)
1277
          {
1278
            /* Force close at once after usage */
1279
            version= table->getShare()->getVersion();
1280
            continue;
1281
          }
1282
1283
          /* Avoid self-deadlocks by detecting self-dependencies. */
1284
          if (table->open_placeholder && table->in_use == this)
1798.3.2 by Brian Aker
Remove goto for reset.
1285
          {
1286
            LOCK_open.unlock();
1835.1.4 by Brian Aker
Update to remove more of the getMutableShare() uses.
1287
            my_error(ER_UPDATE_TABLE_USED, MYF(0), table->getShare()->getTableName());
1798.3.2 by Brian Aker
Remove goto for reset.
1288
            return NULL;
1289
          }
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1290
1291
          /*
1292
            Back off, part 1: mark the table as "unused" for the
1293
            purpose of name-locking by setting table->db_stat to 0. Do
1294
            that only for the tables in this thread that have an old
1295
            table->getShare()->version (this is an optimization (?)).
1296
            table->db_stat == 0 signals wait_for_locked_table_names
1297
            that the tables in question are not used any more. See
1298
            table_is_used call for details.
1299
          */
1300
          close_old_data_files(false, false);
1301
1302
          /*
1303
            Back-off part 2: try to avoid "busy waiting" on the table:
1304
            if the table is in use by some other thread, we suspend
1305
            and wait till the operation is complete: when any
1306
            operation that juggles with table->getShare()->version completes,
1307
            it broadcasts COND_refresh condition variable.
1308
            If 'old' table we met is in use by current thread we return
1309
            without waiting since in this situation it's this thread
1310
            which is responsible for broadcasting on COND_refresh
1311
            (and this was done already in Session::close_old_data_files()).
1312
            Good example of such situation is when we have statement
1313
            that needs two instances of table and FLUSH TABLES comes
1314
            after we open first instance but before we open second
1315
            instance.
1316
          */
1317
          if (table->in_use != this)
1318
          {
1319
            /* wait_for_conditionwill unlock LOCK_open for us */
1320
            wait_for_condition(LOCK_open, COND_refresh);
1321
          }
1322
          else
1323
          {
1324
            LOCK_open.unlock();
1325
          }
1326
          /*
1327
            There is a refresh in progress for this table.
1328
            Signal the caller that it has to try again.
1329
          */
1330
          if (refresh)
1331
            *refresh= true;
1332
          return NULL;
1333
        }
1334
      }
1335
      if (table)
1336
      {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
1337
        unused_tables.unlink(dynamic_cast<table::Concurrent *>(table));
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1338
        table->in_use= this;
1339
      }
1340
      else
1341
      {
1342
        /* Insert a new Table instance into the open cache */
1343
        int error;
1344
        /* Free cache if too big */
1345
        unused_tables.cull();
1346
1347
        if (table_list->isCreate())
1348
        {
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
1349
          TableIdentifier  lock_table_identifier(table_list->getSchemaName(), table_list->table_name, message::Table::STANDARD);
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1350
1351
          if (not plugin::StorageEngine::doesTableExist(*this, lock_table_identifier))
1352
          {
1353
            /*
1354
              Table to be created, so we need to create placeholder in table-cache.
1355
            */
1864.3.15 by Brian Aker
Fix placeholder to take identifier.
1356
            if (!(table= table_cache_insert_placeholder(lock_table_identifier)))
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1357
            {
1358
              LOCK_open.unlock();
1359
              return NULL;
1360
            }
1361
            /*
1362
              Link placeholder to the open tables list so it will be automatically
1363
              removed once tables are closed. Also mark it so it won't be ignored
1364
              by other trying to take name-lock.
1365
            */
1366
            table->open_placeholder= true;
1367
            table->setNext(open_tables);
1368
            open_tables= table;
1369
            LOCK_open.unlock();
1370
1371
            return table ;
1372
          }
1373
          /* Table exists. Let us try to open it. */
1374
        }
1375
1376
        /* make a new table */
1377
        {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
1378
          table::Concurrent *new_table= new table::Concurrent;
1379
          table= new_table;
1380
          if (new_table == NULL)
1381
          {
1382
            LOCK_open.unlock();
1383
            return NULL;
1384
          }
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1385
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
1386
          error= open_unireg_entry(this, new_table, alias, identifier);
1387
          if (error != 0)
1388
          {
1389
            delete new_table;
1390
            LOCK_open.unlock();
1391
            return NULL;
1392
          }
1393
          (void)add_table(new_table);
1798.3.6 by Brian Aker
This is just a refactor for {} so I can follow a different merge a bit
1394
        }
1395
      }
1396
1397
      LOCK_open.unlock();
1798.3.2 by Brian Aker
Remove goto for reset.
1398
    }
1399
    if (refresh)
1400
    {
1401
      table->setNext(open_tables); /* Link into simple list */
1402
      open_tables= table;
1403
    }
1404
    table->reginfo.lock_type= TL_READ; /* Assume read */
1405
1406
  }
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
1407
  assert(table->getShare()->getTableCount() > 0 || table->getShare()->getType() != message::Table::STANDARD);
1 by brian
clean slate
1408
1409
  /* Fix alias if table name changes */
1669.2.6 by Brian Aker
First pass through encapsulating getAlias() from table.
1410
  if (strcmp(table->getAlias(), alias))
1 by brian
clean slate
1411
  {
1864.4.4 by Brian Aker
We now handle the free of the alias inside of table.
1412
    table->setAlias(alias);
1 by brian
clean slate
1413
  }
1046.1.5 by Brian Aker
Codestyle cleanup.
1414
1 by brian
clean slate
1415
  /* These variables are also set in reopen_table() */
1054.1.10 by Brian Aker
Move open_table() to session.
1416
  table->tablenr= current_tablenr++;
1046.1.5 by Brian Aker
Codestyle cleanup.
1417
  table->used_fields= 0;
1418
  table->const_table= 0;
274 by Brian Aker
my_bool conversion in Table
1419
  table->null_row= false;
1420
  table->maybe_null= false;
1421
  table->force_index= false;
1 by brian
clean slate
1422
  table->status=STATUS_NO_RECORD;
1672.3.5 by Brian Aker
This replaces the allocation we do for insert/update.
1423
  table->insert_values.clear();
1 by brian
clean slate
1424
  /* Catch wrong handling of the auto_increment_field_not_null. */
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1425
  assert(!table->auto_increment_field_not_null);
55 by brian
Update for using real bool types.
1426
  table->auto_increment_field_not_null= false;
1 by brian
clean slate
1427
  if (table->timestamp_field)
1607 by Brian Aker
Cursor now fully handles the update to timestamp for the engine.
1428
  {
1 by brian
clean slate
1429
    table->timestamp_field_type= table->timestamp_field->get_auto_set_type();
1607 by Brian Aker
Cursor now fully handles the update to timestamp for the engine.
1430
  }
1 by brian
clean slate
1431
  table->pos_in_table_list= table_list;
1432
  table->clear_column_bitmaps();
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1433
  assert(table->key_read == 0);
1046.1.5 by Brian Aker
Codestyle cleanup.
1434
1435
  return table;
1 by brian
clean slate
1436
}
1437
1438
1439
/**
1046 by Brian Aker
Merge Jay.
1440
  Close all instances of a table open by this thread and replace
1441
  them with exclusive name-locks.
1442
1443
  @param session        Thread context
1444
  @param db         Database name for the table to be closed
1445
  @param table_name Name of the table to be closed
1446
1447
  @note This function assumes that if we are not under LOCK TABLES,
1448
  then there is only one table open and locked. This means that
1449
  the function probably has to be adjusted before it can be used
1450
  anywhere outside ALTER Table.
1451
1452
  @note Must not use TableShare::table_name/db of the table being closed,
1453
  the strings are used in a loop even after the share may be freed.
1 by brian
clean slate
1454
*/
1455
1395.1.2 by Brian Aker
More logic pulling from ALTER TABLE
1456
void Session::close_data_files_and_morph_locks(TableIdentifier &identifier)
1457
{
1689.2.7 by Brian Aker
LOCK_open to boost.
1458
  safe_mutex_assert_owner(LOCK_open.native_handle()); /* Adjust locks at the end of ALTER TABLEL */
1 by brian
clean slate
1459
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1460
  if (lock)
1 by brian
clean slate
1461
  {
1462
    /*
1463
      If we are not under LOCK TABLES we should have only one table
1464
      open and locked so it makes sense to remove the lock at once.
1465
    */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1466
    mysql_unlock_tables(this, lock);
1467
    lock= 0;
1 by brian
clean slate
1468
  }
1469
1470
  /*
1471
    Note that open table list may contain a name-lock placeholder
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1472
    for target table name if we process ALTER Table ... RENAME.
1 by brian
clean slate
1473
    So loop below makes sense even if we are not under LOCK TABLES.
1474
  */
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1475
  for (Table *table= open_tables; table ; table=table->getNext())
1 by brian
clean slate
1476
  {
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1477
    if (table->getShare()->getCacheKey() == identifier.getKey())
1 by brian
clean slate
1478
    {
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1479
      table->open_placeholder= true;
1 by brian
clean slate
1480
      close_handle_and_leave_table_as_lock(table);
1481
    }
1482
  }
1483
}
1484
1485
1486
/**
1046 by Brian Aker
Merge Jay.
1487
  Reopen all tables with closed data files.
1488
1489
  @param session         Thread context
1490
  @param get_locks   Should we get locks after reopening tables ?
1491
  @param mark_share_as_old  Mark share as old to protect from a impending
1492
  global read lock.
1493
1494
  @note Since this function can't properly handle prelocking and
1495
  create placeholders it should be used in very special
1496
  situations like FLUSH TABLES or ALTER Table. In general
1497
  case one should just repeat open_tables()/lock_tables()
1498
  combination when one needs tables to be reopened (for
1109.1.3 by Brian Aker
Move names around a bit (to align similar methods)
1499
  example see openTablesLock()).
1046 by Brian Aker
Merge Jay.
1500
1501
  @note One should have lock on LOCK_open when calling this.
1502
1503
  @return false in case of success, true - otherwise.
1 by brian
clean slate
1504
*/
1505
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1506
bool Session::reopen_tables(bool get_locks, bool)
1 by brian
clean slate
1507
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1508
  Table *table,*next,**prev;
1509
  Table **tables,**tables_ptr;			// For locks
1 by brian
clean slate
1510
  bool error=0, not_used;
482 by Brian Aker
Remove uint.
1511
  const uint32_t flags= DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN |
1046 by Brian Aker
Merge Jay.
1512
    DRIZZLE_LOCK_IGNORE_GLOBAL_READ_LOCK |
1513
    DRIZZLE_LOCK_IGNORE_FLUSH;
1 by brian
clean slate
1514
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1515
  if (open_tables == NULL)
1516
    return false;
1 by brian
clean slate
1517
1689.2.7 by Brian Aker
LOCK_open to boost.
1518
  safe_mutex_assert_owner(LOCK_open.native_handle());
1 by brian
clean slate
1519
  if (get_locks)
1520
  {
1521
    /*
1522
      The ptr is checked later
1523
      Do not handle locks of MERGE children.
1524
    */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1525
    uint32_t opens= 0;
1046.1.13 by Brian Aker
Remove malloc() of table.
1526
1608 by Brian Aker
This encapsulates prev/next.
1527
    for (table= open_tables; table ; table=table->getNext())
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1528
    {
1 by brian
clean slate
1529
      opens++;
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1530
    }
1046.1.13 by Brian Aker
Remove malloc() of table.
1531
    tables= new Table *[opens];
1 by brian
clean slate
1532
  }
1533
  else
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1534
  {
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1535
    tables= &open_tables;
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1536
  }
1 by brian
clean slate
1537
  tables_ptr =tables;
1538
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1539
  prev= &open_tables;
1540
  for (table= open_tables; table ; table=next)
1 by brian
clean slate
1541
  {
1608 by Brian Aker
This encapsulates prev/next.
1542
    next= table->getNext();
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1543
1669.2.6 by Brian Aker
First pass through encapsulating getAlias() from table.
1544
    my_error(ER_CANT_REOPEN_TABLE, MYF(0), table->getAlias());
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
1545
    remove_table(dynamic_cast<table::Concurrent *>(table));
1502.1.1 by Brian Aker
This is a small update to remove reopen hack (this also moves us one more
1546
    error= 1;
1 by brian
clean slate
1547
  }
1548
  *prev=0;
1549
  if (tables != tables_ptr)			// Should we get back old locks
1550
  {
1711.6.1 by Brian Aker
Style on structure cleanup
1551
    DrizzleLock *local_lock;
1 by brian
clean slate
1552
    /*
1553
      We should always get these locks. Anyway, we must not go into
1554
      wait_for_tables() as it tries to acquire LOCK_open, which is
1555
      already locked.
1556
    */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1557
    some_tables_deleted= false;
1558
1559
    if ((local_lock= mysql_lock_tables(this, tables, (uint32_t) (tables_ptr - tables),
1 by brian
clean slate
1560
                                 flags, &not_used)))
1561
    {
1054.1.8 by Brian Aker
Remove lock_tables list from session.
1562
      /* unused */
1 by brian
clean slate
1563
    }
1564
    else
1565
    {
1566
      /*
1567
        This case should only happen if there is a bug in the reopen logic.
1568
        Need to issue error message to have a reply for the application.
1569
        Not exactly what happened though, but close enough.
1570
      */
1571
      my_error(ER_LOCK_DEADLOCK, MYF(0));
1572
      error=1;
1573
    }
1574
  }
1046.1.13 by Brian Aker
Remove malloc() of table.
1575
1 by brian
clean slate
1576
  if (get_locks && tables)
1046.1.13 by Brian Aker
Remove malloc() of table.
1577
    delete [] tables;
1578
1 by brian
clean slate
1579
  broadcast_refresh();
1046.1.13 by Brian Aker
Remove malloc() of table.
1580
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1581
  return(error);
1 by brian
clean slate
1582
}
1583
1584
1585
/**
1046 by Brian Aker
Merge Jay.
1586
  Close handlers for tables in list, but leave the Table structure
1587
  intact so that we can re-open these quickly.
1 by brian
clean slate
1588
1046 by Brian Aker
Merge Jay.
1589
  @param session           Thread context
1590
  @param table         Head of the list of Table objects
1591
  @param morph_locks   true  - remove locks which we have on tables being closed
1592
  but ensure that no DML or DDL will sneak in before
1593
  we will re-open the table (i.e. temporarily morph
1594
  our table-level locks into name-locks).
1595
  false - otherwise
1596
  @param send_refresh  Should we awake waiters even if we didn't close any tables?
1 by brian
clean slate
1597
*/
1598
1046.1.11 by Brian Aker
Refactor call close_old_data_files to Session object.
1599
void Session::close_old_data_files(bool morph_locks, bool send_refresh)
1 by brian
clean slate
1600
{
1601
  bool found= send_refresh;
1602
1046.1.11 by Brian Aker
Refactor call close_old_data_files to Session object.
1603
  Table *table= open_tables;
1604
1608 by Brian Aker
This encapsulates prev/next.
1605
  for (; table ; table=table->getNext())
1 by brian
clean slate
1606
  {
1607
    /*
1608
      Reopen marked for flush.
1609
    */
1610
    if (table->needs_reopen_or_name_lock())
1611
    {
1612
      found=1;
1613
      if (table->db_stat)
1614
      {
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
1615
        if (morph_locks)
1616
        {
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1617
          Table *ulcktbl= table;
1 by brian
clean slate
1618
          if (ulcktbl->lock_count)
1619
          {
1620
            /*
1621
              Wake up threads waiting for table-level lock on this table
1622
              so they won't sneak in when we will temporarily remove our
1623
              lock on it. This will also give them a chance to close their
1624
              instances of this table.
1625
            */
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
1626
            mysql_lock_abort(this, ulcktbl);
1627
            mysql_lock_remove(this, ulcktbl);
1 by brian
clean slate
1628
            ulcktbl->lock_count= 0;
1629
          }
1630
          if ((ulcktbl != table) && ulcktbl->db_stat)
1631
          {
1632
            /*
1633
              Close the parent too. Note that parent can come later in
1634
              the list of tables. It will then be noticed as closed and
1635
              as a placeholder. When this happens, do not clear the
1636
              placeholder flag. See the branch below ("***").
1637
            */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1638
            ulcktbl->open_placeholder= true;
1 by brian
clean slate
1639
            close_handle_and_leave_table_as_lock(ulcktbl);
1640
          }
1641
          /*
1642
            We want to protect the table from concurrent DDL operations
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1643
            (like RENAME Table) until we will re-open and re-lock it.
1 by brian
clean slate
1644
          */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1645
          table->open_placeholder= true;
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
1646
        }
1 by brian
clean slate
1647
        close_handle_and_leave_table_as_lock(table);
1648
      }
1649
      else if (table->open_placeholder && !morph_locks)
1650
      {
1651
        /*
1652
          We come here only in close-for-back-off scenario. So we have to
1653
          "close" create placeholder here to avoid deadlocks (for example,
1654
          in case of concurrent execution of CREATE TABLE t1 SELECT * FROM t2
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1655
          and RENAME Table t2 TO t1). In close-for-re-open scenario we will
1 by brian
clean slate
1656
          probably want to let it stay.
1657
1658
          Note "***": We must not enter this branch if the placeholder
1659
          flag has been set because of a former close through a child.
1660
          See above the comment that refers to this note.
1661
        */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
1662
        table->open_placeholder= false;
1 by brian
clean slate
1663
      }
1664
    }
1665
  }
1666
  if (found)
1667
    broadcast_refresh();
1668
}
1669
1670
1671
/*
1672
  Wait until all threads has closed the tables in the list
1673
  We have also to wait if there is thread that has a lock on this table even
1674
  if the table is closed
1675
*/
1676
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1677
bool table_is_used(Table *table, bool wait_for_name_lock)
1 by brian
clean slate
1678
{
1679
  do
1680
  {
1619.1.1 by Brian Aker
Update for TableShare usage of key (remove a case where we had to build it).
1681
    const TableIdentifier::Key &key(table->getShare()->getCacheKey());
1 by brian
clean slate
1682
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1683
    TableOpenCacheRange ppp;
1684
    ppp= get_open_cache().equal_range(key);
1685
1686
    for (TableOpenCache::const_iterator iter= ppp.first;
1687
         iter != ppp.second; ++iter)
1 by brian
clean slate
1688
    {
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1689
      Table *search= (*iter).second;
1 by brian
clean slate
1690
      if (search->in_use == table->in_use)
1691
        continue;                               // Name locked by this thread
1692
      /*
1693
        We can't use the table under any of the following conditions:
1694
        - There is an name lock on it (Table is to be deleted or altered)
1695
        - If we are in flush table and we didn't execute the flush
1696
        - If the table engine is open and it's an old version
1697
        (We must wait until all engines are shut down to use the table)
1698
      */
1699
      if ( (search->locked_by_name && wait_for_name_lock) ||
1700
           (search->is_name_opened() && search->needs_reopen_or_name_lock()))
1046.1.10 by Brian Aker
Formatting around return (style)
1701
        return 1;
1 by brian
clean slate
1702
    }
1608 by Brian Aker
This encapsulates prev/next.
1703
  } while ((table=table->getNext()));
1046.1.10 by Brian Aker
Formatting around return (style)
1704
  return 0;
1 by brian
clean slate
1705
}
1706
1707
1708
/* Wait until all used tables are refreshed */
1709
520.1.22 by Brian Aker
Second pass of thd cleanup
1710
bool wait_for_tables(Session *session)
1 by brian
clean slate
1711
{
1712
  bool result;
1713
520.1.22 by Brian Aker
Second pass of thd cleanup
1714
  session->set_proc_info("Waiting for tables");
1718.1.1 by Brian Aker
Test scoped ptr in the tree.
1715
  {
1812.3.7 by Brian Aker
Typdef our lock type.
1716
    boost_unique_lock_t lock(LOCK_open);
1718.1.1 by Brian Aker
Test scoped ptr in the tree.
1717
    while (!session->killed)
1718
    {
1719
      session->some_tables_deleted= false;
1720
      session->close_old_data_files(false, dropping_tables != 0);
1721
      if (!table_is_used(session->open_tables, 1))
1722
        break;
1723
      COND_refresh.wait(lock);
1724
    }
1725
    if (session->killed)
1726
      result= true;					// aborted
1727
    else
1728
    {
1729
      /* Now we can open all tables without any interference */
1730
      session->set_proc_info("Reopen tables");
1731
      session->version= refresh_version;
1732
      result= session->reopen_tables(false, false);
1733
    }
1734
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
1735
  session->set_proc_info(0);
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
1736
1737
  return result;
1 by brian
clean slate
1738
}
1739
1740
1741
/*
1742
  drop tables from locked list
1743
1744
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
1745
  drop_locked_tables()
1746
  session			Thread thandler
1747
  db			Database
1748
  table_name		Table name
1 by brian
clean slate
1749
1750
  INFORMATION
1046 by Brian Aker
Merge Jay.
1751
  This is only called on drop tables
1 by brian
clean slate
1752
1046 by Brian Aker
Merge Jay.
1753
  The Table object for the dropped table is unlocked but still kept around
1754
  as a name lock, which means that the table will be available for other
1755
  thread as soon as we call unlock_table_names().
1756
  If there is multiple copies of the table locked, all copies except
1757
  the first, which acts as a name lock, is removed.
1 by brian
clean slate
1758
1759
  RETURN
1046 by Brian Aker
Merge Jay.
1760
#    If table existed, return table
1761
0	 Table was not locked
1 by brian
clean slate
1762
*/
1763
1764
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1765
Table *drop_locked_tables(Session *session, const drizzled::TableIdentifier &identifier)
1 by brian
clean slate
1766
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1767
  Table *table,*next,**prev, *found= 0;
520.1.22 by Brian Aker
Second pass of thd cleanup
1768
  prev= &session->open_tables;
1 by brian
clean slate
1769
1770
  /*
1771
    Note that we need to hold LOCK_open while changing the
1772
    open_tables list. Another thread may work on it.
1773
    (See: remove_table_from_cache(), mysql_wait_completed_table())
1774
    Closing a MERGE child before the parent would be fatal if the
1775
    other thread tries to abort the MERGE lock in between.
1776
  */
520.1.22 by Brian Aker
Second pass of thd cleanup
1777
  for (table= session->open_tables; table ; table=next)
1 by brian
clean slate
1778
  {
1608 by Brian Aker
This encapsulates prev/next.
1779
    next=table->getNext();
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1780
    if (table->getShare()->getCacheKey() == identifier.getKey())
1 by brian
clean slate
1781
    {
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
1782
      mysql_lock_remove(session, table);
1 by brian
clean slate
1783
1784
      if (!found)
1785
      {
1786
        found= table;
1787
        /* Close engine table, but keep object around as a name lock */
1788
        if (table->db_stat)
1789
        {
1790
          table->db_stat= 0;
1208.3.2 by brian
Update for Cursor renaming.
1791
          table->cursor->close();
1 by brian
clean slate
1792
        }
1793
      }
1794
      else
1795
      {
1796
        /* We already have a name lock, remove copy */
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
1797
        remove_table(dynamic_cast<table::Concurrent *>(table));
1 by brian
clean slate
1798
      }
1799
    }
1800
    else
1801
    {
1802
      *prev=table;
1608 by Brian Aker
This encapsulates prev/next.
1803
      prev= table->getNextPtr();
1 by brian
clean slate
1804
    }
1805
  }
1806
  *prev=0;
1807
  if (found)
1808
    broadcast_refresh();
1054.1.8 by Brian Aker
Remove lock_tables list from session.
1809
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
1810
  return(found);
1 by brian
clean slate
1811
}
1812
1813
1814
/*
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1815
  If we have the table open, which only happens when a LOCK Table has been
1 by brian
clean slate
1816
  done on the table, change the lock type to a lock that will abort all
1817
  other threads trying to get the lock.
1818
*/
1819
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1820
void abort_locked_tables(Session *session, const drizzled::TableIdentifier &identifier)
1 by brian
clean slate
1821
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1822
  Table *table;
1608 by Brian Aker
This encapsulates prev/next.
1823
  for (table= session->open_tables; table ; table= table->getNext())
1 by brian
clean slate
1824
  {
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
1825
    if (table->getShare()->getCacheKey() == identifier.getKey())
1 by brian
clean slate
1826
    {
1827
      /* If MERGE child, forward lock handling to parent. */
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
1828
      mysql_lock_abort(session, table);
1 by brian
clean slate
1829
      break;
1830
    }
1831
  }
1832
}
1833
1834
/*
1208.3.2 by brian
Update for Cursor renaming.
1835
  Load a table definition from cursor and open unireg table
1 by brian
clean slate
1836
1837
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
1838
  open_unireg_entry()
1839
  session			Thread handle
1840
  entry		Store open table definition here
1841
  table_list		TableList with db, table_name
1842
  alias		Alias name
1843
  cache_key		Key for share_cache
1844
  cache_key_length	length of cache_key
1 by brian
clean slate
1845
1846
  NOTES
1046 by Brian Aker
Merge Jay.
1847
  Extra argument for open is taken from session->open_options
1848
  One must have a lock on LOCK_open when calling this function
1 by brian
clean slate
1849
1850
  RETURN
1046 by Brian Aker
Merge Jay.
1851
  0	ok
1852
#	Error
1 by brian
clean slate
1853
*/
1854
1502.1.16 by Brian Aker
Remove members to functions that are no longer used.
1855
static int open_unireg_entry(Session *session,
1856
                             Table *entry,
1 by brian
clean slate
1857
                             const char *alias,
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
1858
                             TableIdentifier &identifier)
1 by brian
clean slate
1859
{
1860
  int error;
1835.1.2 by Brian Aker
Further push down the logic for shared_ptr.
1861
  TableSharePtr share;
482 by Brian Aker
Remove uint.
1862
  uint32_t discover_retry_count= 0;
1 by brian
clean slate
1863
1689.2.7 by Brian Aker
LOCK_open to boost.
1864
  safe_mutex_assert_owner(LOCK_open.native_handle());
1 by brian
clean slate
1865
retry:
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
1866
  if (not (share= TableShare::getShareCreate(session,
1867
                                             identifier,
1868
                                             &error)))
1046.1.10 by Brian Aker
Formatting around return (style)
1869
    return 1;
1 by brian
clean slate
1870
1626.3.2 by Brian Aker
Cleanup table_share to pass in identifier.
1871
  while ((error= share->open_table_from_share(session,
1872
                                              identifier,
1873
                                              alias,
1502.1.24 by Brian Aker
Absorb TableShare proto to share methods.
1874
                                              (uint32_t) (HA_OPEN_KEYFILE |
1875
                                                          HA_OPEN_RNDFILE |
1876
                                                          HA_GET_INDEX |
1877
                                                          HA_TRY_READ_ONLY),
1878
                                              session->open_options, *entry)))
1 by brian
clean slate
1879
  {
1880
    if (error == 7)                             // Table def changed
1881
    {
1578.2.3 by Brian Aker
Take version and encapsulate it in TableShare
1882
      share->resetVersion();                        // Mark share as old
1 by brian
clean slate
1883
      if (discover_retry_count++)               // Retry once
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
1884
      {
1885
        TableShare::release(share);
1886
        return 1;
1887
      }
1 by brian
clean slate
1888
1889
      /*
1054.1.7 by Brian Aker
Refactor TableList methods.
1890
        TODO->
1891
        Here we should wait until all threads has released the table.
1892
        For now we do one retry. This may cause a deadlock if there
1893
        is other threads waiting for other tables used by this thread.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
1894
1054.1.7 by Brian Aker
Refactor TableList methods.
1895
        Proper fix would be to if the second retry failed:
1896
        - Mark that table def changed
1897
        - Return from open table
1898
        - Close all tables used by this thread
1899
        - Start waiting that the share is released
1900
        - Retry by opening all tables again
1 by brian
clean slate
1901
      */
673.3.1 by Stewart Smith
remove old table discovery mechanim.
1902
1 by brian
clean slate
1903
      /*
1904
        TO BE FIXED
1905
        To avoid deadlock, only wait for release if no one else is
1906
        using the share.
1907
      */
1578.2.4 by Brian Aker
More encapsulation of table Share, this time table count.
1908
      if (share->getTableCount() != 1)
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
1909
      {
1910
        TableShare::release(share);
1911
        return 1;
1912
      }
1 by brian
clean slate
1913
      /* Free share and wait until it's released by all threads */
1093.6.1 by Brian Aker
Refactor TableShare has to be behind class.
1914
      TableShare::release(share);
1915
520.1.22 by Brian Aker
Second pass of thd cleanup
1916
      if (!session->killed)
1 by brian
clean slate
1917
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
1918
        drizzle_reset_errors(session, 1);         // Clear warnings
1919
        session->clear_error();                 // Clear error message
1 by brian
clean slate
1920
        goto retry;
1921
      }
1046.1.10 by Brian Aker
Formatting around return (style)
1922
      return 1;
1 by brian
clean slate
1923
    }
1235.1.1 by Brian Aker
Merge Monty.
1924
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
1925
    TableShare::release(share);
1926
1927
    return 1;
1233.1.11 by Brian Aker
Remove second pass of auto repair code.
1928
  }
1929
1046.1.10 by Brian Aker
Formatting around return (style)
1930
  return 0;
1 by brian
clean slate
1931
}
1932
1933
1934
/*
1935
  Open all tables in list
1936
1937
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
1938
  open_tables()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
1939
  session - thread Cursor
1046 by Brian Aker
Merge Jay.
1940
  start - list of tables in/out
1941
  counter - number of opened tables will be return using this parameter
1942
  flags   - bitmap of flags to modify how the tables will be open:
1943
  DRIZZLE_LOCK_IGNORE_FLUSH - open table even if someone has
1944
  done a flush or namelock on it.
1 by brian
clean slate
1945
1946
  NOTE
1046 by Brian Aker
Merge Jay.
1947
  Unless we are already in prelocked mode, this function will also precache
1948
  all SP/SFs explicitly or implicitly (via views and triggers) used by the
1949
  query and add tables needed for their execution to table list. If resulting
1950
  tables list will be non empty it will mark query as requiring precaching.
1951
  Prelocked mode will be enabled for such query during lock_tables() call.
1 by brian
clean slate
1952
1046 by Brian Aker
Merge Jay.
1953
  If query for which we are opening tables is already marked as requiring
1954
  prelocking it won't do such precaching and will simply reuse table list
1955
  which is already built.
1 by brian
clean slate
1956
1957
  RETURN
1046 by Brian Aker
Merge Jay.
1958
  0  - OK
1959
  -1 - error
1 by brian
clean slate
1960
*/
1961
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1962
int Session::open_tables_from_list(TableList **start, uint32_t *counter, uint32_t flags)
1 by brian
clean slate
1963
{
327.2.4 by Brian Aker
Refactoring table.h
1964
  TableList *tables= NULL;
1 by brian
clean slate
1965
  bool refresh;
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1966
  int result= 0;
1 by brian
clean slate
1967
  /* Also used for indicating that prelocking is need */
1968
  bool safe_to_ignore_table;
1969
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1970
  current_tablenr= 0;
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
1971
restart:
1 by brian
clean slate
1972
  *counter= 0;
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
1973
  set_proc_info("Opening tables");
1 by brian
clean slate
1974
1975
  /*
1976
    For every table in the list of tables to open, try to find or open
1977
    a table.
1978
  */
1979
  for (tables= *start; tables ;tables= tables->next_global)
1980
  {
55 by brian
Update for using real bool types.
1981
    safe_to_ignore_table= false;
1 by brian
clean slate
1982
1983
    /*
1984
      Ignore placeholders for derived tables. After derived tables
1985
      processing, link to created temporary table will be put here.
1986
      If this is derived table for view then we still want to process
1987
      routines used by this view.
1046 by Brian Aker
Merge Jay.
1988
    */
1 by brian
clean slate
1989
    if (tables->derived)
1990
    {
1991
      continue;
1992
    }
1993
    (*counter)++;
1994
1995
    /*
1317.2.5 by Monty Taylor
Prevent the user from seeing or attempting to access tables that he is not
1996
     * Is the user authorized to see this table? Do this before we check
1997
     * to see if it exists so that an unauthorized user cannot phish for
1998
     * table/schema information via error messages
1999
     */
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
2000
    TableIdentifier the_table(tables->getSchemaName(), tables->table_name);
1317.2.5 by Monty Taylor
Prevent the user from seeing or attempting to access tables that he is not
2001
    if (not plugin::Authorization::isAuthorized(getSecurityContext(),
1471.2.4 by Monty Taylor
Fixed a stoopid.
2002
                                                the_table))
1317.2.5 by Monty Taylor
Prevent the user from seeing or attempting to access tables that he is not
2003
    {
2004
      result= -1;                               // Fatal error
2005
      break;
2006
    }
2007
2008
2009
    /*
1 by brian
clean slate
2010
      Not a placeholder: must be a base table or a view, and the table is
2011
      not opened yet. Try to open the table.
2012
    */
1034.1.4 by Brian Aker
Fixed TableList to correctly construct (and removed memset() calls in
2013
    if (tables->table == NULL)
1109.1.3 by Brian Aker
Move names around a bit (to align similar methods)
2014
      tables->table= openTable(tables, &refresh, flags);
1 by brian
clean slate
2015
1034.1.4 by Brian Aker
Fixed TableList to correctly construct (and removed memset() calls in
2016
    if (tables->table == NULL)
1 by brian
clean slate
2017
    {
2018
      if (refresh)				// Refresh in progress
2019
      {
2020
        /*
2021
          We have met name-locked or old version of table. Now we have
2022
          to close all tables which are not up to date. We also have to
2023
          throw away set of prelocked tables (and thus close tables from
2024
          this set that were open by now) since it possible that one of
2025
          tables which determined its content was changed.
2026
2027
          Instead of implementing complex/non-robust logic mentioned
2028
          above we simply close and then reopen all tables.
2029
2030
          In order to prepare for recalculation of set of prelocked tables
2031
          we pretend that we have finished calculation which we were doing
2032
          currently.
2033
        */
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
2034
        close_tables_for_reopen(start);
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
2035
        goto restart;
1 by brian
clean slate
2036
      }
2037
2038
      if (safe_to_ignore_table)
2039
        continue;
2040
2041
      result= -1;				// Fatal error
2042
      break;
2043
    }
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2044
    if (tables->lock_type != TL_UNLOCK)
1 by brian
clean slate
2045
    {
2046
      if (tables->lock_type == TL_WRITE_DEFAULT)
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
2047
        tables->table->reginfo.lock_type= update_lock_default;
1608.2.3 by Brian Aker
Encapsulate type for TableShare.
2048
      else if (tables->table->getShare()->getType() == message::Table::STANDARD)
1 by brian
clean slate
2049
        tables->table->reginfo.lock_type= tables->lock_type;
2050
    }
2051
  }
2052
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
2053
  set_proc_info(0);
1 by brian
clean slate
2054
2055
  if (result && tables)
2056
  {
2057
    /*
2058
      Some functions determine success as (tables->table != NULL).
520.1.22 by Brian Aker
Second pass of thd cleanup
2059
      tables->table is in session->open_tables.
1 by brian
clean slate
2060
    */
2061
    tables->table= NULL;
2062
  }
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
2063
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2064
  return(result);
1 by brian
clean slate
2065
}
2066
2067
2068
/*
2069
  Open and lock one table
2070
2071
  SYNOPSIS
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2072
  openTableLock()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2073
  session			Thread Cursor
1046 by Brian Aker
Merge Jay.
2074
  table_list		Table to open is first table in this list
2075
  lock_type		Lock to use for open
2076
  lock_flags          Flags passed to mysql_lock_table
1 by brian
clean slate
2077
2078
  NOTE
1046 by Brian Aker
Merge Jay.
2079
  This function don't do anything like SP/SF/views/triggers analysis done
2080
  in open_tables(). It is intended for opening of only one concrete table.
2081
  And used only in special contexts.
1 by brian
clean slate
2082
2083
  RETURN VALUES
1046 by Brian Aker
Merge Jay.
2084
  table		Opened table
2085
  0			Error
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2086
1046 by Brian Aker
Merge Jay.
2087
  If ok, the following are also set:
2088
  table_list->lock_type 	lock_type
2089
  table_list->table		table
1 by brian
clean slate
2090
*/
2091
1109.1.3 by Brian Aker
Move names around a bit (to align similar methods)
2092
Table *Session::openTableLock(TableList *table_list, thr_lock_type lock_type)
1 by brian
clean slate
2093
{
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
2094
  Table *table;
1 by brian
clean slate
2095
  bool refresh;
2096
1054.1.11 by Brian Aker
Remove dead lock.cc commands.
2097
  set_proc_info("Opening table");
2098
  current_tablenr= 0;
1109.1.3 by Brian Aker
Move names around a bit (to align similar methods)
2099
  while (!(table= openTable(table_list, &refresh)) &&
1 by brian
clean slate
2100
         refresh)
2101
    ;
2102
2103
  if (table)
2104
  {
2105
    table_list->lock_type= lock_type;
2106
    table_list->table=	   table;
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2107
1054.1.11 by Brian Aker
Remove dead lock.cc commands.
2108
    assert(lock == 0);	// You must lock everything at once
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2109
    if ((table->reginfo.lock_type= lock_type) != TL_UNLOCK)
1054.1.11 by Brian Aker
Remove dead lock.cc commands.
2110
      if (! (lock= mysql_lock_tables(this, &table_list->table, 1, 0, &refresh)))
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
2111
        table= 0;
1 by brian
clean slate
2112
  }
2113
1054.1.11 by Brian Aker
Remove dead lock.cc commands.
2114
  set_proc_info(0);
2115
2116
  return table;
1 by brian
clean slate
2117
}
2118
2119
/*
2120
  Lock all tables in list
2121
2122
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2123
  lock_tables()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2124
  session			Thread Cursor
1046 by Brian Aker
Merge Jay.
2125
  tables		Tables to lock
2126
  count		Number of opened tables
2127
  need_reopen         Out parameter which if true indicates that some
2128
  tables were dropped or altered during this call
2129
  and therefore invoker should reopen tables and
2130
  try to lock them once again (in this case
2131
  lock_tables() will also return error).
1 by brian
clean slate
2132
2133
  NOTES
1046 by Brian Aker
Merge Jay.
2134
  You can't call lock_tables twice, as this would break the dead-lock-free
2135
  handling thr_lock gives us.  You most always get all needed locks at
2136
  once.
1 by brian
clean slate
2137
1046 by Brian Aker
Merge Jay.
2138
  If query for which we are calling this function marked as requring
2139
  prelocking, this function will do implicit LOCK TABLES and change
2140
  session::prelocked_mode accordingly.
1 by brian
clean slate
2141
2142
  RETURN VALUES
1046 by Brian Aker
Merge Jay.
2143
  0	ok
2144
  -1	Error
1 by brian
clean slate
2145
*/
2146
1109.1.5 by Brian Aker
More extraction from sql_base
2147
int Session::lock_tables(TableList *tables, uint32_t count, bool *need_reopen)
1 by brian
clean slate
2148
{
327.2.4 by Brian Aker
Refactoring table.h
2149
  TableList *table;
1109.1.5 by Brian Aker
More extraction from sql_base
2150
  Session *session= this;
1 by brian
clean slate
2151
2152
  /*
2153
    We can't meet statement requiring prelocking if we already
2154
    in prelocked mode.
2155
  */
55 by brian
Update for using real bool types.
2156
  *need_reopen= false;
1 by brian
clean slate
2157
1034.1.4 by Brian Aker
Fixed TableList to correctly construct (and removed memset() calls in
2158
  if (tables == NULL)
600 by Brian Aker
Removing more options around changing replication
2159
    return 0;
1 by brian
clean slate
2160
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2161
  assert(session->lock == 0);	// You must lock everything at once
2162
  Table **start,**ptr;
2163
  uint32_t lock_flag= DRIZZLE_LOCK_NOTIFY_IF_NEED_REOPEN;
2164
2165
  if (!(ptr=start=(Table**) session->alloc(sizeof(Table*)*count)))
2166
    return -1;
2167
  for (table= tables; table; table= table->next_global)
1 by brian
clean slate
2168
  {
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2169
    if (!table->placeholder())
2170
      *(ptr++)= table->table;
1 by brian
clean slate
2171
  }
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2172
2173
  if (!(session->lock= mysql_lock_tables(session, start, (uint32_t) (ptr - start),
2174
                                         lock_flag, need_reopen)))
1 by brian
clean slate
2175
  {
1054.1.8 by Brian Aker
Remove lock_tables list from session.
2176
    return -1;
1 by brian
clean slate
2177
  }
2178
600 by Brian Aker
Removing more options around changing replication
2179
  return 0;
1 by brian
clean slate
2180
}
2181
2182
2183
/*
2184
  Open a single table without table caching and don't set it in open_list
2185
2186
  SYNPOSIS
1046 by Brian Aker
Merge Jay.
2187
  open_temporary_table()
2188
  session		  Thread object
2189
  path	  Path (without .frm)
2190
  db		  database
2191
  table_name	  Table name
2192
  link_in_list  1 if table should be linked into session->temporary_tables
2193
2194
NOTES:
2195
Used by alter_table to open a temporary table and when creating
2196
a temporary table with CREATE TEMPORARY ...
2197
2198
RETURN
2199
0  Error
2200
#  Table object
1 by brian
clean slate
2201
*/
2202
1223.4.7 by Brian Aker
Next pass through for TableIdentifier.
2203
Table *Session::open_temporary_table(TableIdentifier &identifier,
2204
                                     bool link_in_list)
1 by brian
clean slate
2205
{
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
2206
  assert(identifier.isTmp());
1864.4.1 by Brian Aker
Move share creation into temporary table (there still exists and issue with
2207
2208
2209
  table::Temporary *new_tmp_table= new table::Temporary(identifier.getType(),
2210
                                                        identifier,
2211
                                                        const_cast<char *>(identifier.getPath().c_str()),
2212
                                                        static_cast<uint32_t>(identifier.getPath().length()));
1669.2.4 by Brian Aker
Fix temp tables to use new over malloc.
2213
  if (not new_tmp_table)
684 by Brian Aker
Mass cleanup for casting.
2214
    return NULL;
1 by brian
clean slate
2215
1039.1.10 by Brian Aker
Minor formating, change of one name to make grep easier :)
2216
  /*
2217
    First open the share, and then open the table from the share we just opened.
2218
  */
1864.4.1 by Brian Aker
Move share creation into temporary table (there still exists and issue with
2219
  if (new_tmp_table->getMutableShare()->open_table_def(*this, identifier) ||
2220
      new_tmp_table->getMutableShare()->open_table_from_share(this, identifier, identifier.getTableName().c_str(),
2221
                                                              (uint32_t) (HA_OPEN_KEYFILE | HA_OPEN_RNDFILE |
2222
                                                                          HA_GET_INDEX),
2223
                                                              ha_open_options,
2224
                                                              *new_tmp_table))
1 by brian
clean slate
2225
  {
2226
    /* No need to lock share->mutex as this is not needed for tmp tables */
1864.4.1 by Brian Aker
Move share creation into temporary table (there still exists and issue with
2227
    delete new_tmp_table->getMutableShare();
1672.3.4 by Brian Aker
This change the style on a few TODO, and fixes an error path to correctly
2228
    delete new_tmp_table;
1502.1.19 by Brian Aker
Adds concept of table owned TableShare.
2229
1046.1.10 by Brian Aker
Formatting around return (style)
2230
    return 0;
1 by brian
clean slate
2231
  }
2232
1109.1.1 by Brian Aker
Applying refactor of tmp table bits back to session. (this all needs to be
2233
  new_tmp_table->reginfo.lock_type= TL_WRITE;	 // Simulate locked
1 by brian
clean slate
2234
2235
  if (link_in_list)
2236
  {
2237
    /* growing temp list at the head */
1608 by Brian Aker
This encapsulates prev/next.
2238
    new_tmp_table->setNext(this->temporary_tables);
2239
    if (new_tmp_table->getNext())
2240
    {
2241
      new_tmp_table->getNext()->setPrev(new_tmp_table);
2242
    }
1109.1.1 by Brian Aker
Applying refactor of tmp table bits back to session. (this all needs to be
2243
    this->temporary_tables= new_tmp_table;
1608 by Brian Aker
This encapsulates prev/next.
2244
    this->temporary_tables->setPrev(0);
1109.1.1 by Brian Aker
Applying refactor of tmp table bits back to session. (this all needs to be
2245
  }
2246
  new_tmp_table->pos_in_table_list= 0;
2247
2248
  return new_tmp_table;
1 by brian
clean slate
2249
}
2250
2251
2252
/*****************************************************************************
1046 by Brian Aker
Merge Jay.
2253
 * The following find_field_in_XXX procedures implement the core of the
2254
 * name resolution functionality. The entry point to resolve a column name in a
2255
 * list of tables is 'find_field_in_tables'. It calls 'find_field_in_table_ref'
2256
 * for each table reference. In turn, depending on the type of table reference,
2257
 * 'find_field_in_table_ref' calls one of the 'find_field_in_XXX' procedures
2258
 * below specific for the type of table reference.
2259
 ******************************************************************************/
1 by brian
clean slate
2260
2261
/* Special Field pointers as return values of find_field_in_XXX functions. */
2262
Field *not_found_field= (Field*) 0x1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2263
Field *view_ref_found= (Field*) 0x2;
1 by brian
clean slate
2264
520.1.22 by Brian Aker
Second pass of thd cleanup
2265
static void update_field_dependencies(Session *session, Field *field, Table *table)
1 by brian
clean slate
2266
{
520.1.22 by Brian Aker
Second pass of thd cleanup
2267
  if (session->mark_used_columns != MARK_COLUMNS_NONE)
1 by brian
clean slate
2268
  {
1802.16.8 by Padraig O'Sullivan
Removal of all MyBitmap from the code base. Compiles but test failures exist now.
2269
    boost::dynamic_bitset<> *current_bitmap= NULL;
1 by brian
clean slate
2270
2271
    /*
2272
      We always want to register the used keys, as the column bitmap may have
2273
      been set for all fields (for example for view).
2274
    */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2275
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
2276
    table->covering_keys&= field->part_of_key;
2277
    table->merge_keys|= field->part_of_key;
1 by brian
clean slate
2278
520.1.22 by Brian Aker
Second pass of thd cleanup
2279
    if (session->mark_used_columns == MARK_COLUMNS_READ)
1 by brian
clean slate
2280
    {
2281
      current_bitmap= table->read_set;
2282
    }
2283
    else
2284
    {
2285
      current_bitmap= table->write_set;
2286
    }
2287
1802.16.8 by Padraig O'Sullivan
Removal of all MyBitmap from the code base. Compiles but test failures exist now.
2288
    //if (current_bitmap->testAndSet(field->field_index))
2289
    if (current_bitmap->test(field->field_index))
1 by brian
clean slate
2290
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
2291
      if (session->mark_used_columns == MARK_COLUMNS_WRITE)
2292
        session->dup_field= field;
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2293
      return;
1 by brian
clean slate
2294
    }
2295
    table->used_fields++;
2296
  }
2297
}
2298
2299
2300
/*
2301
  Find field by name in a NATURAL/USING join table reference.
2302
2303
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2304
  find_field_in_natural_join()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2305
  session			 [in]  thread Cursor
1046 by Brian Aker
Merge Jay.
2306
  table_ref            [in]  table reference to search
2307
  name		 [in]  name of field
2308
  length		 [in]  length of name
2309
  ref                  [in/out] if 'name' is resolved to a view field, ref is
2310
  set to point to the found view field
2311
  register_tree_change [in]  true if ref is not stack variable and we
2312
  need register changes in item tree
2313
  actual_table         [out] the original table reference where the field
2314
  belongs - differs from 'table_list' only for
2315
  NATURAL/USING joins
1 by brian
clean slate
2316
2317
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
2318
  Search for a field among the result fields of a NATURAL/USING join.
2319
  Notice that this procedure is called only for non-qualified field
2320
  names. In the case of qualified fields, we search directly the base
2321
  tables of a natural join.
1 by brian
clean slate
2322
2323
  RETURN
1046 by Brian Aker
Merge Jay.
2324
  NULL        if the field was not found
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2325
  PTR         Pointer to the found Field
1 by brian
clean slate
2326
*/
2327
2328
static Field *
779.3.1 by Monty Taylor
More cleanup.
2329
find_field_in_natural_join(Session *session, TableList *table_ref,
2330
                           const char *name, uint32_t , Item **,
2331
                           bool, TableList **actual_table)
1 by brian
clean slate
2332
{
2333
  List_iterator_fast<Natural_join_column>
2334
    field_it(*(table_ref->join_columns));
2335
  Natural_join_column *nj_col, *curr_nj_col;
2336
  Field *found_field;
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2337
2338
  assert(table_ref->is_natural_join && table_ref->join_columns);
2339
  assert(*actual_table == NULL);
1 by brian
clean slate
2340
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2341
  for (nj_col= NULL, curr_nj_col= field_it++; curr_nj_col;
1 by brian
clean slate
2342
       curr_nj_col= field_it++)
2343
  {
2344
    if (!my_strcasecmp(system_charset_info, curr_nj_col->name(), name))
2345
    {
2346
      if (nj_col)
2347
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
2348
        my_error(ER_NON_UNIQ_ERROR, MYF(0), name, session->where);
1019.1.6 by Brian Aker
A number of random cleanups.
2349
        return NULL;
1 by brian
clean slate
2350
      }
2351
      nj_col= curr_nj_col;
2352
    }
2353
  }
2354
  if (!nj_col)
1019.1.6 by Brian Aker
A number of random cleanups.
2355
    return NULL;
1 by brian
clean slate
2356
  {
2357
    /* This is a base table. */
1660.1.3 by Brian Aker
Encapsulate Table in field
2358
    assert(nj_col->table_ref->table == nj_col->table_field->getTable());
1 by brian
clean slate
2359
    found_field= nj_col->table_field;
520.1.22 by Brian Aker
Second pass of thd cleanup
2360
    update_field_dependencies(session, found_field, nj_col->table_ref->table);
1 by brian
clean slate
2361
  }
2362
2363
  *actual_table= nj_col->table_ref;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2364
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2365
  return(found_field);
1 by brian
clean slate
2366
}
2367
2368
2369
/*
2370
  Find field by name in a base table or a view with temp table algorithm.
2371
2372
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2373
  find_field_in_table()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2374
  session				thread Cursor
1046 by Brian Aker
Merge Jay.
2375
  table			table where to search for the field
2376
  name			name of field
2377
  length			length of name
2378
  allow_rowid			do allow finding of "_rowid" field?
2379
  cached_field_index_ptr	cached position in field list (used to speedup
2380
  lookup for fields in prepared tables)
1 by brian
clean slate
2381
2382
  RETURN
1046 by Brian Aker
Merge Jay.
2383
  0	field is not found
2384
#	pointer to field
1 by brian
clean slate
2385
*/
2386
2387
Field *
520.1.22 by Brian Aker
Second pass of thd cleanup
2388
find_field_in_table(Session *session, Table *table, const char *name, uint32_t length,
482 by Brian Aker
Remove uint.
2389
                    bool allow_rowid, uint32_t *cached_field_index_ptr)
1 by brian
clean slate
2390
{
2391
  Field **field_ptr, *field;
482 by Brian Aker
Remove uint.
2392
  uint32_t cached_field_index= *cached_field_index_ptr;
1 by brian
clean slate
2393
2394
  /* We assume here that table->field < NO_CACHED_FIELD_INDEX = UINT_MAX */
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
2395
  if (cached_field_index < table->getShare()->sizeFields() &&
1 by brian
clean slate
2396
      !my_strcasecmp(system_charset_info,
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2397
                     table->getField(cached_field_index)->field_name, name))
1578.2.14 by Brian Aker
Additional pass through to remove raw field access.
2398
  {
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2399
    field_ptr= table->getFields() + cached_field_index;
1578.2.14 by Brian Aker
Additional pass through to remove raw field access.
2400
  }
1669.3.1 by Brian Aker
Remove usage of my_hash in table_share.
2401
  else if (table->getShare()->getNamedFieldSize())
1 by brian
clean slate
2402
  {
1669.3.1 by Brian Aker
Remove usage of my_hash in table_share.
2403
    field_ptr= table->getMutableShare()->getNamedField(std::string(name, length));
1 by brian
clean slate
2404
    if (field_ptr)
2405
    {
2406
      /*
1000.1.3 by Brian Aker
Renamed TABLE_SHARE to TableShare
2407
        field_ptr points to field in TableShare. Convert it to the matching
1 by brian
clean slate
2408
        field in table
2409
      */
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2410
      field_ptr= (table->getFields() + table->getShare()->positionFields(field_ptr));
1 by brian
clean slate
2411
    }
2412
  }
2413
  else
2414
  {
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2415
    if (!(field_ptr= table->getFields()))
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2416
      return((Field *)0);
1 by brian
clean slate
2417
    for (; *field_ptr; ++field_ptr)
2418
      if (!my_strcasecmp(system_charset_info, (*field_ptr)->field_name, name))
2419
        break;
2420
  }
2421
2422
  if (field_ptr && *field_ptr)
2423
  {
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2424
    *cached_field_index_ptr= field_ptr - table->getFields();
1 by brian
clean slate
2425
    field= *field_ptr;
2426
  }
2427
  else
2428
  {
2429
    if (!allow_rowid ||
2430
        my_strcasecmp(system_charset_info, name, "_rowid") ||
1574 by Brian Aker
Rollup patch for hiding tableshare.
2431
        table->getShare()->rowid_field_offset == 0)
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2432
      return((Field*) 0);
1578.2.16 by Brian Aker
Merge in change to getTable() to private the field objects.
2433
    field= table->getField(table->getShare()->rowid_field_offset-1);
1 by brian
clean slate
2434
  }
2435
520.1.22 by Brian Aker
Second pass of thd cleanup
2436
  update_field_dependencies(session, field, table);
1 by brian
clean slate
2437
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2438
  return field;
1 by brian
clean slate
2439
}
2440
2441
2442
/*
2443
  Find field in a table reference.
2444
2445
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2446
  find_field_in_table_ref()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2447
  session			   [in]  thread Cursor
1046 by Brian Aker
Merge Jay.
2448
  table_list		   [in]  table reference to search
2449
  name		   [in]  name of field
2450
  length		   [in]  field length of name
2451
  item_name              [in]  name of item if it will be created (VIEW)
2452
  db_name                [in]  optional database name that qualifies the
2453
  table_name             [in]  optional table name that qualifies the field
2454
  ref		       [in/out] if 'name' is resolved to a view field, ref
2455
  is set to point to the found view field
2456
  allow_rowid		   [in]  do allow finding of "_rowid" field?
2457
  cached_field_index_ptr [in]  cached position in field list (used to
2458
  speedup lookup for fields in prepared tables)
2459
  register_tree_change   [in]  true if ref is not stack variable and we
2460
  need register changes in item tree
2461
  actual_table           [out] the original table reference where the field
2462
  belongs - differs from 'table_list' only for
2463
  NATURAL_USING joins.
1 by brian
clean slate
2464
2465
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
2466
  Find a field in a table reference depending on the type of table
2467
  reference. There are three types of table references with respect
2468
  to the representation of their result columns:
2469
  - an array of Field_translator objects for MERGE views and some
2470
  information_schema tables,
2471
  - an array of Field objects (and possibly a name hash) for stored
2472
  tables,
2473
  - a list of Natural_join_column objects for NATURAL/USING joins.
2474
  This procedure detects the type of the table reference 'table_list'
2475
  and calls the corresponding search routine.
1 by brian
clean slate
2476
2477
  RETURN
1046 by Brian Aker
Merge Jay.
2478
  0			field is not found
2479
  view_ref_found	found value in VIEW (real result is in *ref)
2480
#			pointer to field
1 by brian
clean slate
2481
*/
2482
2483
Field *
520.1.22 by Brian Aker
Second pass of thd cleanup
2484
find_field_in_table_ref(Session *session, TableList *table_list,
482 by Brian Aker
Remove uint.
2485
                        const char *name, uint32_t length,
1 by brian
clean slate
2486
                        const char *item_name, const char *db_name,
2487
                        const char *table_name, Item **ref,
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2488
                        bool allow_rowid,
482 by Brian Aker
Remove uint.
2489
                        uint32_t *cached_field_index_ptr,
327.2.4 by Brian Aker
Refactoring table.h
2490
                        bool register_tree_change, TableList **actual_table)
1 by brian
clean slate
2491
{
327.2.5 by Brian Aker
Refactoring show command
2492
  Field *fld= NULL;
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2493
2494
  assert(table_list->alias);
2495
  assert(name);
2496
  assert(item_name);
1 by brian
clean slate
2497
2498
  /*
2499
    Check that the table and database that qualify the current field name
2500
    are the same as the table reference we are going to search for the field.
2501
2502
    Exclude from the test below nested joins because the columns in a
2503
    nested join generally originate from different tables. Nested joins
2504
    also have no table name, except when a nested join is a merge view
2505
    or an information schema table.
2506
2507
    We include explicitly table references with a 'field_translation' table,
2508
    because if there are views over natural joins we don't want to search
2509
    inside the view, but we want to search directly in the view columns
2510
    which are represented as a 'field_translation'.
2511
1532.1.2 by Brian Aker
Remove need for memset on Table object.
2512
    TODO-> Ensure that table_name, db_name and tables->db always points to something !
1 by brian
clean slate
2513
  */
2514
  if (/* Exclude nested joins. */
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
2515
      (!table_list->getNestedJoin()) &&
1046 by Brian Aker
Merge Jay.
2516
      /* Include merge views and information schema tables. */
1 by brian
clean slate
2517
      /*
2518
        Test if the field qualifiers match the table reference we plan
2519
        to search.
2520
      */
2521
      table_name && table_name[0] &&
2522
      (my_strcasecmp(table_alias_charset, table_list->alias, table_name) ||
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
2523
       (db_name && db_name[0] && table_list->getSchemaName() && table_list->getSchemaName()[0] &&
2524
        strcmp(db_name, table_list->getSchemaName()))))
1046.1.10 by Brian Aker
Formatting around return (style)
2525
    return 0;
1 by brian
clean slate
2526
2527
  *actual_table= NULL;
2528
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
2529
  if (!table_list->getNestedJoin())
1 by brian
clean slate
2530
  {
2531
    /* 'table_list' is a stored table. */
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2532
    assert(table_list->table);
520.1.22 by Brian Aker
Second pass of thd cleanup
2533
    if ((fld= find_field_in_table(session, table_list->table, name, length,
1 by brian
clean slate
2534
                                  allow_rowid,
2535
                                  cached_field_index_ptr)))
2536
      *actual_table= table_list;
2537
  }
2538
  else
2539
  {
2540
    /*
2541
      'table_list' is a NATURAL/USING join, or an operand of such join that
2542
      is a nested join itself.
2543
2544
      If the field name we search for is qualified, then search for the field
2545
      in the table references used by NATURAL/USING the join.
2546
    */
2547
    if (table_name && table_name[0])
2548
    {
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
2549
      List_iterator<TableList> it(table_list->getNestedJoin()->join_list);
327.2.4 by Brian Aker
Refactoring table.h
2550
      TableList *table;
1 by brian
clean slate
2551
      while ((table= it++))
2552
      {
520.1.22 by Brian Aker
Second pass of thd cleanup
2553
        if ((fld= find_field_in_table_ref(session, table, name, length, item_name,
1 by brian
clean slate
2554
                                          db_name, table_name, ref,
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2555
                                          allow_rowid,
1 by brian
clean slate
2556
                                          cached_field_index_ptr,
2557
                                          register_tree_change, actual_table)))
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2558
          return fld;
1 by brian
clean slate
2559
      }
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2560
      return NULL;
1 by brian
clean slate
2561
    }
2562
    /*
2563
      Non-qualified field, search directly in the result columns of the
2564
      natural join. The condition of the outer IF is true for the top-most
2565
      natural join, thus if the field is not qualified, we will search
2566
      directly the top-most NATURAL/USING join.
2567
    */
520.1.22 by Brian Aker
Second pass of thd cleanup
2568
    fld= find_field_in_natural_join(session, table_list, name, length, ref,
1 by brian
clean slate
2569
                                    register_tree_change, actual_table);
2570
  }
2571
2572
  if (fld)
2573
  {
1046 by Brian Aker
Merge Jay.
2574
    if (session->mark_used_columns != MARK_COLUMNS_NONE)
2575
    {
2576
      /*
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
2577
        Get rw_set correct for this field so that the Cursor
1046 by Brian Aker
Merge Jay.
2578
        knows that this field is involved in the query and gets
2579
        retrieved/updated
2580
      */
2581
      Field *field_to_set= NULL;
2582
      if (fld == view_ref_found)
1 by brian
clean slate
2583
      {
1046 by Brian Aker
Merge Jay.
2584
        Item *it= (*ref)->real_item();
2585
        if (it->type() == Item::FIELD_ITEM)
2586
          field_to_set= ((Item_field*)it)->field;
1 by brian
clean slate
2587
        else
2588
        {
520.1.22 by Brian Aker
Second pass of thd cleanup
2589
          if (session->mark_used_columns == MARK_COLUMNS_READ)
1046 by Brian Aker
Merge Jay.
2590
            it->walk(&Item::register_field_in_read_map, 1, (unsigned char *) 0);
1 by brian
clean slate
2591
        }
2592
      }
1046 by Brian Aker
Merge Jay.
2593
      else
2594
        field_to_set= fld;
2595
      if (field_to_set)
2596
      {
1660.1.3 by Brian Aker
Encapsulate Table in field
2597
        Table *table= field_to_set->getTable();
1046 by Brian Aker
Merge Jay.
2598
        if (session->mark_used_columns == MARK_COLUMNS_READ)
2599
          table->setReadSet(field_to_set->field_index);
2600
        else
2601
          table->setWriteSet(field_to_set->field_index);
2602
      }
2603
    }
1 by brian
clean slate
2604
  }
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
2605
  return(fld);
1 by brian
clean slate
2606
}
2607
2608
2609
/*
2610
  Find field in table list.
2611
2612
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2613
  find_field_in_tables()
2614
  session			  pointer to current thread structure
2615
  item		  field item that should be found
2616
  first_table           list of tables to be searched for item
2617
  last_table            end of the list of tables to search for item. If NULL
2618
  then search to the end of the list 'first_table'.
2619
  ref			  if 'item' is resolved to a view field, ref is set to
2620
  point to the found view field
2621
  report_error	  Degree of error reporting:
2622
  - IGNORE_ERRORS then do not report any error
2623
  - IGNORE_EXCEPT_NON_UNIQUE report only non-unique
2624
  fields, suppress all other errors
2625
  - REPORT_EXCEPT_NON_UNIQUE report all other errors
2626
  except when non-unique fields were found
2627
  - REPORT_ALL_ERRORS
2628
  register_tree_change  true if ref is not a stack variable and we
2629
  to need register changes in item tree
1 by brian
clean slate
2630
2631
  RETURN VALUES
1046 by Brian Aker
Merge Jay.
2632
  0			If error: the found field is not unique, or there are
2633
  no sufficient access priviliges for the found field,
2634
  or the field is qualified with non-existing table.
2635
  not_found_field	The function was called with report_error ==
2636
  (IGNORE_ERRORS || IGNORE_EXCEPT_NON_UNIQUE) and a
2637
  field was not found.
2638
  view_ref_found	View field is found, item passed through ref parameter
2639
  found field         If a item was resolved to some field
1 by brian
clean slate
2640
*/
2641
2642
Field *
520.1.22 by Brian Aker
Second pass of thd cleanup
2643
find_field_in_tables(Session *session, Item_ident *item,
327.2.4 by Brian Aker
Refactoring table.h
2644
                     TableList *first_table, TableList *last_table,
1046 by Brian Aker
Merge Jay.
2645
                     Item **ref, find_item_error_report_type report_error,
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2646
                     bool register_tree_change)
1 by brian
clean slate
2647
{
2648
  Field *found=0;
2649
  const char *db= item->db_name;
2650
  const char *table_name= item->table_name;
2651
  const char *name= item->field_name;
895 by Brian Aker
Completion (?) of uint conversion.
2652
  uint32_t length=(uint32_t) strlen(name);
1 by brian
clean slate
2653
  char name_buff[NAME_LEN+1];
327.2.4 by Brian Aker
Refactoring table.h
2654
  TableList *cur_table= first_table;
2655
  TableList *actual_table;
1 by brian
clean slate
2656
  bool allow_rowid;
2657
2658
  if (!table_name || !table_name[0])
2659
  {
2660
    table_name= 0;                              // For easier test
2661
    db= 0;
2662
  }
2663
2664
  allow_rowid= table_name || (cur_table && !cur_table->next_local);
2665
2666
  if (item->cached_table)
2667
  {
2668
    /*
2669
      This shortcut is used by prepared statements. We assume that
327.2.4 by Brian Aker
Refactoring table.h
2670
      TableList *first_table is not changed during query execution (which
1 by brian
clean slate
2671
      is true for all queries except RENAME but luckily RENAME doesn't
2672
      use fields...) so we can rely on reusing pointer to its member.
2673
      With this optimization we also miss case when addition of one more
2674
      field makes some prepared query ambiguous and so erroneous, but we
2675
      accept this trade off.
2676
    */
327.2.4 by Brian Aker
Refactoring table.h
2677
    TableList *table_ref= item->cached_table;
1 by brian
clean slate
2678
    /*
2679
      The condition (table_ref->view == NULL) ensures that we will call
2680
      find_field_in_table even in the case of information schema tables
2681
      when table_ref->field_translation != NULL.
1046 by Brian Aker
Merge Jay.
2682
    */
1 by brian
clean slate
2683
    if (table_ref->table)
520.1.22 by Brian Aker
Second pass of thd cleanup
2684
      found= find_field_in_table(session, table_ref->table, name, length,
55 by brian
Update for using real bool types.
2685
                                 true, &(item->cached_field_index));
1 by brian
clean slate
2686
    else
520.1.22 by Brian Aker
Second pass of thd cleanup
2687
      found= find_field_in_table_ref(session, table_ref, name, length, item->name,
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
2688
                                     NULL, NULL, ref,
55 by brian
Update for using real bool types.
2689
                                     true, &(item->cached_field_index),
1 by brian
clean slate
2690
                                     register_tree_change,
2691
                                     &actual_table);
2692
    if (found)
2693
    {
2694
      /*
2695
        Only views fields should be marked as dependent, not an underlying
2696
        fields.
2697
      */
2698
      {
846 by Brian Aker
Removing on typedeffed class.
2699
        Select_Lex *current_sel= session->lex->current_select;
2700
        Select_Lex *last_select= table_ref->select_lex;
1 by brian
clean slate
2701
        /*
2702
          If the field was an outer referencee, mark all selects using this
2703
          sub query as dependent on the outer query
2704
        */
2705
        if (current_sel != last_select)
520.1.22 by Brian Aker
Second pass of thd cleanup
2706
          mark_select_range_as_dependent(session, last_select, current_sel,
1 by brian
clean slate
2707
                                         found, *ref, item);
2708
      }
2709
      return found;
2710
    }
2711
  }
2712
1039.1.5 by Brian Aker
Remove lower case filename bits (aka we just lock into the most compatible
2713
  if (db)
1 by brian
clean slate
2714
  {
2715
    /*
2716
      convert database to lower case for comparison.
2717
      We can't do this in Item_field as this would change the
2718
      'name' of the item which may be used in the select list
2719
    */
629.5.3 by Toru Maesaka
Third pass of replacing MySQL's strmake() with libc calls
2720
    strncpy(name_buff, db, sizeof(name_buff)-1);
1 by brian
clean slate
2721
    my_casedn_str(files_charset_info, name_buff);
2722
    db= name_buff;
2723
  }
2724
2725
  if (last_table)
2726
    last_table= last_table->next_name_resolution_table;
2727
2728
  for (; cur_table != last_table ;
2729
       cur_table= cur_table->next_name_resolution_table)
2730
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
2731
    Field *cur_field= find_field_in_table_ref(session, cur_table, name, length,
1 by brian
clean slate
2732
                                              item->name, db, table_name, ref,
2733
                                              allow_rowid,
2734
                                              &(item->cached_field_index),
2735
                                              register_tree_change,
2736
                                              &actual_table);
2737
    if (cur_field)
2738
    {
2739
      /*
2740
        Store the original table of the field, which may be different from
2741
        cur_table in the case of NATURAL/USING join.
2742
      */
1019.1.2 by Brian Aker
Removed dead code from table_list.
2743
      item->cached_table= found ?  0 : actual_table;
1 by brian
clean slate
2744
520.1.22 by Brian Aker
Second pass of thd cleanup
2745
      assert(session->where);
1 by brian
clean slate
2746
      /*
2747
        If we found a fully qualified field we return it directly as it can't
2748
        have duplicates.
1046 by Brian Aker
Merge Jay.
2749
      */
1 by brian
clean slate
2750
      if (db)
2751
        return cur_field;
2752
2753
      if (found)
2754
      {
2755
        if (report_error == REPORT_ALL_ERRORS ||
2756
            report_error == IGNORE_EXCEPT_NON_UNIQUE)
2757
          my_error(ER_NON_UNIQ_ERROR, MYF(0),
520.1.22 by Brian Aker
Second pass of thd cleanup
2758
                   table_name ? item->full_name() : name, session->where);
1 by brian
clean slate
2759
        return (Field*) 0;
2760
      }
2761
      found= cur_field;
2762
    }
2763
  }
2764
2765
  if (found)
2766
    return found;
2767
2768
  /*
2769
    If the field was qualified and there were no tables to search, issue
2770
    an error that an unknown table was given. The situation is detected
2771
    as follows: if there were no tables we wouldn't go through the loop
2772
    and cur_table wouldn't be updated by the loop increment part, so it
2773
    will be equal to the first table.
2774
  */
2775
  if (table_name && (cur_table == first_table) &&
2776
      (report_error == REPORT_ALL_ERRORS ||
2777
       report_error == REPORT_EXCEPT_NON_UNIQUE))
2778
  {
2779
    char buff[NAME_LEN*2+1];
2780
    if (db && db[0])
2781
    {
534 by Monty Taylor
Removed stxnmov. Also deleted strstr which had already been removed.
2782
      /* We're in an error condition, two extra strlen's aren't going
2783
       * to kill us */
2784
      assert(strlen(db) <= NAME_LEN);
2785
      assert(strlen(table_name) <= NAME_LEN);
2786
      strcpy(buff, db);
2787
      strcat(buff,".");
2788
      strcat(buff, table_name);
1 by brian
clean slate
2789
      table_name=buff;
2790
    }
520.1.22 by Brian Aker
Second pass of thd cleanup
2791
    my_error(ER_UNKNOWN_TABLE, MYF(0), table_name, session->where);
1 by brian
clean slate
2792
  }
2793
  else
2794
  {
2795
    if (report_error == REPORT_ALL_ERRORS ||
2796
        report_error == REPORT_EXCEPT_NON_UNIQUE)
520.1.22 by Brian Aker
Second pass of thd cleanup
2797
      my_error(ER_BAD_FIELD_ERROR, MYF(0), item->full_name(), session->where);
1 by brian
clean slate
2798
    else
2799
      found= not_found_field;
2800
  }
2801
  return found;
2802
}
2803
2804
2805
/*
2806
  Find Item in list of items (find_field_in_tables analog)
2807
2808
  TODO
1046 by Brian Aker
Merge Jay.
2809
  is it better return only counter?
1 by brian
clean slate
2810
2811
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
2812
  find_item_in_list()
2813
  find			Item to find
2814
  items			List of items
2815
  counter			To return number of found item
2816
  report_error
2817
  REPORT_ALL_ERRORS		report errors, return 0 if error
2818
  REPORT_EXCEPT_NOT_FOUND	Do not report 'not found' error and
2819
  return not_found_item, report other errors,
2820
  return 0
2821
  IGNORE_ERRORS		Do not report errors, return 0 if error
2822
  resolution                  Set to the resolution type if the item is found
2823
  (it says whether the item is resolved
2824
  against an alias name,
2825
  or as a field name without alias,
2826
  or as a field hidden by alias,
2827
  or ignoring alias)
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2828
1 by brian
clean slate
2829
  RETURN VALUES
1046 by Brian Aker
Merge Jay.
2830
  0			Item is not found or item is not unique,
2831
  error message is reported
2832
  not_found_item	Function was called with
2833
  report_error == REPORT_EXCEPT_NOT_FOUND and
2834
  item was not found. No error message was reported
2835
  found field
1 by brian
clean slate
2836
*/
2837
2838
/* Special Item pointer to serve as a return value from find_item_in_list(). */
2839
Item **not_found_item= (Item**) 0x1;
2840
2841
2842
Item **
1578.6.3 by Brian Aker
More current_session removal.
2843
find_item_in_list(Session *session,
2844
                  Item *find, List<Item> &items, uint32_t *counter,
1 by brian
clean slate
2845
                  find_item_error_report_type report_error,
2846
                  enum_resolution_type *resolution)
2847
{
2848
  List_iterator<Item> li(items);
2849
  Item **found=0, **found_unaliased= 0, *item;
2850
  const char *db_name=0;
2851
  const char *field_name=0;
2852
  const char *table_name=0;
2853
  bool found_unaliased_non_uniq= 0;
2854
  /*
2855
    true if the item that we search for is a valid name reference
2856
    (and not an item that happens to have a name).
2857
  */
2858
  bool is_ref_by_name= 0;
482 by Brian Aker
Remove uint.
2859
  uint32_t unaliased_counter= 0;
1 by brian
clean slate
2860
2861
  *resolution= NOT_RESOLVED;
2862
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2863
  is_ref_by_name= (find->type() == Item::FIELD_ITEM  ||
1 by brian
clean slate
2864
                   find->type() == Item::REF_ITEM);
2865
  if (is_ref_by_name)
2866
  {
2867
    field_name= ((Item_ident*) find)->field_name;
2868
    table_name= ((Item_ident*) find)->table_name;
2869
    db_name=    ((Item_ident*) find)->db_name;
2870
  }
2871
482 by Brian Aker
Remove uint.
2872
  for (uint32_t i= 0; (item=li++); i++)
1 by brian
clean slate
2873
  {
2874
    if (field_name && item->real_item()->type() == Item::FIELD_ITEM)
2875
    {
2876
      Item_ident *item_field= (Item_ident*) item;
2877
2878
      /*
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
2879
        In case of group_concat() with ORDER BY condition in the QUERY
2880
        item_field can be field of temporary table without item name
2881
        (if this field created from expression argument of group_concat()),
2882
        => we have to check presence of name before compare
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2883
      */
1 by brian
clean slate
2884
      if (!item_field->name)
2885
        continue;
2886
2887
      if (table_name)
2888
      {
2889
        /*
2890
          If table name is specified we should find field 'field_name' in
2891
          table 'table_name'. According to SQL-standard we should ignore
2892
          aliases in this case.
2893
2894
          Since we should NOT prefer fields from the select list over
2895
          other fields from the tables participating in this select in
2896
          case of ambiguity we have to do extra check outside this function.
2897
2898
          We use strcmp for table names and database names as these may be
2899
          case sensitive. In cases where they are not case sensitive, they
2900
          are always in lower case.
2901
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
2902
          item_field->field_name and item_field->table_name can be 0x0 if
2903
          item is not fix_field()'ed yet.
1 by brian
clean slate
2904
        */
2905
        if (item_field->field_name && item_field->table_name &&
1046 by Brian Aker
Merge Jay.
2906
            !my_strcasecmp(system_charset_info, item_field->field_name,
1 by brian
clean slate
2907
                           field_name) &&
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2908
            !my_strcasecmp(table_alias_charset, item_field->table_name,
1 by brian
clean slate
2909
                           table_name) &&
2910
            (!db_name || (item_field->db_name &&
2911
                          !strcmp(item_field->db_name, db_name))))
2912
        {
2913
          if (found_unaliased)
2914
          {
2915
            if ((*found_unaliased)->eq(item, 0))
2916
              continue;
2917
            /*
2918
              Two matching fields in select list.
2919
              We already can bail out because we are searching through
2920
              unaliased names only and will have duplicate error anyway.
2921
            */
2922
            if (report_error != IGNORE_ERRORS)
2923
              my_error(ER_NON_UNIQ_ERROR, MYF(0),
1578.6.3 by Brian Aker
More current_session removal.
2924
                       find->full_name(), session->where);
1 by brian
clean slate
2925
            return (Item**) 0;
2926
          }
2927
          found_unaliased= li.ref();
2928
          unaliased_counter= i;
2929
          *resolution= RESOLVED_IGNORING_ALIAS;
2930
          if (db_name)
2931
            break;                              // Perfect match
2932
        }
2933
      }
2934
      else
2935
      {
2936
        int fname_cmp= my_strcasecmp(system_charset_info,
2937
                                     item_field->field_name,
2938
                                     field_name);
2939
        if (!my_strcasecmp(system_charset_info,
2940
                           item_field->name,field_name))
2941
        {
2942
          /*
2943
            If table name was not given we should scan through aliases
2944
            and non-aliased fields first. We are also checking unaliased
2945
            name of the field in then next  else-if, to be able to find
2946
            instantly field (hidden by alias) if no suitable alias or
2947
            non-aliased field was found.
2948
          */
2949
          if (found)
2950
          {
2951
            if ((*found)->eq(item, 0))
2952
              continue;                           // Same field twice
2953
            if (report_error != IGNORE_ERRORS)
2954
              my_error(ER_NON_UNIQ_ERROR, MYF(0),
1578.6.3 by Brian Aker
More current_session removal.
2955
                       find->full_name(), session->where);
1 by brian
clean slate
2956
            return (Item**) 0;
2957
          }
2958
          found= li.ref();
2959
          *counter= i;
2960
          *resolution= fname_cmp ? RESOLVED_AGAINST_ALIAS:
1046 by Brian Aker
Merge Jay.
2961
            RESOLVED_WITH_NO_ALIAS;
1 by brian
clean slate
2962
        }
2963
        else if (!fname_cmp)
2964
        {
2965
          /*
2966
            We will use non-aliased field or react on such ambiguities only if
2967
            we won't be able to find aliased field.
2968
            Again if we have ambiguity with field outside of select list
2969
            we should prefer fields from select list.
2970
          */
2971
          if (found_unaliased)
2972
          {
2973
            if ((*found_unaliased)->eq(item, 0))
2974
              continue;                           // Same field twice
2975
            found_unaliased_non_uniq= 1;
2976
          }
2977
          found_unaliased= li.ref();
2978
          unaliased_counter= i;
2979
        }
2980
      }
2981
    }
2982
    else if (!table_name)
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2983
    {
1 by brian
clean slate
2984
      if (is_ref_by_name && find->name && item->name &&
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
2985
          !my_strcasecmp(system_charset_info,item->name,find->name))
1 by brian
clean slate
2986
      {
2987
        found= li.ref();
2988
        *counter= i;
2989
        *resolution= RESOLVED_AGAINST_ALIAS;
2990
        break;
2991
      }
2992
      else if (find->eq(item,0))
2993
      {
2994
        found= li.ref();
2995
        *counter= i;
2996
        *resolution= RESOLVED_IGNORING_ALIAS;
2997
        break;
2998
      }
2999
    }
3000
  }
3001
  if (!found)
3002
  {
3003
    if (found_unaliased_non_uniq)
3004
    {
3005
      if (report_error != IGNORE_ERRORS)
3006
        my_error(ER_NON_UNIQ_ERROR, MYF(0),
1578.6.3 by Brian Aker
More current_session removal.
3007
                 find->full_name(), session->where);
1 by brian
clean slate
3008
      return (Item **) 0;
3009
    }
3010
    if (found_unaliased)
3011
    {
3012
      found= found_unaliased;
3013
      *counter= unaliased_counter;
3014
      *resolution= RESOLVED_BEHIND_ALIAS;
3015
    }
3016
  }
3017
  if (found)
3018
    return found;
3019
  if (report_error != REPORT_EXCEPT_NOT_FOUND)
3020
  {
3021
    if (report_error == REPORT_ALL_ERRORS)
3022
      my_error(ER_BAD_FIELD_ERROR, MYF(0),
1578.6.3 by Brian Aker
More current_session removal.
3023
               find->full_name(), session->where);
1 by brian
clean slate
3024
    return (Item **) 0;
3025
  }
3026
  else
3027
    return (Item **) not_found_item;
3028
}
3029
3030
3031
/*
3032
  Test if a string is a member of a list of strings.
3033
3034
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3035
  test_if_string_in_list()
3036
  find      the string to look for
3037
  str_list  a list of strings to be searched
1 by brian
clean slate
3038
3039
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3040
  Sequentially search a list of strings for a string, and test whether
3041
  the list contains the same string.
1 by brian
clean slate
3042
3043
  RETURN
1046 by Brian Aker
Merge Jay.
3044
  true  if find is in str_list
3045
  false otherwise
1 by brian
clean slate
3046
*/
3047
3048
static bool
3049
test_if_string_in_list(const char *find, List<String> *str_list)
3050
{
3051
  List_iterator<String> str_list_it(*str_list);
3052
  String *curr_str;
3053
  size_t find_length= strlen(find);
3054
  while ((curr_str= str_list_it++))
3055
  {
3056
    if (find_length != curr_str->length())
3057
      continue;
3058
    if (!my_strcasecmp(system_charset_info, find, curr_str->ptr()))
55 by brian
Update for using real bool types.
3059
      return true;
1 by brian
clean slate
3060
  }
55 by brian
Update for using real bool types.
3061
  return false;
1 by brian
clean slate
3062
}
3063
3064
3065
/*
3066
  Create a new name resolution context for an item so that it is
3067
  being resolved in a specific table reference.
3068
3069
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3070
  set_new_item_local_context()
3071
  session        pointer to current thread
3072
  item       item for which new context is created and set
3073
  table_ref  table ref where an item showld be resolved
1 by brian
clean slate
3074
3075
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3076
  Create a new name resolution context for an item, so that the item
3077
  is resolved only the supplied 'table_ref'.
1 by brian
clean slate
3078
3079
  RETURN
1046 by Brian Aker
Merge Jay.
3080
  false  if all OK
3081
  true   otherwise
1 by brian
clean slate
3082
*/
3083
3084
static bool
520.1.22 by Brian Aker
Second pass of thd cleanup
3085
set_new_item_local_context(Session *session, Item_ident *item, TableList *table_ref)
1 by brian
clean slate
3086
{
3087
  Name_resolution_context *context;
520.1.22 by Brian Aker
Second pass of thd cleanup
3088
  if (!(context= new (session->mem_root) Name_resolution_context))
55 by brian
Update for using real bool types.
3089
    return true;
1 by brian
clean slate
3090
  context->init();
3091
  context->first_name_resolution_table=
3092
    context->last_name_resolution_table= table_ref;
3093
  item->context= context;
55 by brian
Update for using real bool types.
3094
  return false;
1 by brian
clean slate
3095
}
3096
3097
3098
/*
3099
  Find and mark the common columns of two table references.
3100
3101
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3102
  mark_common_columns()
3103
  session                [in] current thread
3104
  table_ref_1        [in] the first (left) join operand
3105
  table_ref_2        [in] the second (right) join operand
3106
  using_fields       [in] if the join is JOIN...USING - the join columns,
3107
  if NATURAL join, then NULL
3108
  found_using_fields [out] number of fields from the USING clause that were
3109
  found among the common fields
1 by brian
clean slate
3110
3111
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3112
  The procedure finds the common columns of two relations (either
3113
  tables or intermediate join results), and adds an equi-join condition
3114
  to the ON clause of 'table_ref_2' for each pair of matching columns.
3115
  If some of table_ref_XXX represents a base table or view, then we
3116
  create new 'Natural_join_column' instances for each column
3117
  reference and store them in the 'join_columns' of the table
3118
  reference.
1 by brian
clean slate
3119
3120
  IMPLEMENTATION
1046 by Brian Aker
Merge Jay.
3121
  The procedure assumes that store_natural_using_join_columns() was
3122
  called for the previous level of NATURAL/USING joins.
1 by brian
clean slate
3123
3124
  RETURN
1046 by Brian Aker
Merge Jay.
3125
  true   error when some common column is non-unique, or out of memory
3126
  false  OK
1 by brian
clean slate
3127
*/
3128
3129
static bool
520.1.22 by Brian Aker
Second pass of thd cleanup
3130
mark_common_columns(Session *session, TableList *table_ref_1, TableList *table_ref_2,
482 by Brian Aker
Remove uint.
3131
                    List<String> *using_fields, uint32_t *found_using_fields)
1 by brian
clean slate
3132
{
3133
  Field_iterator_table_ref it_1, it_2;
3134
  Natural_join_column *nj_col_1, *nj_col_2;
55 by brian
Update for using real bool types.
3135
  bool result= true;
3136
  bool first_outer_loop= true;
1 by brian
clean slate
3137
  /*
3138
    Leaf table references to which new natural join columns are added
3139
    if the leaves are != NULL.
3140
  */
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3141
  TableList *leaf_1= (table_ref_1->getNestedJoin() &&
3142
                      ! table_ref_1->is_natural_join) ?
1046 by Brian Aker
Merge Jay.
3143
    NULL : table_ref_1;
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3144
  TableList *leaf_2= (table_ref_2->getNestedJoin() &&
3145
                      ! table_ref_2->is_natural_join) ?
1046 by Brian Aker
Merge Jay.
3146
    NULL : table_ref_2;
1 by brian
clean slate
3147
3148
  *found_using_fields= 0;
3149
3150
  for (it_1.set(table_ref_1); !it_1.end_of_fields(); it_1.next())
3151
  {
55 by brian
Update for using real bool types.
3152
    bool found= false;
1 by brian
clean slate
3153
    const char *field_name_1;
3154
    /* true if field_name_1 is a member of using_fields */
3155
    bool is_using_column_1;
3156
    if (!(nj_col_1= it_1.get_or_create_column_ref(leaf_1)))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3157
      return(result);
1 by brian
clean slate
3158
    field_name_1= nj_col_1->name();
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
3159
    is_using_column_1= using_fields &&
1 by brian
clean slate
3160
      test_if_string_in_list(field_name_1, using_fields);
3161
3162
    /*
3163
      Find a field with the same name in table_ref_2.
3164
3165
      Note that for the second loop, it_2.set() will iterate over
3166
      table_ref_2->join_columns and not generate any new elements or
3167
      lists.
3168
    */
3169
    nj_col_2= NULL;
3170
    for (it_2.set(table_ref_2); !it_2.end_of_fields(); it_2.next())
3171
    {
3172
      Natural_join_column *cur_nj_col_2;
3173
      const char *cur_field_name_2;
3174
      if (!(cur_nj_col_2= it_2.get_or_create_column_ref(leaf_2)))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3175
        return(result);
1 by brian
clean slate
3176
      cur_field_name_2= cur_nj_col_2->name();
3177
3178
      /*
3179
        Compare the two columns and check for duplicate common fields.
3180
        A common field is duplicate either if it was already found in
55 by brian
Update for using real bool types.
3181
        table_ref_2 (then found == true), or if a field in table_ref_2
1 by brian
clean slate
3182
        was already matched by some previous field in table_ref_1
55 by brian
Update for using real bool types.
3183
        (then cur_nj_col_2->is_common == true).
1 by brian
clean slate
3184
        Note that it is too early to check the columns outside of the
3185
        USING list for ambiguity because they are not actually "referenced"
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
3186
        here. These columns must be checked only on unqualified reference
1 by brian
clean slate
3187
        by name (e.g. in SELECT list).
3188
      */
3189
      if (!my_strcasecmp(system_charset_info, field_name_1, cur_field_name_2))
3190
      {
3191
        if (cur_nj_col_2->is_common ||
3192
            (found && (!using_fields || is_using_column_1)))
3193
        {
520.1.22 by Brian Aker
Second pass of thd cleanup
3194
          my_error(ER_NON_UNIQ_ERROR, MYF(0), field_name_1, session->where);
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3195
          return(result);
1 by brian
clean slate
3196
        }
3197
        nj_col_2= cur_nj_col_2;
55 by brian
Update for using real bool types.
3198
        found= true;
1 by brian
clean slate
3199
      }
3200
    }
3201
    if (first_outer_loop && leaf_2)
3202
    {
3203
      /*
3204
        Make sure that the next inner loop "knows" that all columns
3205
        are materialized already.
3206
      */
55 by brian
Update for using real bool types.
3207
      leaf_2->is_join_columns_complete= true;
3208
      first_outer_loop= false;
1 by brian
clean slate
3209
    }
3210
    if (!found)
3211
      continue;                                 // No matching field
3212
3213
    /*
3214
      field_1 and field_2 have the same names. Check if they are in the USING
3215
      clause (if present), mark them as common fields, and add a new
3216
      equi-join condition to the ON clause.
3217
    */
3218
    if (nj_col_2 && (!using_fields ||is_using_column_1))
3219
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
3220
      Item *item_1=   nj_col_1->create_item(session);
3221
      Item *item_2=   nj_col_2->create_item(session);
1 by brian
clean slate
3222
      Field *field_1= nj_col_1->field();
3223
      Field *field_2= nj_col_2->field();
3224
      Item_ident *item_ident_1, *item_ident_2;
3225
      Item_func_eq *eq_cond;
3226
3227
      if (!item_1 || !item_2)
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3228
        return(result); // out of memory
1 by brian
clean slate
3229
3230
      /*
3231
        In the case of no_wrap_view_item == 0, the created items must be
3232
        of sub-classes of Item_ident.
3233
      */
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3234
      assert(item_1->type() == Item::FIELD_ITEM ||
1046 by Brian Aker
Merge Jay.
3235
             item_1->type() == Item::REF_ITEM);
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3236
      assert(item_2->type() == Item::FIELD_ITEM ||
1046 by Brian Aker
Merge Jay.
3237
             item_2->type() == Item::REF_ITEM);
1 by brian
clean slate
3238
3239
      /*
3240
        We need to cast item_1,2 to Item_ident, because we need to hook name
3241
        resolution contexts specific to each item.
3242
      */
3243
      item_ident_1= (Item_ident*) item_1;
3244
      item_ident_2= (Item_ident*) item_2;
3245
      /*
3246
        Create and hook special name resolution contexts to each item in the
3247
        new join condition . We need this to both speed-up subsequent name
3248
        resolution of these items, and to enable proper name resolution of
3249
        the items during the execute phase of PS.
3250
      */
520.1.22 by Brian Aker
Second pass of thd cleanup
3251
      if (set_new_item_local_context(session, item_ident_1, nj_col_1->table_ref) ||
3252
          set_new_item_local_context(session, item_ident_2, nj_col_2->table_ref))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3253
        return(result);
1 by brian
clean slate
3254
3255
      if (!(eq_cond= new Item_func_eq(item_ident_1, item_ident_2)))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3256
        return(result);                               /* Out of memory. */
1 by brian
clean slate
3257
3258
      /*
3259
        Add the new equi-join condition to the ON clause. Notice that
3260
        fix_fields() is applied to all ON conditions in setup_conds()
3261
        so we don't do it here.
1046 by Brian Aker
Merge Jay.
3262
      */
1 by brian
clean slate
3263
      add_join_on((table_ref_1->outer_join & JOIN_TYPE_RIGHT ?
3264
                   table_ref_1 : table_ref_2),
3265
                  eq_cond);
3266
55 by brian
Update for using real bool types.
3267
      nj_col_1->is_common= nj_col_2->is_common= true;
1 by brian
clean slate
3268
3269
      if (field_1)
3270
      {
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
3271
        Table *table_1= nj_col_1->table_ref->table;
1 by brian
clean slate
3272
        /* Mark field_1 used for table cache. */
1003.1.12 by Brian Aker
Begin of abstract out the bitmap from direct reference.
3273
        table_1->setReadSet(field_1->field_index);
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
3274
        table_1->covering_keys&= field_1->part_of_key;
3275
        table_1->merge_keys|= field_1->part_of_key;
1 by brian
clean slate
3276
      }
3277
      if (field_2)
3278
      {
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
3279
        Table *table_2= nj_col_2->table_ref->table;
1 by brian
clean slate
3280
        /* Mark field_2 used for table cache. */
1003.1.12 by Brian Aker
Begin of abstract out the bitmap from direct reference.
3281
        table_2->setReadSet(field_2->field_index);
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
3282
        table_2->covering_keys&= field_2->part_of_key;
3283
        table_2->merge_keys|= field_2->part_of_key;
1 by brian
clean slate
3284
      }
3285
3286
      if (using_fields != NULL)
3287
        ++(*found_using_fields);
3288
    }
3289
  }
3290
  if (leaf_1)
55 by brian
Update for using real bool types.
3291
    leaf_1->is_join_columns_complete= true;
1 by brian
clean slate
3292
3293
  /*
3294
    Everything is OK.
3295
    Notice that at this point there may be some column names in the USING
3296
    clause that are not among the common columns. This is an SQL error and
3297
    we check for this error in store_natural_using_join_columns() when
3298
    (found_using_fields < length(join_using_fields)).
3299
  */
55 by brian
Update for using real bool types.
3300
  result= false;
1 by brian
clean slate
3301
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3302
  return(result);
1 by brian
clean slate
3303
}
3304
3305
3306
3307
/*
3308
  Materialize and store the row type of NATURAL/USING join.
3309
3310
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3311
  store_natural_using_join_columns()
3312
  session                current thread
3313
  natural_using_join the table reference of the NATURAL/USING join
3314
  table_ref_1        the first (left) operand (of a NATURAL/USING join).
3315
  table_ref_2        the second (right) operand (of a NATURAL/USING join).
3316
  using_fields       if the join is JOIN...USING - the join columns,
3317
  if NATURAL join, then NULL
3318
  found_using_fields number of fields from the USING clause that were
3319
  found among the common fields
1 by brian
clean slate
3320
3321
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3322
  Iterate over the columns of both join operands and sort and store
3323
  all columns into the 'join_columns' list of natural_using_join
3324
  where the list is formed by three parts:
3325
part1: The coalesced columns of table_ref_1 and table_ref_2,
3326
sorted according to the column order of the first table.
3327
part2: The other columns of the first table, in the order in
3328
which they were defined in CREATE TABLE.
3329
part3: The other columns of the second table, in the order in
3330
which they were defined in CREATE TABLE.
3331
Time complexity - O(N1+N2), where Ni = length(table_ref_i).
3332
3333
IMPLEMENTATION
3334
The procedure assumes that mark_common_columns() has been called
3335
for the join that is being processed.
3336
3337
RETURN
3338
true    error: Some common column is ambiguous
3339
false   OK
1 by brian
clean slate
3340
*/
3341
3342
static bool
1578.6.3 by Brian Aker
More current_session removal.
3343
store_natural_using_join_columns(Session *session,
327.2.4 by Brian Aker
Refactoring table.h
3344
                                 TableList *natural_using_join,
3345
                                 TableList *table_ref_1,
3346
                                 TableList *table_ref_2,
1 by brian
clean slate
3347
                                 List<String> *using_fields,
482 by Brian Aker
Remove uint.
3348
                                 uint32_t found_using_fields)
1 by brian
clean slate
3349
{
3350
  Field_iterator_table_ref it_1, it_2;
3351
  Natural_join_column *nj_col_1, *nj_col_2;
55 by brian
Update for using real bool types.
3352
  bool result= true;
1 by brian
clean slate
3353
  List<Natural_join_column> *non_join_columns;
3354
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3355
  assert(!natural_using_join->join_columns);
1 by brian
clean slate
3356
3357
  if (!(non_join_columns= new List<Natural_join_column>) ||
3358
      !(natural_using_join->join_columns= new List<Natural_join_column>))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3359
  {
3360
    return(result);
3361
  }
1 by brian
clean slate
3362
3363
  /* Append the columns of the first join operand. */
3364
  for (it_1.set(table_ref_1); !it_1.end_of_fields(); it_1.next())
3365
  {
3366
    nj_col_1= it_1.get_natural_column_ref();
3367
    if (nj_col_1->is_common)
3368
    {
3369
      natural_using_join->join_columns->push_back(nj_col_1);
3370
      /* Reset the common columns for the next call to mark_common_columns. */
55 by brian
Update for using real bool types.
3371
      nj_col_1->is_common= false;
1 by brian
clean slate
3372
    }
3373
    else
3374
      non_join_columns->push_back(nj_col_1);
3375
  }
3376
3377
  /*
3378
    Check that all columns in the USING clause are among the common
3379
    columns. If this is not the case, report the first one that was
3380
    not found in an error.
3381
  */
3382
  if (using_fields && found_using_fields < using_fields->elements)
3383
  {
3384
    String *using_field_name;
3385
    List_iterator_fast<String> using_fields_it(*using_fields);
3386
    while ((using_field_name= using_fields_it++))
3387
    {
3388
      const char *using_field_name_ptr= using_field_name->c_ptr();
3389
      List_iterator_fast<Natural_join_column>
3390
        it(*(natural_using_join->join_columns));
3391
      Natural_join_column *common_field;
3392
3393
      for (;;)
3394
      {
3395
        /* If reached the end of fields, and none was found, report error. */
3396
        if (!(common_field= it++))
3397
        {
3398
          my_error(ER_BAD_FIELD_ERROR, MYF(0), using_field_name_ptr,
1578.6.3 by Brian Aker
More current_session removal.
3399
                   session->where);
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3400
          return(result);
1 by brian
clean slate
3401
        }
3402
        if (!my_strcasecmp(system_charset_info,
3403
                           common_field->name(), using_field_name_ptr))
3404
          break;                                // Found match
3405
      }
3406
    }
3407
  }
3408
3409
  /* Append the non-equi-join columns of the second join operand. */
3410
  for (it_2.set(table_ref_2); !it_2.end_of_fields(); it_2.next())
3411
  {
3412
    nj_col_2= it_2.get_natural_column_ref();
3413
    if (!nj_col_2->is_common)
3414
      non_join_columns->push_back(nj_col_2);
3415
    else
3416
    {
3417
      /* Reset the common columns for the next call to mark_common_columns. */
55 by brian
Update for using real bool types.
3418
      nj_col_2->is_common= false;
1 by brian
clean slate
3419
    }
3420
  }
3421
3422
  if (non_join_columns->elements > 0)
3423
    natural_using_join->join_columns->concat(non_join_columns);
55 by brian
Update for using real bool types.
3424
  natural_using_join->is_join_columns_complete= true;
1 by brian
clean slate
3425
55 by brian
Update for using real bool types.
3426
  result= false;
1 by brian
clean slate
3427
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3428
  return(result);
1 by brian
clean slate
3429
}
3430
3431
3432
/*
3433
  Precompute and store the row types of the top-most NATURAL/USING joins.
3434
3435
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3436
  store_top_level_join_columns()
3437
  session            current thread
3438
  table_ref      nested join or table in a FROM clause
3439
  left_neighbor  neighbor table reference to the left of table_ref at the
3440
  same level in the join tree
3441
  right_neighbor neighbor table reference to the right of table_ref at the
3442
  same level in the join tree
1 by brian
clean slate
3443
3444
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3445
  The procedure performs a post-order traversal of a nested join tree
3446
  and materializes the row types of NATURAL/USING joins in a
3447
  bottom-up manner until it reaches the TableList elements that
3448
  represent the top-most NATURAL/USING joins. The procedure should be
3449
  applied to each element of Select_Lex::top_join_list (i.e. to each
3450
  top-level element of the FROM clause).
1 by brian
clean slate
3451
3452
  IMPLEMENTATION
1046 by Brian Aker
Merge Jay.
3453
  Notice that the table references in the list nested_join->join_list
3454
  are in reverse order, thus when we iterate over it, we are moving
3455
  from the right to the left in the FROM clause.
1 by brian
clean slate
3456
3457
  RETURN
1046 by Brian Aker
Merge Jay.
3458
  true   Error
3459
  false  OK
1 by brian
clean slate
3460
*/
3461
3462
static bool
520.1.22 by Brian Aker
Second pass of thd cleanup
3463
store_top_level_join_columns(Session *session, TableList *table_ref,
327.2.4 by Brian Aker
Refactoring table.h
3464
                             TableList *left_neighbor,
3465
                             TableList *right_neighbor)
1 by brian
clean slate
3466
{
55 by brian
Update for using real bool types.
3467
  bool result= true;
1 by brian
clean slate
3468
3469
  /* Call the procedure recursively for each nested table reference. */
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3470
  if (table_ref->getNestedJoin())
1 by brian
clean slate
3471
  {
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3472
    List_iterator_fast<TableList> nested_it(table_ref->getNestedJoin()->join_list);
327.2.4 by Brian Aker
Refactoring table.h
3473
    TableList *same_level_left_neighbor= nested_it++;
3474
    TableList *same_level_right_neighbor= NULL;
1 by brian
clean slate
3475
    /* Left/right-most neighbors, possibly at higher levels in the join tree. */
327.2.4 by Brian Aker
Refactoring table.h
3476
    TableList *real_left_neighbor, *real_right_neighbor;
1 by brian
clean slate
3477
3478
    while (same_level_left_neighbor)
3479
    {
327.2.4 by Brian Aker
Refactoring table.h
3480
      TableList *cur_table_ref= same_level_left_neighbor;
1 by brian
clean slate
3481
      same_level_left_neighbor= nested_it++;
3482
      /*
3483
        The order of RIGHT JOIN operands is reversed in 'join list' to
3484
        transform it into a LEFT JOIN. However, in this procedure we need
3485
        the join operands in their lexical order, so below we reverse the
3486
        join operands. Notice that this happens only in the first loop,
3487
        and not in the second one, as in the second loop
3488
        same_level_left_neighbor == NULL.
3489
        This is the correct behavior, because the second loop sets
3490
        cur_table_ref reference correctly after the join operands are
3491
        swapped in the first loop.
3492
      */
3493
      if (same_level_left_neighbor &&
3494
          cur_table_ref->outer_join & JOIN_TYPE_RIGHT)
3495
      {
3496
        /* This can happen only for JOIN ... ON. */
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3497
        assert(table_ref->getNestedJoin()->join_list.elements == 2);
322.2.2 by Mats Kindahl
Hiding THD::proc_info field and providing a setter and getter.
3498
        std::swap(same_level_left_neighbor, cur_table_ref);
1 by brian
clean slate
3499
      }
3500
3501
      /*
3502
        Pick the parent's left and right neighbors if there are no immediate
3503
        neighbors at the same level.
3504
      */
3505
      real_left_neighbor=  (same_level_left_neighbor) ?
1046 by Brian Aker
Merge Jay.
3506
        same_level_left_neighbor : left_neighbor;
1 by brian
clean slate
3507
      real_right_neighbor= (same_level_right_neighbor) ?
1046 by Brian Aker
Merge Jay.
3508
        same_level_right_neighbor : right_neighbor;
1 by brian
clean slate
3509
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3510
      if (cur_table_ref->getNestedJoin() &&
520.1.22 by Brian Aker
Second pass of thd cleanup
3511
          store_top_level_join_columns(session, cur_table_ref,
1 by brian
clean slate
3512
                                       real_left_neighbor, real_right_neighbor))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3513
        return(result);
1 by brian
clean slate
3514
      same_level_right_neighbor= cur_table_ref;
3515
    }
3516
  }
3517
3518
  /*
3519
    If this is a NATURAL/USING join, materialize its result columns and
3520
    convert to a JOIN ... ON.
3521
  */
3522
  if (table_ref->is_natural_join)
3523
  {
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
3524
    assert(table_ref->getNestedJoin() &&
3525
           table_ref->getNestedJoin()->join_list.elements == 2);
3526
    List_iterator_fast<TableList> operand_it(table_ref->getNestedJoin()->join_list);
1 by brian
clean slate
3527
    /*
3528
      Notice that the order of join operands depends on whether table_ref
3529
      represents a LEFT or a RIGHT join. In a RIGHT join, the operands are
3530
      in inverted order.
1046 by Brian Aker
Merge Jay.
3531
    */
327.2.4 by Brian Aker
Refactoring table.h
3532
    TableList *table_ref_2= operand_it++; /* Second NATURAL join operand.*/
3533
    TableList *table_ref_1= operand_it++; /* First NATURAL join operand. */
1 by brian
clean slate
3534
    List<String> *using_fields= table_ref->join_using_fields;
482 by Brian Aker
Remove uint.
3535
    uint32_t found_using_fields;
1 by brian
clean slate
3536
3537
    /*
3538
      The two join operands were interchanged in the parser, change the order
3539
      back for 'mark_common_columns'.
3540
    */
3541
    if (table_ref_2->outer_join & JOIN_TYPE_RIGHT)
322.2.2 by Mats Kindahl
Hiding THD::proc_info field and providing a setter and getter.
3542
      std::swap(table_ref_1, table_ref_2);
520.1.22 by Brian Aker
Second pass of thd cleanup
3543
    if (mark_common_columns(session, table_ref_1, table_ref_2,
1 by brian
clean slate
3544
                            using_fields, &found_using_fields))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3545
      return(result);
1 by brian
clean slate
3546
3547
    /*
3548
      Swap the join operands back, so that we pick the columns of the second
3549
      one as the coalesced columns. In this way the coalesced columns are the
3550
      same as of an equivalent LEFT JOIN.
3551
    */
3552
    if (table_ref_1->outer_join & JOIN_TYPE_RIGHT)
322.2.2 by Mats Kindahl
Hiding THD::proc_info field and providing a setter and getter.
3553
      std::swap(table_ref_1, table_ref_2);
520.1.22 by Brian Aker
Second pass of thd cleanup
3554
    if (store_natural_using_join_columns(session, table_ref, table_ref_1,
1 by brian
clean slate
3555
                                         table_ref_2, using_fields,
3556
                                         found_using_fields))
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
3557
      return(result);
1 by brian
clean slate
3558
3559
    /*
3560
      Change NATURAL JOIN to JOIN ... ON. We do this for both operands
3561
      because either one of them or the other is the one with the
3562
      natural join flag because RIGHT joins are transformed into LEFT,
3563
      and the two tables may be reordered.
3564
    */
3565
    table_ref_1->natural_join= table_ref_2->natural_join= NULL;
3566
55 by brian
Update for using real bool types.
3567
    /* Add a true condition to outer joins that have no common columns. */
1 by brian
clean slate
3568
    if (table_ref_2->outer_join &&
3569
        !table_ref_1->on_expr && !table_ref_2->on_expr)
152 by Brian Aker
longlong replacement
3570
      table_ref_2->on_expr= new Item_int((int64_t) 1,1);   /* Always true. */
1 by brian
clean slate
3571
3572
    /* Change this table reference to become a leaf for name resolution. */
3573
    if (left_neighbor)
3574
    {
327.2.4 by Brian Aker
Refactoring table.h
3575
      TableList *last_leaf_on_the_left;
1 by brian
clean slate
3576
      last_leaf_on_the_left= left_neighbor->last_leaf_for_name_resolution();
3577
      last_leaf_on_the_left->next_name_resolution_table= table_ref;
3578
    }
3579
    if (right_neighbor)
3580
    {
327.2.4 by Brian Aker
Refactoring table.h
3581
      TableList *first_leaf_on_the_right;
1 by brian
clean slate
3582
      first_leaf_on_the_right= right_neighbor->first_leaf_for_name_resolution();
3583
      table_ref->next_name_resolution_table= first_leaf_on_the_right;
3584
    }
3585
    else
3586
      table_ref->next_name_resolution_table= NULL;
3587
  }
55 by brian
Update for using real bool types.
3588
  result= false; /* All is OK. */
1 by brian
clean slate
3589
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3590
  return(result);
1 by brian
clean slate
3591
}
3592
3593
3594
/*
3595
  Compute and store the row types of the top-most NATURAL/USING joins
3596
  in a FROM clause.
3597
3598
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3599
  setup_natural_join_row_types()
3600
  session          current thread
3601
  from_clause  list of top-level table references in a FROM clause
1 by brian
clean slate
3602
3603
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
3604
  Apply the procedure 'store_top_level_join_columns' to each of the
3605
  top-level table referencs of the FROM clause. Adjust the list of tables
3606
  for name resolution - context->first_name_resolution_table to the
3607
  top-most, lef-most NATURAL/USING join.
1 by brian
clean slate
3608
3609
  IMPLEMENTATION
1046 by Brian Aker
Merge Jay.
3610
  Notice that the table references in 'from_clause' are in reverse
3611
  order, thus when we iterate over it, we are moving from the right
3612
  to the left in the FROM clause.
1 by brian
clean slate
3613
3614
  RETURN
1046 by Brian Aker
Merge Jay.
3615
  true   Error
3616
  false  OK
1 by brian
clean slate
3617
*/
520.1.22 by Brian Aker
Second pass of thd cleanup
3618
static bool setup_natural_join_row_types(Session *session,
327.2.4 by Brian Aker
Refactoring table.h
3619
                                         List<TableList> *from_clause,
1 by brian
clean slate
3620
                                         Name_resolution_context *context)
3621
{
520.1.22 by Brian Aker
Second pass of thd cleanup
3622
  session->where= "from clause";
1 by brian
clean slate
3623
  if (from_clause->elements == 0)
55 by brian
Update for using real bool types.
3624
    return false; /* We come here in the case of UNIONs. */
1 by brian
clean slate
3625
327.2.4 by Brian Aker
Refactoring table.h
3626
  List_iterator_fast<TableList> table_ref_it(*from_clause);
3627
  TableList *table_ref; /* Current table reference. */
1 by brian
clean slate
3628
  /* Table reference to the left of the current. */
327.2.4 by Brian Aker
Refactoring table.h
3629
  TableList *left_neighbor;
1 by brian
clean slate
3630
  /* Table reference to the right of the current. */
327.2.4 by Brian Aker
Refactoring table.h
3631
  TableList *right_neighbor= NULL;
1 by brian
clean slate
3632
3633
  /* Note that tables in the list are in reversed order */
3634
  for (left_neighbor= table_ref_it++; left_neighbor ; )
3635
  {
3636
    table_ref= left_neighbor;
3637
    left_neighbor= table_ref_it++;
520.1.22 by Brian Aker
Second pass of thd cleanup
3638
    if (store_top_level_join_columns(session, table_ref,
404 by Brian Aker
Removed dead variable
3639
                                     left_neighbor, right_neighbor))
3640
      return true;
3641
    if (left_neighbor)
1 by brian
clean slate
3642
    {
404 by Brian Aker
Removed dead variable
3643
      TableList *first_leaf_on_the_right;
3644
      first_leaf_on_the_right= table_ref->first_leaf_for_name_resolution();
3645
      left_neighbor->next_name_resolution_table= first_leaf_on_the_right;
1 by brian
clean slate
3646
    }
3647
    right_neighbor= table_ref;
3648
  }
3649
3650
  /*
3651
    Store the top-most, left-most NATURAL/USING join, so that we start
3652
    the search from that one instead of context->table_list. At this point
3653
    right_neighbor points to the left-most top-level table reference in the
3654
    FROM clause.
3655
  */
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3656
  assert(right_neighbor);
1 by brian
clean slate
3657
  context->first_name_resolution_table=
3658
    right_neighbor->first_leaf_for_name_resolution();
3659
55 by brian
Update for using real bool types.
3660
  return false;
1 by brian
clean slate
3661
}
3662
3663
3664
/****************************************************************************
1046 by Brian Aker
Merge Jay.
3665
 ** Expand all '*' in given fields
3666
 ****************************************************************************/
1 by brian
clean slate
3667
1034.1.7 by Brian Aker
Remove dead bits to the end of functions.
3668
int setup_wild(Session *session, List<Item> &fields,
77.1.45 by Monty Taylor
Warning fixes.
3669
               List<Item> *sum_func_list,
482 by Brian Aker
Remove uint.
3670
               uint32_t wild_num)
1 by brian
clean slate
3671
{
3672
  if (!wild_num)
1034.1.7 by Brian Aker
Remove dead bits to the end of functions.
3673
    return 0;
1 by brian
clean slate
3674
3675
  Item *item;
3676
  List_iterator<Item> it(fields);
3677
520.1.22 by Brian Aker
Second pass of thd cleanup
3678
  session->lex->current_select->cur_pos_in_select_list= 0;
1 by brian
clean slate
3679
  while (wild_num && (item= it++))
3680
  {
3681
    if (item->type() == Item::FIELD_ITEM &&
3682
        ((Item_field*) item)->field_name &&
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
3683
        ((Item_field*) item)->field_name[0] == '*' &&
3684
        !((Item_field*) item)->field)
1 by brian
clean slate
3685
    {
482 by Brian Aker
Remove uint.
3686
      uint32_t elem= fields.elements;
1 by brian
clean slate
3687
      bool any_privileges= ((Item_field *) item)->any_privileges;
520.1.22 by Brian Aker
Second pass of thd cleanup
3688
      Item_subselect *subsel= session->lex->current_select->master_unit()->item;
1 by brian
clean slate
3689
      if (subsel &&
3690
          subsel->substype() == Item_subselect::EXISTS_SUBS)
3691
      {
3692
        /*
3693
          It is EXISTS(SELECT * ...) and we can replace * by any constant.
3694
3695
          Item_int do not need fix_fields() because it is basic constant.
3696
        */
152 by Brian Aker
longlong replacement
3697
        it.replace(new Item_int("Not_used", (int64_t) 1,
1 by brian
clean slate
3698
                                MY_INT64_NUM_DECIMAL_DIGITS));
3699
      }
520.1.22 by Brian Aker
Second pass of thd cleanup
3700
      else if (insert_fields(session, ((Item_field*) item)->context,
1 by brian
clean slate
3701
                             ((Item_field*) item)->db_name,
3702
                             ((Item_field*) item)->table_name, &it,
3703
                             any_privileges))
3704
      {
1046.1.10 by Brian Aker
Formatting around return (style)
3705
        return -1;
1 by brian
clean slate
3706
      }
3707
      if (sum_func_list)
3708
      {
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
3709
        /*
3710
          sum_func_list is a list that has the fields list as a tail.
3711
          Because of this we have to update the element count also for this
3712
          list after expanding the '*' entry.
3713
        */
3714
        sum_func_list->elements+= fields.elements - elem;
1 by brian
clean slate
3715
      }
3716
      wild_num--;
3717
    }
3718
    else
520.1.22 by Brian Aker
Second pass of thd cleanup
3719
      session->lex->current_select->cur_pos_in_select_list++;
1 by brian
clean slate
3720
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
3721
  session->lex->current_select->cur_pos_in_select_list= UNDEF_POS;
1113.1.1 by Brian Aker
Dead code removal around LCOV finds.
3722
1046.1.10 by Brian Aker
Formatting around return (style)
3723
  return 0;
1 by brian
clean slate
3724
}
3725
3726
/****************************************************************************
1046 by Brian Aker
Merge Jay.
3727
 ** Check that all given fields exists and fill struct with current data
3728
 ****************************************************************************/
1 by brian
clean slate
3729
520.1.22 by Brian Aker
Second pass of thd cleanup
3730
bool setup_fields(Session *session, Item **ref_pointer_array,
1 by brian
clean slate
3731
                  List<Item> &fields, enum_mark_columns mark_used_columns,
3732
                  List<Item> *sum_func_list, bool allow_sum_func)
3733
{
3734
  register Item *item;
520.1.22 by Brian Aker
Second pass of thd cleanup
3735
  enum_mark_columns save_mark_used_columns= session->mark_used_columns;
3736
  nesting_map save_allow_sum_func= session->lex->allow_sum_func;
1 by brian
clean slate
3737
  List_iterator<Item> it(fields);
3738
  bool save_is_item_list_lookup;
3739
520.1.22 by Brian Aker
Second pass of thd cleanup
3740
  session->mark_used_columns= mark_used_columns;
1 by brian
clean slate
3741
  if (allow_sum_func)
520.1.22 by Brian Aker
Second pass of thd cleanup
3742
    session->lex->allow_sum_func|= 1 << session->lex->current_select->nest_level;
3743
  session->where= Session::DEFAULT_WHERE;
3744
  save_is_item_list_lookup= session->lex->current_select->is_item_list_lookup;
3745
  session->lex->current_select->is_item_list_lookup= 0;
1 by brian
clean slate
3746
3747
  /*
3748
    To prevent fail on forward lookup we fill it with zerows,
3749
    then if we got pointer on zero after find_item_in_list we will know
3750
    that it is forward lookup.
3751
3752
    There is other way to solve problem: fill array with pointers to list,
3753
    but it will be slower.
3754
1046 by Brian Aker
Merge Jay.
3755
TODO: remove it when (if) we made one list for allfields and
3756
ref_pointer_array
1 by brian
clean slate
3757
  */
3758
  if (ref_pointer_array)
212.6.1 by Mats Kindahl
Replacing all bzero() calls with memset() calls and removing the bzero.c file.
3759
    memset(ref_pointer_array, 0, sizeof(Item *) * fields.elements);
1 by brian
clean slate
3760
3761
  Item **ref= ref_pointer_array;
520.1.22 by Brian Aker
Second pass of thd cleanup
3762
  session->lex->current_select->cur_pos_in_select_list= 0;
1 by brian
clean slate
3763
  while ((item= it++))
3764
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
3765
    if ((!item->fixed && item->fix_fields(session, it.ref())) || (item= *(it.ref()))->check_cols(1))
1 by brian
clean slate
3766
    {
520.1.22 by Brian Aker
Second pass of thd cleanup
3767
      session->lex->current_select->is_item_list_lookup= save_is_item_list_lookup;
3768
      session->lex->allow_sum_func= save_allow_sum_func;
3769
      session->mark_used_columns= save_mark_used_columns;
971.6.11 by Eric Day
Removed purecov messages.
3770
      return true;
1 by brian
clean slate
3771
    }
3772
    if (ref)
3773
      *(ref++)= item;
3774
    if (item->with_sum_func && item->type() != Item::SUM_FUNC_ITEM &&
1046 by Brian Aker
Merge Jay.
3775
        sum_func_list)
520.1.22 by Brian Aker
Second pass of thd cleanup
3776
      item->split_sum_func(session, ref_pointer_array, *sum_func_list);
3777
    session->used_tables|= item->used_tables();
3778
    session->lex->current_select->cur_pos_in_select_list++;
1 by brian
clean slate
3779
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
3780
  session->lex->current_select->is_item_list_lookup= save_is_item_list_lookup;
3781
  session->lex->current_select->cur_pos_in_select_list= UNDEF_POS;
1 by brian
clean slate
3782
520.1.22 by Brian Aker
Second pass of thd cleanup
3783
  session->lex->allow_sum_func= save_allow_sum_func;
3784
  session->mark_used_columns= save_mark_used_columns;
3785
  return(test(session->is_error()));
1 by brian
clean slate
3786
}
3787
3788
3789
/*
3790
  make list of leaves of join table tree
3791
3792
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3793
  make_leaves_list()
3794
  list    pointer to pointer on list first element
3795
  tables  table list
1 by brian
clean slate
3796
3797
  RETURN pointer on pointer to next_leaf of last element
3798
*/
3799
1085.1.2 by Monty Taylor
Fixed -Wmissing-declarations
3800
static TableList **make_leaves_list(TableList **list, TableList *tables)
1 by brian
clean slate
3801
{
327.2.4 by Brian Aker
Refactoring table.h
3802
  for (TableList *table= tables; table; table= table->next_local)
1 by brian
clean slate
3803
  {
3804
    {
3805
      *list= table;
3806
      list= &table->next_leaf;
3807
    }
3808
  }
3809
  return list;
3810
}
3811
3812
/*
3813
  prepare tables
3814
3815
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3816
  setup_tables()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
3817
  session		  Thread Cursor
1046 by Brian Aker
Merge Jay.
3818
  context       name resolution contest to setup table list there
3819
  from_clause   Top-level list of table references in the FROM clause
3820
  tables	  Table list (select_lex->table_list)
3821
  leaves        List of join table leaves list (select_lex->leaf_tables)
3822
  refresh       It is onle refresh for subquery
3823
  select_insert It is SELECT ... INSERT command
1 by brian
clean slate
3824
3825
  NOTE
1046 by Brian Aker
Merge Jay.
3826
  Check also that the 'used keys' and 'ignored keys' exists and set up the
3827
  table structure accordingly.
3828
  Create a list of leaf tables. For queries with NATURAL/USING JOINs,
3829
  compute the row types of the top most natural/using join table references
3830
  and link these into a list of table references for name resolution.
1 by brian
clean slate
3831
1046 by Brian Aker
Merge Jay.
3832
  This has to be called for all tables that are used by items, as otherwise
3833
  table->map is not set and all Item_field will be regarded as const items.
1 by brian
clean slate
3834
3835
  RETURN
1046 by Brian Aker
Merge Jay.
3836
  false ok;  In this case *map will includes the chosen index
3837
  true  error
1 by brian
clean slate
3838
*/
3839
520.1.22 by Brian Aker
Second pass of thd cleanup
3840
bool setup_tables(Session *session, Name_resolution_context *context,
327.2.4 by Brian Aker
Refactoring table.h
3841
                  List<TableList> *from_clause, TableList *tables,
3842
                  TableList **leaves, bool select_insert)
1 by brian
clean slate
3843
{
482 by Brian Aker
Remove uint.
3844
  uint32_t tablenr= 0;
1 by brian
clean slate
3845
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
3846
  assert ((select_insert && !tables->next_name_resolution_table) || !tables ||
1046 by Brian Aker
Merge Jay.
3847
          (context->table_list && context->first_name_resolution_table));
1 by brian
clean slate
3848
  /*
3849
    this is used for INSERT ... SELECT.
3850
    For select we setup tables except first (and its underlying tables)
3851
  */
1034.1.4 by Brian Aker
Fixed TableList to correctly construct (and removed memset() calls in
3852
  TableList *first_select_table= (select_insert ?  tables->next_local: NULL);
3853
1 by brian
clean slate
3854
  if (!(*leaves))
3855
    make_leaves_list(leaves, tables);
3856
327.2.4 by Brian Aker
Refactoring table.h
3857
  TableList *table_list;
1 by brian
clean slate
3858
  for (table_list= *leaves;
3859
       table_list;
3860
       table_list= table_list->next_leaf, tablenr++)
3861
  {
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
3862
    Table *table= table_list->table;
1 by brian
clean slate
3863
    table->pos_in_table_list= table_list;
3864
    if (first_select_table &&
3865
        table_list->top_table() == first_select_table)
3866
    {
3867
      /* new counting for SELECT of INSERT ... SELECT command */
3868
      first_select_table= 0;
3869
      tablenr= 0;
3870
    }
934.1.1 by Brian Aker
Moved two functions in classes.
3871
    table->setup_table_map(table_list, tablenr);
1 by brian
clean slate
3872
    if (table_list->process_index_hints(table))
1046.1.10 by Brian Aker
Formatting around return (style)
3873
      return 1;
1 by brian
clean slate
3874
  }
3875
  if (tablenr > MAX_TABLES)
3876
  {
3877
    my_error(ER_TOO_MANY_TABLES,MYF(0),MAX_TABLES);
1046.1.10 by Brian Aker
Formatting around return (style)
3878
    return 1;
1 by brian
clean slate
3879
  }
3880
3881
  /* Precompute and store the row types of NATURAL/USING joins. */
520.1.22 by Brian Aker
Second pass of thd cleanup
3882
  if (setup_natural_join_row_types(session, from_clause, context))
1046.1.10 by Brian Aker
Formatting around return (style)
3883
    return 1;
1 by brian
clean slate
3884
1046.1.10 by Brian Aker
Formatting around return (style)
3885
  return 0;
1 by brian
clean slate
3886
}
3887
3888
3889
/*
3890
  prepare tables and check access for the view tables
3891
3892
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3893
  setup_tables_and_check_view_access()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
3894
  session		  Thread Cursor
1046 by Brian Aker
Merge Jay.
3895
  context       name resolution contest to setup table list there
3896
  from_clause   Top-level list of table references in the FROM clause
3897
  tables	  Table list (select_lex->table_list)
3898
  conds	  Condition of current SELECT (can be changed by VIEW)
3899
  leaves        List of join table leaves list (select_lex->leaf_tables)
3900
  refresh       It is onle refresh for subquery
3901
  select_insert It is SELECT ... INSERT command
3902
  want_access   what access is needed
1 by brian
clean slate
3903
3904
  NOTE
1046 by Brian Aker
Merge Jay.
3905
  a wrapper for check_tables that will also check the resulting
3906
  table leaves list for access to all the tables that belong to a view
1 by brian
clean slate
3907
3908
  RETURN
1046 by Brian Aker
Merge Jay.
3909
  false ok;  In this case *map will include the chosen index
3910
  true  error
1 by brian
clean slate
3911
*/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
3912
bool setup_tables_and_check_access(Session *session,
1 by brian
clean slate
3913
                                   Name_resolution_context *context,
327.2.4 by Brian Aker
Refactoring table.h
3914
                                   List<TableList> *from_clause,
3915
                                   TableList *tables,
3916
                                   TableList **leaves,
1 by brian
clean slate
3917
                                   bool select_insert)
3918
{
327.2.4 by Brian Aker
Refactoring table.h
3919
  TableList *leaves_tmp= NULL;
1 by brian
clean slate
3920
520.1.22 by Brian Aker
Second pass of thd cleanup
3921
  if (setup_tables(session, context, from_clause, tables,
1 by brian
clean slate
3922
                   &leaves_tmp, select_insert))
55 by brian
Update for using real bool types.
3923
    return true;
1 by brian
clean slate
3924
3925
  if (leaves)
3926
    *leaves= leaves_tmp;
3927
55 by brian
Update for using real bool types.
3928
  return false;
1 by brian
clean slate
3929
}
3930
3931
3932
/*
3933
  Drops in all fields instead of current '*' field
3934
3935
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
3936
  insert_fields()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
3937
  session			Thread Cursor
1046 by Brian Aker
Merge Jay.
3938
  context             Context for name resolution
3939
  db_name		Database name in case of 'database_name.table_name.*'
3940
  table_name		Table name in case of 'table_name.*'
3941
  it			Pointer to '*'
3942
  any_privileges	0 If we should ensure that we have SELECT privileges
3943
  for all columns
3944
  1 If any privilege is ok
1 by brian
clean slate
3945
  RETURN
1046 by Brian Aker
Merge Jay.
3946
  0	ok     'it' is updated to point at last inserted
3947
  1	error.  Error message is generated but not sent to client
1 by brian
clean slate
3948
*/
3949
3950
bool
520.1.22 by Brian Aker
Second pass of thd cleanup
3951
insert_fields(Session *session, Name_resolution_context *context, const char *db_name,
77.1.45 by Monty Taylor
Warning fixes.
3952
              const char *table_name, List_iterator<Item> *it,
779.1.27 by Monty Taylor
Got rid of __attribute__((unused)) and the like from the .cc files.
3953
              bool )
1 by brian
clean slate
3954
{
3955
  Field_iterator_table_ref field_iterator;
3956
  bool found;
3957
  char name_buff[NAME_LEN+1];
3958
1039.1.5 by Brian Aker
Remove lower case filename bits (aka we just lock into the most compatible
3959
  if (db_name)
1 by brian
clean slate
3960
  {
3961
    /*
3962
      convert database to lower case for comparison
3963
      We can't do this in Item_field as this would change the
3964
      'name' of the item which may be used in the select list
3965
    */
629.5.3 by Toru Maesaka
Third pass of replacing MySQL's strmake() with libc calls
3966
    strncpy(name_buff, db_name, sizeof(name_buff)-1);
1 by brian
clean slate
3967
    my_casedn_str(files_charset_info, name_buff);
3968
    db_name= name_buff;
3969
  }
3970
55 by brian
Update for using real bool types.
3971
  found= false;
1 by brian
clean slate
3972
3973
  /*
3974
    If table names are qualified, then loop over all tables used in the query,
3975
    else treat natural joins as leaves and do not iterate over their underlying
3976
    tables.
3977
  */
327.2.4 by Brian Aker
Refactoring table.h
3978
  for (TableList *tables= (table_name ? context->table_list :
1046 by Brian Aker
Merge Jay.
3979
                           context->first_name_resolution_table);
1 by brian
clean slate
3980
       tables;
3981
       tables= (table_name ? tables->next_local :
3982
                tables->next_name_resolution_table)
1046 by Brian Aker
Merge Jay.
3983
      )
1 by brian
clean slate
3984
  {
3985
    Field *field;
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
3986
    Table *table= tables->table;
1 by brian
clean slate
3987
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
3988
    assert(tables->is_leaf_for_name_resolution());
1 by brian
clean slate
3989
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
3990
    if ((table_name && my_strcasecmp(table_alias_charset, table_name, tables->alias)) ||
1874.1.1 by Brian Aker
Encapsulate schema_name it table_list.
3991
        (db_name && strcasecmp(tables->getSchemaName(),db_name)))
1 by brian
clean slate
3992
      continue;
3993
3994
    /*
3995
      Update the tables used in the query based on the referenced fields. For
3996
      views and natural joins this update is performed inside the loop below.
3997
    */
3998
    if (table)
520.1.22 by Brian Aker
Second pass of thd cleanup
3999
      session->used_tables|= table->map;
1 by brian
clean slate
4000
4001
    /*
4002
      Initialize a generic field iterator for the current table reference.
4003
      Notice that it is guaranteed that this iterator will iterate over the
4004
      fields of a single table reference, because 'tables' is a leaf (for
4005
      name resolution purposes).
4006
    */
4007
    field_iterator.set(tables);
4008
4009
    for (; !field_iterator.end_of_fields(); field_iterator.next())
4010
    {
4011
      Item *item;
4012
520.1.22 by Brian Aker
Second pass of thd cleanup
4013
      if (!(item= field_iterator.create_item(session)))
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
4014
        return true;
1 by brian
clean slate
4015
4016
      if (!found)
4017
      {
55 by brian
Update for using real bool types.
4018
        found= true;
1 by brian
clean slate
4019
        it->replace(item); /* Replace '*' with the first found item. */
4020
      }
4021
      else
4022
        it->after(item);   /* Add 'item' to the SELECT list. */
4023
4024
      if ((field= field_iterator.field()))
4025
      {
4026
        /* Mark fields as used to allow storage engine to optimze access */
1660.1.3 by Brian Aker
Encapsulate Table in field
4027
        field->getTable()->setReadSet(field->field_index);
1 by brian
clean slate
4028
        if (table)
4029
        {
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
4030
          table->covering_keys&= field->part_of_key;
4031
          table->merge_keys|= field->part_of_key;
1 by brian
clean slate
4032
        }
4033
        if (tables->is_natural_join)
4034
        {
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
4035
          Table *field_table;
1 by brian
clean slate
4036
          /*
4037
            In this case we are sure that the column ref will not be created
4038
            because it was already created and stored with the natural join.
4039
          */
4040
          Natural_join_column *nj_col;
4041
          if (!(nj_col= field_iterator.get_natural_column_ref()))
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
4042
            return true;
51.1.48 by Jay Pipes
Removed/replaced DBUG symbols and standardized TRUE/FALSE
4043
          assert(nj_col->table_field);
1 by brian
clean slate
4044
          field_table= nj_col->table_ref->table;
4045
          if (field_table)
4046
          {
520.1.22 by Brian Aker
Second pass of thd cleanup
4047
            session->used_tables|= field_table->map;
1005.2.6 by Monty Taylor
Re-added bitset<> as a replacement for Bitmap<>
4048
            field_table->covering_keys&= field->part_of_key;
4049
            field_table->merge_keys|= field->part_of_key;
1 by brian
clean slate
4050
            field_table->used_fields++;
4051
          }
4052
        }
4053
      }
4054
      else
520.1.22 by Brian Aker
Second pass of thd cleanup
4055
        session->used_tables|= item->used_tables();
4056
      session->lex->current_select->cur_pos_in_select_list++;
1 by brian
clean slate
4057
    }
4058
    /*
4059
      In case of stored tables, all fields are considered as used,
4060
      while in the case of views, the fields considered as used are the
4061
      ones marked in setup_tables during fix_fields of view columns.
4062
      For NATURAL joins, used_tables is updated in the IF above.
4063
    */
4064
    if (table)
1578.2.10 by Brian Aker
keys and fields partial encapsulation.
4065
      table->used_fields= table->getShare()->sizeFields();
1 by brian
clean slate
4066
  }
4067
  if (found)
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
4068
    return false;
1 by brian
clean slate
4069
4070
  /*
1273.19.1 by Brian Aker
Update for show fields.
4071
    @TODO in the case when we skipped all columns because there was a
4072
    qualified '*', and all columns were coalesced, we have to give a more
4073
    meaningful message than ER_BAD_TABLE_ERROR.
1 by brian
clean slate
4074
  */
4075
  if (!table_name)
4076
    my_message(ER_NO_TABLES_USED, ER(ER_NO_TABLES_USED), MYF(0));
4077
  else
4078
    my_error(ER_BAD_TABLE_ERROR, MYF(0), table_name);
4079
1046.1.9 by Brian Aker
Remove caller that wasn't correctly locking, and reverted code to 5.1
4080
  return true;
1 by brian
clean slate
4081
}
4082
4083
4084
/*
4085
  Fix all conditions and outer join expressions.
4086
4087
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
4088
  setup_conds()
1183.1.2 by Brian Aker
Rename of handler to Cursor. You would not believe how long I have wanted
4089
  session     thread Cursor
1046 by Brian Aker
Merge Jay.
4090
  tables  list of tables for name resolving (select_lex->table_list)
4091
  leaves  list of leaves of join table tree (select_lex->leaf_tables)
4092
  conds   WHERE clause
1 by brian
clean slate
4093
4094
  DESCRIPTION
1046 by Brian Aker
Merge Jay.
4095
  TODO
1 by brian
clean slate
4096
4097
  RETURN
1046 by Brian Aker
Merge Jay.
4098
  true  if some error occured (e.g. out of memory)
4099
  false if all is OK
1 by brian
clean slate
4100
*/
4101
1109.1.5 by Brian Aker
More extraction from sql_base
4102
int Session::setup_conds(TableList *leaves, COND **conds)
1 by brian
clean slate
4103
{
1109.1.5 by Brian Aker
More extraction from sql_base
4104
  Session *session= this;
846 by Brian Aker
Removing on typedeffed class.
4105
  Select_Lex *select_lex= session->lex->current_select;
327.2.4 by Brian Aker
Refactoring table.h
4106
  TableList *table= NULL;	// For HP compilers
520.1.22 by Brian Aker
Second pass of thd cleanup
4107
  void *save_session_marker= session->session_marker;
1 by brian
clean slate
4108
  /*
846 by Brian Aker
Removing on typedeffed class.
4109
    it_is_update set to true when tables of primary Select_Lex (Select_Lex
1 by brian
clean slate
4110
    which belong to LEX, i.e. most up SELECT) will be updated by
4111
    INSERT/UPDATE/LOAD
1046.1.10 by Brian Aker
Formatting around return (style)
4112
    NOTE-> using this condition helps to prevent call of prepare_check_option()
4113
    from subquery of VIEW, because tables of subquery belongs to VIEW
4114
    (see condition before prepare_check_option() call)
1 by brian
clean slate
4115
  */
4116
  bool save_is_item_list_lookup= select_lex->is_item_list_lookup;
4117
  select_lex->is_item_list_lookup= 0;
4118
520.1.22 by Brian Aker
Second pass of thd cleanup
4119
  session->mark_used_columns= MARK_COLUMNS_READ;
1 by brian
clean slate
4120
  select_lex->cond_count= 0;
4121
  select_lex->between_count= 0;
4122
  select_lex->max_equal_elems= 0;
4123
520.1.22 by Brian Aker
Second pass of thd cleanup
4124
  session->session_marker= (void*)1;
1 by brian
clean slate
4125
  if (*conds)
4126
  {
520.1.22 by Brian Aker
Second pass of thd cleanup
4127
    session->where="where clause";
4128
    if ((!(*conds)->fixed && (*conds)->fix_fields(session, conds)) ||
1046 by Brian Aker
Merge Jay.
4129
        (*conds)->check_cols(1))
1 by brian
clean slate
4130
      goto err_no_arena;
4131
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
4132
  session->session_marker= save_session_marker;
1 by brian
clean slate
4133
4134
  /*
4135
    Apply fix_fields() to all ON clauses at all levels of nesting,
4136
    including the ones inside view definitions.
4137
  */
4138
  for (table= leaves; table; table= table->next_leaf)
4139
  {
327.2.4 by Brian Aker
Refactoring table.h
4140
    TableList *embedded; /* The table at the current level of nesting. */
4141
    TableList *embedding= table; /* The parent nested table reference. */
1 by brian
clean slate
4142
    do
4143
    {
4144
      embedded= embedding;
4145
      if (embedded->on_expr)
4146
      {
4147
        /* Make a join an a expression */
520.1.22 by Brian Aker
Second pass of thd cleanup
4148
        session->session_marker= (void*)embedded;
4149
        session->where="on clause";
4150
        if ((!embedded->on_expr->fixed && embedded->on_expr->fix_fields(session, &embedded->on_expr)) ||
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
4151
            embedded->on_expr->check_cols(1))
4152
          goto err_no_arena;
1 by brian
clean slate
4153
        select_lex->cond_count++;
4154
      }
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
4155
      embedding= embedded->getEmbedding();
1 by brian
clean slate
4156
    }
4157
    while (embedding &&
1637.2.7 by Vijay Samuel
Merge encapsulate TableList-2.
4158
           embedding->getNestedJoin()->join_list.head() == embedded);
1 by brian
clean slate
4159
4160
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
4161
  session->session_marker= save_session_marker;
1 by brian
clean slate
4162
520.1.22 by Brian Aker
Second pass of thd cleanup
4163
  session->lex->current_select->is_item_list_lookup= save_is_item_list_lookup;
4164
  return(test(session->is_error()));
1 by brian
clean slate
4165
4166
err_no_arena:
4167
  select_lex->is_item_list_lookup= save_is_item_list_lookup;
1046.1.10 by Brian Aker
Formatting around return (style)
4168
4169
  return 1;
1 by brian
clean slate
4170
}
4171
4172
4173
/******************************************************************************
1046 by Brian Aker
Merge Jay.
4174
 ** Fill a record with data (for INSERT or UPDATE)
4175
 ** Returns : 1 if some field has wrong type
4176
 ******************************************************************************/
1 by brian
clean slate
4177
4178
4179
/*
4180
  Fill fields with given items.
4181
4182
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
4183
  fill_record()
4184
  fields        Item_fields list to be filled
4185
  values        values to fill with
4186
  ignore_errors true if we should ignore errors
1 by brian
clean slate
4187
4188
  NOTE
1046 by Brian Aker
Merge Jay.
4189
  fill_record() may set table->auto_increment_field_not_null and a
4190
  caller should make sure that it is reset after their last call to this
4191
  function.
1 by brian
clean slate
4192
4193
  RETURN
1046 by Brian Aker
Merge Jay.
4194
  false   OK
4195
  true    error occured
1 by brian
clean slate
4196
*/
4197
4198
bool
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4199
fill_record(Session *session, List<Item> &fields, List<Item> &values, bool ignore_errors)
1 by brian
clean slate
4200
{
4201
  List_iterator_fast<Item> f(fields),v(values);
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4202
  Item *value;
1 by brian
clean slate
4203
  Item_field *field;
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4204
  Table *table;
1 by brian
clean slate
4205
4206
  /*
4207
    Reset the table->auto_increment_field_not_null as it is valid for
4208
    only one row.
4209
  */
4210
  if (fields.elements)
4211
  {
4212
    /*
4213
      On INSERT or UPDATE fields are checked to be from the same table,
4214
      thus we safely can take table from the first field.
4215
    */
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4216
    field= static_cast<Item_field *>(f++);
1660.1.3 by Brian Aker
Encapsulate Table in field
4217
    table= field->field->getTable();
55 by brian
Update for using real bool types.
4218
    table->auto_increment_field_not_null= false;
1 by brian
clean slate
4219
    f.rewind();
4220
  }
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4221
4222
  while ((field= static_cast<Item_field *>(f++)))
1 by brian
clean slate
4223
  {
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4224
    value= v++;
4225
1 by brian
clean slate
4226
    Field *rfield= field->field;
1660.1.3 by Brian Aker
Encapsulate Table in field
4227
    table= rfield->getTable();
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4228
1 by brian
clean slate
4229
    if (rfield == table->next_number_field)
55 by brian
Update for using real bool types.
4230
      table->auto_increment_field_not_null= true;
1 by brian
clean slate
4231
    if ((value->save_in_field(rfield, 0) < 0) && !ignore_errors)
4232
    {
4233
      my_message(ER_UNKNOWN_ERROR, ER(ER_UNKNOWN_ERROR), MYF(0));
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
4234
      if (table)
4235
        table->auto_increment_field_not_null= false;
4236
4237
      return true;
1 by brian
clean slate
4238
    }
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4239
  }
4240
4241
  return session->is_error();
1 by brian
clean slate
4242
}
4243
4244
4245
/*
4246
  Fill field buffer with values from Field list
4247
4248
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
4249
  fill_record()
4250
  ptr           pointer on pointer to record
4251
  values        list of fields
4252
  ignore_errors true if we should ignore errors
1 by brian
clean slate
4253
4254
  NOTE
1046 by Brian Aker
Merge Jay.
4255
  fill_record() may set table->auto_increment_field_not_null and a
4256
  caller should make sure that it is reset after their last call to this
4257
  function.
1 by brian
clean slate
4258
4259
  RETURN
1046 by Brian Aker
Merge Jay.
4260
  false   OK
4261
  true    error occured
1 by brian
clean slate
4262
*/
4263
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4264
bool fill_record(Session *session, Field **ptr, List<Item> &values, bool)
1 by brian
clean slate
4265
{
4266
  List_iterator_fast<Item> v(values);
4267
  Item *value;
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
4268
  Table *table= 0;
1 by brian
clean slate
4269
  Field *field;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
4270
1 by brian
clean slate
4271
  /*
4272
    Reset the table->auto_increment_field_not_null as it is valid for
4273
    only one row.
4274
  */
4275
  if (*ptr)
4276
  {
4277
    /*
4278
      On INSERT or UPDATE fields are checked to be from the same table,
4279
      thus we safely can take table from the first field.
4280
    */
1660.1.3 by Brian Aker
Encapsulate Table in field
4281
    table= (*ptr)->getTable();
55 by brian
Update for using real bool types.
4282
    table->auto_increment_field_not_null= false;
1 by brian
clean slate
4283
  }
520.1.22 by Brian Aker
Second pass of thd cleanup
4284
  while ((field = *ptr++) && ! session->is_error())
1 by brian
clean slate
4285
  {
4286
    value=v++;
1660.1.3 by Brian Aker
Encapsulate Table in field
4287
    table= field->getTable();
1 by brian
clean slate
4288
    if (field == table->next_number_field)
55 by brian
Update for using real bool types.
4289
      table->auto_increment_field_not_null= true;
1 by brian
clean slate
4290
    if (value->save_in_field(field, 0) < 0)
1859.2.13 by Brian Aker
Remove a number of goto'. Also I removed the std::cerr that slipped in on
4291
    {
4292
      if (table)
4293
        table->auto_increment_field_not_null= false;
4294
4295
      return true;
4296
    }
1235.1.10 by Brian Aker
Cleaned up the update call (I noticed that there were still update view code
4297
  }
4298
520.1.22 by Brian Aker
Second pass of thd cleanup
4299
  return(session->is_error());
1 by brian
clean slate
4300
}
4301
4302
1130.1.12 by Monty Taylor
Moved service stuff into plugin/
4303
bool drizzle_rm_tmp_tables()
1 by brian
clean slate
4304
{
520.1.22 by Brian Aker
Second pass of thd cleanup
4305
  Session *session;
1 by brian
clean slate
4306
1556.1.1 by Brian Aker
Updates for moving temporary directory.
4307
  assert(drizzle_tmpdir.size());
680 by Brian Aker
Remove locks around temp tables for searching tmp directory path.
4308
1130.1.12 by Monty Taylor
Moved service stuff into plugin/
4309
  if (!(session= new Session(plugin::Listen::getNullClient())))
680 by Brian Aker
Remove locks around temp tables for searching tmp directory path.
4310
    return true;
520.1.22 by Brian Aker
Second pass of thd cleanup
4311
  session->thread_stack= (char*) &session;
971.3.64 by Eric Day
Cleaned up Scheduler plugin, moved more code to the schedular plugins, reworked some functions to be methods in Session, removed some dead code.
4312
  session->storeGlobals();
1 by brian
clean slate
4313
1556.1.1 by Brian Aker
Updates for moving temporary directory.
4314
  plugin::StorageEngine::removeLostTemporaryTables(*session, drizzle_tmpdir.c_str());
680 by Brian Aker
Remove locks around temp tables for searching tmp directory path.
4315
1689.3.7 by Brian Aker
Covnert session lock
4316
  session->lockForDelete();
520.1.22 by Brian Aker
Second pass of thd cleanup
4317
  delete session;
680 by Brian Aker
Remove locks around temp tables for searching tmp directory path.
4318
4319
  return false;
1 by brian
clean slate
4320
}
4321
4322
4323
4324
/*****************************************************************************
1046 by Brian Aker
Merge Jay.
4325
  unireg support functions
4326
 *****************************************************************************/
1 by brian
clean slate
4327
4328
/*
4329
  Invalidate any cache entries that are for some DB
4330
4331
  SYNOPSIS
1046 by Brian Aker
Merge Jay.
4332
  remove_db_from_cache()
4333
  db		Database name. This will be in lower case if
4334
  lower_case_table_name is set
1 by brian
clean slate
4335
1046 by Brian Aker
Merge Jay.
4336
NOTE:
4337
We can't use hash_delete when looping hash_elements. We mark them first
4338
and afterwards delete those marked unused.
1 by brian
clean slate
4339
*/
4340
1642 by Brian Aker
This adds const to SchemaIdentifier.
4341
void remove_db_from_cache(const SchemaIdentifier &schema_identifier)
1 by brian
clean slate
4342
{
1689.2.7 by Brian Aker
LOCK_open to boost.
4343
  safe_mutex_assert_owner(LOCK_open.native_handle());
1054.1.9 by Brian Aker
This is a large number of refactors against the Session class for its
4344
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
4345
  for (TableOpenCache::const_iterator iter= get_open_cache().begin();
4346
       iter != get_open_cache().end();
4347
       iter++)
1 by brian
clean slate
4348
  {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
4349
    table::Concurrent *table= (*iter).second;
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
4350
1835.1.4 by Brian Aker
Update to remove more of the getMutableShare() uses.
4351
    if (not schema_identifier.getPath().compare(table->getShare()->getSchemaName()))
1 by brian
clean slate
4352
    {
1578.2.3 by Brian Aker
Take version and encapsulate it in TableShare
4353
      table->getMutableShare()->resetVersion();			/* Free when thread is ready */
1309.1.8 by Brian Aker
Modest update to drop schema.
4354
      if (not table->in_use)
1637.4.1 by Brian Aker
Wrap unused access with a class.
4355
        unused_tables.relink(table);
1 by brian
clean slate
4356
    }
4357
  }
1637.4.1 by Brian Aker
Wrap unused access with a class.
4358
4359
  unused_tables.cullByVersion();
1 by brian
clean slate
4360
}
4361
4362
4363
/*
4364
  Mark all entries with the table as deleted to force an reopen of the table
4365
4366
  The table will be closed (not stored in cache) by the current thread when
4367
  close_thread_tables() is called.
4368
4369
  PREREQUISITES
1046 by Brian Aker
Merge Jay.
4370
  Lock on LOCK_open()
1 by brian
clean slate
4371
4372
  RETURN
1046 by Brian Aker
Merge Jay.
4373
  0  This thread now have exclusive access to this table and no other thread
4374
  can access the table until close_thread_tables() is called.
4375
  1  Table is in use by another thread
1 by brian
clean slate
4376
*/
4377
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
4378
bool remove_table_from_cache(Session *session, TableIdentifier &identifier, uint32_t flags)
1 by brian
clean slate
4379
{
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
4380
  const TableIdentifier::Key &key(identifier.getKey());
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
4381
  bool result= false; 
4382
  bool signalled= false;
1 by brian
clean slate
4383
4384
  for (;;)
4385
  {
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
4386
    result= signalled= false;
1 by brian
clean slate
4387
1669 by Brian Aker
This patch turns the table_cache into boost::unordered_multimap.
4388
    TableOpenCacheRange ppp;
4389
    ppp= get_open_cache().equal_range(key);
4390
4391
    for (TableOpenCache::const_iterator iter= ppp.first;
4392
         iter != ppp.second; ++iter)
1 by brian
clean slate
4393
    {
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
4394
      table::Concurrent *table= (*iter).second;
520.1.21 by Brian Aker
THD -> Session rename
4395
      Session *in_use;
1 by brian
clean slate
4396
1578.2.3 by Brian Aker
Take version and encapsulate it in TableShare
4397
      table->getMutableShare()->resetVersion();		/* Free when thread is ready */
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
4398
      if (not (in_use= table->in_use))
1 by brian
clean slate
4399
      {
1637.4.1 by Brian Aker
Wrap unused access with a class.
4400
        unused_tables.relink(table);
1 by brian
clean slate
4401
      }
520.1.22 by Brian Aker
Second pass of thd cleanup
4402
      else if (in_use != session)
1 by brian
clean slate
4403
      {
4404
        /*
4405
          Mark that table is going to be deleted from cache. This will
4406
          force threads that are in mysql_lock_tables() (but not yet
4407
          in thr_multi_lock()) to abort it's locks, close all tables and retry
4408
        */
1046.1.14 by Brian Aker
More redactoring of all lock issue code that is session bound, to be a
4409
        in_use->some_tables_deleted= true;
1 by brian
clean slate
4410
        if (table->is_name_opened())
4411
        {
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
4412
          result= true;
1 by brian
clean slate
4413
        }
4414
        /*
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
4415
          Now we must abort all tables locks used by this thread
4416
          as the thread may be waiting to get a lock for another table.
1 by brian
clean slate
4417
          Note that we need to hold LOCK_open while going through the
4418
          list. So that the other thread cannot change it. The other
4419
          thread must also hold LOCK_open whenever changing the
4420
          open_tables list. Aborting the MERGE lock after a child was
4421
          closed and before the parent is closed would be fatal.
4422
        */
520.1.22 by Brian Aker
Second pass of thd cleanup
4423
        for (Table *session_table= in_use->open_tables;
1046 by Brian Aker
Merge Jay.
4424
             session_table ;
1608 by Brian Aker
This encapsulates prev/next.
4425
             session_table= session_table->getNext())
1 by brian
clean slate
4426
        {
4427
          /* Do not handle locks of MERGE children. */
1039.2.8 by Jay Pipes
Yet more indentation and style cleanup
4428
          if (session_table->db_stat)	// If table is open
4429
            signalled|= mysql_lock_abort_for_thread(session, session_table);
1 by brian
clean slate
4430
        }
4431
      }
4432
      else
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
4433
      {
520.1.21 by Brian Aker
THD -> Session rename
4434
        result= result || (flags & RTFC_OWNED_BY_Session_FLAG);
1859.2.6 by Brian Aker
Merge in a bit more strictness around table type.
4435
      }
1 by brian
clean slate
4436
    }
1637.4.1 by Brian Aker
Wrap unused access with a class.
4437
4438
    unused_tables.cullByVersion();
1 by brian
clean slate
4439
4440
    /* Remove table from table definition cache if it's not in use */
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
4441
    TableShare::release(identifier);
1 by brian
clean slate
4442
4443
    if (result && (flags & RTFC_WAIT_OTHER_THREAD_FLAG))
4444
    {
4445
      /*
4446
        Signal any thread waiting for tables to be freed to
4447
        reopen their tables
4448
      */
4449
      broadcast_refresh();
520.1.22 by Brian Aker
Second pass of thd cleanup
4450
      if (!(flags & RTFC_CHECK_KILLED_FLAG) || !session->killed)
1 by brian
clean slate
4451
      {
4452
        dropping_tables++;
4453
        if (likely(signalled))
1798.3.10 by Brian Aker
Remove additional (maybe last of?) native_handle actual calls (safe_mutex is
4454
        {
1812.3.7 by Brian Aker
Typdef our lock type.
4455
          boost_unique_lock_t scoped(LOCK_open, boost::adopt_lock_t());
1798.3.10 by Brian Aker
Remove additional (maybe last of?) native_handle actual calls (safe_mutex is
4456
          COND_refresh.wait(scoped);
4457
          scoped.release();
4458
        }
1 by brian
clean slate
4459
        else
4460
        {
4461
          /*
4462
            It can happen that another thread has opened the
4463
            table but has not yet locked any table at all. Since
4464
            it can be locked waiting for a table that our thread
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
4465
            has done LOCK Table x WRITE on previously, we need to
1 by brian
clean slate
4466
            ensure that the thread actually hears our signal
4467
            before we go to sleep. Thus we wait for a short time
4468
            and then we retry another loop in the
4469
            remove_table_from_cache routine.
4470
          */
1798.3.10 by Brian Aker
Remove additional (maybe last of?) native_handle actual calls (safe_mutex is
4471
          boost::xtime xt; 
4472
          xtime_get(&xt, boost::TIME_UTC); 
4473
          xt.sec += 10; 
1812.3.7 by Brian Aker
Typdef our lock type.
4474
          boost_unique_lock_t scoped(LOCK_open, boost::adopt_lock_t());
1798.3.10 by Brian Aker
Remove additional (maybe last of?) native_handle actual calls (safe_mutex is
4475
          COND_refresh.timed_wait(scoped, xt);
4476
          scoped.release();
1 by brian
clean slate
4477
        }
4478
        dropping_tables--;
4479
        continue;
4480
      }
4481
    }
4482
    break;
4483
  }
1618 by Brian Aker
This is a rollup set of patches for modifications to TableIdentifier to have
4484
1046.1.12 by Brian Aker
Simplify close_cached_tables() (it now always locks).
4485
  return result;
1 by brian
clean slate
4486
}
4487
4488
4489
/**
4490
  @} (end of group Data_Dictionary)
4491
*/
575.4.7 by Monty Taylor
More header cleanup.
4492
4493
void kill_drizzle(void)
4494
{
4495
  pthread_kill(signal_thread, SIGTERM);
929.1.6 by Brian Aker
Pushing thread attribute for threads down to engine.
4496
  shutdown_in_progress= 1;			// Safety if kill didn't work
575.4.7 by Monty Taylor
More header cleanup.
4497
}
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
4498
4499
} /* namespace drizzled */