~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/replace_select.cc

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
 
21
#include "config.h"
22
22
#include <drizzled/show.h>
23
23
#include <drizzled/lock.h>
24
24
#include <drizzled/session.h>
25
25
#include <drizzled/statement/replace_select.h>
26
 
#include <drizzled/select_insert.h>
27
26
 
28
27
namespace drizzled
29
28
{
30
29
 
31
30
bool statement::ReplaceSelect::execute()
32
31
{
33
 
  TableList *first_table= (TableList *) getSession()->getLex()->select_lex.table_list.first;
34
 
  TableList *all_tables= getSession()->getLex()->query_tables;
 
32
  TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
 
33
  TableList *all_tables= getSession()->lex->query_tables;
35
34
  assert(first_table == all_tables && first_table != 0);
36
 
  Select_Lex *select_lex= &getSession()->getLex()->select_lex;
37
 
  Select_Lex_Unit *unit= &getSession()->getLex()->unit;
 
35
  Select_Lex *select_lex= &getSession()->lex->select_lex;
 
36
  Select_Lex_Unit *unit= &getSession()->lex->unit;
38
37
  select_result *sel_result= NULL;
39
38
  bool res;
40
39
 
63
62
    res= insert_select_prepare(getSession());
64
63
    if (! res && (sel_result= new select_insert(first_table,
65
64
                                                first_table->table,
66
 
                                                &getSession()->getLex()->field_list,
67
 
                                                &getSession()->getLex()->update_list,
68
 
                                                &getSession()->getLex()->value_list,
69
 
                                                getSession()->getLex()->duplicates,
70
 
                                                getSession()->getLex()->ignore)))
 
65
                                                &getSession()->lex->field_list,
 
66
                                                &getSession()->lex->update_list,
 
67
                                                &getSession()->lex->value_list,
 
68
                                                getSession()->lex->duplicates,
 
69
                                                getSession()->lex->ignore)))
71
70
    {
72
71
      res= handle_select(getSession(),
73
 
                         getSession()->getLex(),
 
72
                         getSession()->lex,
74
73
                         sel_result,
75
74
                         OPTION_SETUP_TABLES_DONE);
76
75
      /*