~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/rename_table.cc

updating to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
bool statement::RenameTable::execute()
33
33
{
34
 
  TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
35
 
  TableList *all_tables= session->lex->query_tables;
 
34
  TableList *first_table= (TableList *) getSession()->lex->select_lex.table_list.first;
 
35
  TableList *all_tables= getSession()->lex->query_tables;
36
36
  assert(first_table == all_tables && first_table != 0);
37
37
  TableList *table;
38
38
 
39
 
  if (session->inTransaction())
 
39
  if (getSession()->inTransaction())
40
40
  {
41
41
    my_error(ER_TRANSACTIONAL_DDL_NOT_SUPPORTED, MYF(0));
42
42
    return true;
57
57
  {
58
58
    return true;
59
59
  }
 
60
 
60
61
  return false;
61
62
}
62
63
 
69
70
    Avoid problems with a rename on a table that we have locked or
70
71
    if the user is trying to to do this in a transcation context
71
72
  */
72
 
  if (session->inTransaction())
 
73
  if (getSession()->inTransaction())
73
74
  {
74
75
    my_message(ER_LOCK_OR_ACTIVE_TRANSACTION, ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0));
75
76
    return true;
76
77
  }
77
78
 
78
 
  if (session->wait_if_global_read_lock(false, true))
 
79
  if (getSession()->wait_if_global_read_lock(false, true))
79
80
    return true;
80
81
 
81
82
  {
82
83
    boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex()); /* Rename table lock for exclusive access */
83
84
 
84
 
    if (not session->lock_table_names_exclusively(table_list))
 
85
    if (not getSession()->lock_table_names_exclusively(table_list))
85
86
    {
86
87
      error= false;
87
88
      ren_table= renameTablesInList(table_list, false);
114
115
  /* Lets hope this doesn't fail as the result will be messy */
115
116
  if (not error)
116
117
  {
117
 
    write_bin_log(session, *session->getQueryString());
118
 
    session->my_ok();
 
118
    write_bin_log(getSession(), *getSession()->getQueryString());
 
119
    getSession()->my_ok();
119
120
  }
120
121
 
121
 
  session->startWaitingGlobalReadLock();
 
122
  getSession()->startWaitingGlobalReadLock();
122
123
 
123
124
  return error;
124
125
}
155
156
 
156
157
  identifier::Table old_identifier(ren_table->getSchemaName(), old_alias, message::Table::STANDARD);
157
158
 
158
 
  if (plugin::StorageEngine::getTableDefinition(*session, old_identifier, table_proto) != EEXIST)
 
159
  if (plugin::StorageEngine::getTableDefinition(*getSession(), old_identifier, table_proto) != EEXIST)
159
160
  {
160
161
    my_error(ER_NO_SUCH_TABLE, MYF(0), ren_table->getSchemaName(), old_alias);
161
162
    return true;
162
163
  }
163
164
 
164
 
  engine= plugin::StorageEngine::findByName(*session, table_proto->engine().name());
 
165
  engine= plugin::StorageEngine::findByName(*getSession(), table_proto->engine().name());
165
166
 
166
167
  identifier::Table new_identifier(new_db, new_alias, message::Table::STANDARD);
167
 
  if (plugin::StorageEngine::doesTableExist(*session, new_identifier))
 
168
  if (plugin::StorageEngine::doesTableExist(*getSession(), new_identifier))
168
169
  {
169
170
    my_error(ER_TABLE_EXISTS_ERROR, MYF(0), new_alias);
170
171
    return 1; // This can't be skipped
171
172
  }
172
173
 
173
 
  rc= rename_table(*session, engine, old_identifier, new_identifier);
 
174
  rc= rename_table(*getSession(), engine, old_identifier, new_identifier);
174
175
  if (rc && ! skip_error)
175
176
    return true;
176
177