133
134
#include <google/protobuf/io/coded_stream.h>
134
135
#include <google/protobuf/text_format.h>
136
#include <boost/thread/mutex.hpp>
138
137
using namespace std;
139
138
using namespace drizzled;
141
140
/** to protect innobase_open_files */
142
static boost::mutex innobase_share_mutex;
141
static pthread_mutex_t innobase_share_mutex;
144
142
/** to force correct commit order in binlog */
143
static pthread_mutex_t prepare_commit_mutex;
145
144
static ulong commit_threads = 0;
146
static boost::condition_variable commit_cond;
147
static boost::mutex commit_cond_m;
145
static pthread_mutex_t commit_threads_m;
146
static pthread_cond_t commit_cond;
147
static pthread_mutex_t commit_cond_m;
148
148
static bool innodb_inited = 0;
150
150
#define INSIDE_HA_INNOBASE_CC
160
160
#endif /* MYSQL_DYNAMIC_PLUGIN && __WIN__ */
162
162
static plugin::XaStorageEngine* innodb_engine_ptr= NULL;
163
static plugin::TableFunction* status_table_function_ptr= NULL;
164
static plugin::TableFunction* cmp_tool= NULL;
165
static plugin::TableFunction* cmp_reset_tool= NULL;
166
static plugin::TableFunction* cmp_mem_tool= NULL;
167
static plugin::TableFunction* cmp_mem_reset_tool= NULL;
168
static plugin::TableFunction* innodb_trx_tool= NULL;
169
static plugin::TableFunction* innodb_locks_tool= NULL;
170
static plugin::TableFunction* innodb_lock_waits_tool= NULL;
171
static plugin::TableFunction* innodb_sys_tables_tool= NULL;
172
static plugin::TableFunction* innodb_sys_tablestats_tool= NULL;
174
static plugin::TableFunction* innodb_sys_indexes_tool= NULL;
175
static plugin::TableFunction* innodb_sys_columns_tool= NULL;
176
static plugin::TableFunction* innodb_sys_fields_tool= NULL;
177
static plugin::TableFunction* innodb_sys_foreign_tool= NULL;
178
static plugin::TableFunction* innodb_sys_foreign_cols_tool= NULL;
180
static ReplicationLog *replication_logger= NULL;
164
181
typedef constrained_check<uint32_t, UINT32_MAX, 10> open_files_constraint;
165
182
static open_files_constraint innobase_open_files;
166
183
typedef constrained_check<uint32_t, 10, 1> mirrored_log_groups_constraint;
462
484
UNIV_INTERN int doCreateTable(Session &session,
464
const identifier::Table &identifier,
486
const TableIdentifier &identifier,
465
487
message::Table&);
466
UNIV_INTERN int doRenameTable(Session&, const identifier::Table &from, const identifier::Table &to);
467
UNIV_INTERN int doDropTable(Session &session, const identifier::Table &identifier);
488
UNIV_INTERN int doRenameTable(Session&, const TableIdentifier &from, const TableIdentifier &to);
489
UNIV_INTERN int doDropTable(Session &session, const TableIdentifier &identifier);
469
UNIV_INTERN virtual bool get_error_message(int error, String *buf) const;
491
UNIV_INTERN virtual bool get_error_message(int error, String *buf);
471
493
UNIV_INTERN uint32_t max_supported_keys() const;
472
494
UNIV_INTERN uint32_t max_supported_key_length() const;
485
507
int doGetTableDefinition(drizzled::Session& session,
486
const identifier::Table &identifier,
508
const TableIdentifier &identifier,
487
509
drizzled::message::Table &table_proto);
489
bool doDoesTableExist(drizzled::Session& session, const identifier::Table &identifier);
511
bool doDoesTableExist(drizzled::Session& session, const TableIdentifier &identifier);
491
513
void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
492
const drizzled::identifier::Schema &schema_identifier,
493
drizzled::identifier::Table::vector &set_of_identifiers);
514
const drizzled::SchemaIdentifier &schema_identifier,
515
drizzled::TableIdentifier::vector &set_of_identifiers);
494
516
bool validateCreateTableOption(const std::string &key, const std::string &state);
495
517
void dropTemporarySchema();
520
542
void InnobaseEngine::doGetTableIdentifiers(drizzled::CachedDirectory &directory,
521
const drizzled::identifier::Schema &schema_identifier,
522
drizzled::identifier::Table::vector &set_of_identifiers)
543
const drizzled::SchemaIdentifier &schema_identifier,
544
drizzled::TableIdentifier::vector &set_of_identifiers)
524
546
CachedDirectory::Entries entries= directory.getEntries();
526
std::string search_string(schema_identifier.getSchemaName());
528
boost::algorithm::to_lower(search_string);
530
if (search_string.compare("data_dictionary") == 0)
532
set_of_identifiers.push_back(identifier::Table(schema_identifier.getSchemaName(), "SYS_REPLICATION_LOG"));
535
548
for (CachedDirectory::Entries::iterator entry_iter= entries.begin();
536
549
entry_iter != entries.end(); ++entry_iter)
559
572
Using schema_identifier here to stop unused warning, could use
560
573
definition.schema() instead
562
identifier::Table identifier(schema_identifier.getSchemaName(), definition.name());
575
TableIdentifier identifier(schema_identifier.getSchemaName(), definition.name());
563
576
set_of_identifiers.push_back(identifier);
569
bool InnobaseEngine::doDoesTableExist(Session &session, const identifier::Table &identifier)
582
bool InnobaseEngine::doDoesTableExist(Session &session, const TableIdentifier &identifier)
571
584
string proto_path(identifier.getPath());
572
585
proto_path.append(DEFAULT_FILE_EXTENSION);
960
965
trx_t *trx= session_to_trx(&session);
962
967
uint64_t trx_id= message.transaction_context().transaction_id();
963
uint32_t seg_id= message.segment_id();
964
uint64_t end_timestamp= message.transaction_context().end_timestamp();
965
bool is_end_segment= message.end_segment();
966
trx->log_commit_id= TRUE;
967
ulint error= insert_replication_message(data, message.ByteSize(), trx, trx_id,
968
end_timestamp, is_end_segment, seg_id);
968
ulint error= insert_replication_message(data, message.ByteSize(), trx, trx_id);
1171
1172
innobase_mysql_print_thd(
1172
1173
/*=====================*/
1173
1174
FILE* f, /*!< in: output stream */
1174
drizzled::Session *in_session, /*!< in: pointer to a Drizzle Session object */
1175
void * in_session, /*!< in: pointer to a Drizzle Session object */
1175
1176
uint ) /*!< in: max query length to print, or 0 to
1176
1177
use the default max length */
1178
drizzled::identifier::User::const_shared_ptr user_identifier(in_session->user());
1179
Session *session= reinterpret_cast<Session *>(in_session);
1180
drizzled::identifier::User::const_shared_ptr user_identifier(session->user());
1181
1183
"Drizzle thread %"PRIu64", query id %"PRIu64", %s, %s, %s ",
1182
static_cast<uint64_t>(in_session->getSessionId()),
1183
static_cast<uint64_t>(in_session->getQueryId()),
1184
static_cast<uint64_t>(session->getSessionId()),
1185
static_cast<uint64_t>(session->getQueryId()),
1185
1187
user_identifier->address().c_str(),
1186
1188
user_identifier->username().c_str()
1188
fprintf(f, "\n%s", in_session->getQueryString()->c_str());
1190
fprintf(f, "\n%s", session->getQueryString()->c_str());
1277
1291
return my_isspace(static_cast<const CHARSET_INFO *>(cs), char_to_test);
1296
innobase_fast_mutex_init(
1297
os_fast_mutex_t* fast_mutex)
1299
return pthread_mutex_init(fast_mutex, MY_MUTEX_INIT_FAST);
1302
/**********************************************************************//**
1303
Determines the current SQL statement.
1304
@return SQL statement string */
1309
void* session, /*!< in: MySQL thread handle */
1310
size_t* length) /*!< out: length of the SQL statement */
1312
return static_cast<Session*>(session)->getQueryStringCopy(*length);
1280
1315
#if defined (__WIN__) && defined (MYSQL_DYNAMIC_PLUGIN)
1281
1316
/*******************************************************************//**
1282
1317
Map an OS error to an errno value. The OS error number is stored in
1631
1666
ulint buflen, /*!< in: length of buf, in bytes */
1632
1667
const char* id, /*!< in: identifier to convert */
1633
1668
ulint idlen, /*!< in: length of id, in bytes */
1634
drizzled::Session *session,/*!< in: MySQL connection thread, or NULL */
1669
void* session,/*!< in: MySQL connection thread, or NULL */
1635
1670
ibool file_id)/*!< in: TRUE=id is a table or database name;
1636
1671
FALSE=id is an UTF-8 string */
1717
1752
ulint buflen, /*!< in: length of buf, in bytes */
1718
1753
const char* id, /*!< in: identifier to convert */
1719
1754
ulint idlen, /*!< in: length of id, in bytes */
1720
drizzled::Session *session,/*!< in: MySQL connection thread, or NULL */
1755
void* session,/*!< in: MySQL connection thread, or NULL */
1721
1756
ibool table_id)/*!< in: TRUE=id is a table or database name;
1722
1757
FALSE=id is an index name */
2185
2221
srv_max_file_format_at_startup */
2186
2222
if (innobase_file_format_validate_and_set(innobase_file_format_max.c_str()) < 0)
2188
errmsg_printf(error::ERROR, _("InnoDB: invalid innodb_file_format_max value: "
2189
"should be any value up to %s or its equivalent numeric id"),
2190
trx_sys_file_format_id_to_name(DICT_TF_FORMAT_MAX));
2224
errmsg_printf(ERRMSG_LVL_ERROR, _("InnoDB: invalid "
2225
"innodb_file_format_max value: "
2226
"should be any value up to %s or its "
2227
"equivalent numeric id"),
2228
trx_sys_file_format_id_to_name(DICT_TF_FORMAT_MAX));
2191
2229
goto mem_free_and_error;
2286
2326
innobase_open_tables = hash_create(200);
2327
pthread_mutex_init(&innobase_share_mutex, MY_MUTEX_INIT_FAST);
2328
pthread_mutex_init(&prepare_commit_mutex, MY_MUTEX_INIT_FAST);
2329
pthread_mutex_init(&commit_threads_m, MY_MUTEX_INIT_FAST);
2330
pthread_mutex_init(&commit_cond_m, MY_MUTEX_INIT_FAST);
2331
pthread_cond_init(&commit_cond, NULL);
2287
2332
innodb_inited= 1;
2289
2334
actuall_engine_ptr->dropTemporarySchema();
2291
context.add(new InnodbStatusTool);
2336
status_table_function_ptr= new InnodbStatusTool;
2293
2338
context.add(innodb_engine_ptr);
2295
context.add(new(std::nothrow)CmpTool(false));
2297
context.add(new(std::nothrow)CmpTool(true));
2299
context.add(new(std::nothrow)CmpmemTool(false));
2301
context.add(new(std::nothrow)CmpmemTool(true));
2303
context.add(new(std::nothrow)InnodbTrxTool("INNODB_TRX"));
2305
context.add(new(std::nothrow)InnodbTrxTool("INNODB_LOCKS"));
2307
context.add(new(std::nothrow)InnodbTrxTool("INNODB_LOCK_WAITS"));
2309
context.add(new(std::nothrow)InnodbSysTablesTool());
2311
context.add(new(std::nothrow)InnodbSysTableStatsTool());
2313
context.add(new(std::nothrow)InnodbSysIndexesTool());
2315
context.add(new(std::nothrow)InnodbSysColumnsTool());
2317
context.add(new(std::nothrow)InnodbSysFieldsTool());
2319
context.add(new(std::nothrow)InnodbSysForeignTool());
2321
context.add(new(std::nothrow)InnodbSysForeignColsTool());
2340
context.add(status_table_function_ptr);
2342
cmp_tool= new(std::nothrow)CmpTool(false);
2343
context.add(cmp_tool);
2345
cmp_reset_tool= new(std::nothrow)CmpTool(true);
2346
context.add(cmp_reset_tool);
2348
cmp_mem_tool= new(std::nothrow)CmpmemTool(false);
2349
context.add(cmp_mem_tool);
2351
cmp_mem_reset_tool= new(std::nothrow)CmpmemTool(true);
2352
context.add(cmp_mem_reset_tool);
2354
innodb_trx_tool= new(std::nothrow)InnodbTrxTool("INNODB_TRX");
2355
context.add(innodb_trx_tool);
2357
innodb_locks_tool= new(std::nothrow)InnodbTrxTool("INNODB_LOCKS");
2358
context.add(innodb_locks_tool);
2360
innodb_lock_waits_tool= new(std::nothrow)InnodbTrxTool("INNODB_LOCK_WAITS");
2361
context.add(innodb_lock_waits_tool);
2363
innodb_sys_tables_tool= new(std::nothrow)InnodbSysTablesTool();
2364
context.add(innodb_sys_tables_tool);
2366
innodb_sys_tablestats_tool= new(std::nothrow)InnodbSysTableStatsTool();
2367
context.add(innodb_sys_tablestats_tool);
2369
innodb_sys_indexes_tool= new(std::nothrow)InnodbSysIndexesTool();
2370
context.add(innodb_sys_indexes_tool);
2372
innodb_sys_columns_tool= new(std::nothrow)InnodbSysColumnsTool();
2373
context.add(innodb_sys_columns_tool);
2375
innodb_sys_fields_tool= new(std::nothrow)InnodbSysFieldsTool();
2376
context.add(innodb_sys_fields_tool);
2378
innodb_sys_foreign_tool= new(std::nothrow)InnodbSysForeignTool();
2379
context.add(innodb_sys_foreign_tool);
2381
innodb_sys_foreign_cols_tool= new(std::nothrow)InnodbSysForeignColsTool();
2382
context.add(innodb_sys_foreign_cols_tool);
2323
2384
context.add(new(std::nothrow)InnodbInternalTables());
2324
2385
context.add(new(std::nothrow)InnodbReplicationTable());
2326
2387
if (innobase_use_replication_log)
2328
ReplicationLog *replication_logger= new(std::nothrow)ReplicationLog();
2389
replication_logger= new(std::nothrow)ReplicationLog();
2329
2390
context.add(replication_logger);
2330
2391
ReplicationLog::setup(replication_logger);
2513
2573
trx_search_latch_release_if_reserved(trx);
2577
|| (!session_test_options(session, OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN))) {
2518
2579
/* We were instructed to commit the whole transaction, or
2519
2580
this is an SQL statement end and autocommit is on */
2521
2582
/* We need current binlog position for ibbackup to work.
2522
2583
Note, the position is current because of
2523
2584
prepare_commit_mutex */
2524
const uint32_t commit_concurrency= innobase_commit_concurrency.get();
2525
if (commit_concurrency)
2529
boost::mutex::scoped_lock scopedLock(commit_cond_m);
2532
if (commit_threads <= commit_concurrency)
2586
if (innobase_commit_concurrency.get() > 0) {
2587
pthread_mutex_lock(&commit_cond_m);
2590
if (commit_threads > innobase_commit_concurrency.get()) {
2535
2591
commit_threads--;
2536
commit_cond.wait(scopedLock);
2592
pthread_cond_wait(&commit_cond,
2594
pthread_mutex_unlock(&commit_cond_m);
2598
pthread_mutex_unlock(&commit_cond_m);
2540
2602
trx->mysql_log_file_name = NULL;
2942
/*****************************************************************//**
2943
Normalizes a table name string. A normalized name consists of the
2944
database name catenated to '/' and table name. An example:
2945
test/mytable. On Windows normalization puts both the database name and the
2946
table name always to lower case. */
2949
normalize_table_name(
2950
/*=================*/
2951
char* norm_name, /*!< out: normalized name as a
2952
null-terminated string */
2953
const char* name) /*!< in: table name string */
2955
const char* name_ptr;
2959
/* Scan name from the end */
2961
ptr = strchr(name, '\0')-1;
2963
while (ptr >= name && *ptr != '\\' && *ptr != '/') {
2973
while (ptr >= name && *ptr != '\\' && *ptr != '/') {
2979
memcpy(norm_name, db_ptr, strlen(name) + 1 - (db_ptr - name));
2981
norm_name[name_ptr - db_ptr - 1] = '/';
2984
innobase_casedn_str(norm_name);
2879
2988
/********************************************************************//**
2880
2989
Get the upper limit of the MySQL integral and floating-point type.
2881
2990
@return maximum allowed value for the field */
3042
3151
if (!index_mapping) {
3043
3152
/* Report an error if index_mapping continues to be
3044
3153
NULL and mysql_num_index is a non-zero value */
3045
errmsg_printf(error::ERROR, "InnoDB: fail to allocate memory for "
3046
"index translation table. Number of Index:%lu, array size:%lu",
3154
errmsg_printf(ERRMSG_LVL_ERROR,
3155
"InnoDB: fail to allocate memory for "
3156
"index translation table. Number of "
3157
"Index:%lu, array size:%lu",
3047
3158
mysql_num_index,
3048
3159
share->idx_trans_tbl.array_size);
3064
3175
ib_table, table->key_info[count].name);
3066
3177
if (!index_mapping[count]) {
3067
errmsg_printf(error::ERROR, "Cannot find index %s in InnoDB index dictionary.",
3068
table->key_info[count].name);
3178
errmsg_printf(ERRMSG_LVL_ERROR, "Cannot find index %s in InnoDB "
3179
"index dictionary.",
3180
table->key_info[count].name);
3070
3182
goto func_exit;
3073
3185
/* Double check fetched index has the same
3074
3186
column info as those in mysql key_info. */
3075
if (!innobase_match_index_columns(&table->key_info[count], index_mapping[count])) {
3076
errmsg_printf(error::ERROR, "Found index %s whose column info does not match that of MySQL.",
3077
table->key_info[count].name);
3187
if (!innobase_match_index_columns(&table->key_info[count],
3188
index_mapping[count])) {
3189
errmsg_printf(ERRMSG_LVL_ERROR, "Found index %s whose column info "
3190
"does not match that of MySQL.",
3191
table->key_info[count].name);
3197
3312
case DB_RECORD_NOT_FOUND:
3198
3313
ut_print_timestamp(stderr);
3199
errmsg_printf(error::ERROR, "InnoDB: MySQL and InnoDB data dictionaries are out of sync.\n"
3200
"InnoDB: Unable to find the AUTOINC column %s in the InnoDB table %s.\n"
3201
"InnoDB: We set the next AUTOINC column value to 0,\n"
3202
"InnoDB: in effect disabling the AUTOINC next value generation.\n"
3203
"InnoDB: You can either set the next AUTOINC value explicitly using ALTER TABLE\n"
3204
"InnoDB: or fix the data dictionary by recreating the table.\n",
3205
col_name, index->table->name);
3314
fprintf(stderr, " InnoDB: MySQL and InnoDB data "
3315
"dictionaries are out of sync.\n"
3316
"InnoDB: Unable to find the AUTOINC column "
3317
"%s in the InnoDB table %s.\n"
3318
"InnoDB: We set the next AUTOINC column "
3320
"InnoDB: in effect disabling the AUTOINC "
3321
"next value generation.\n"
3322
"InnoDB: You can either set the next "
3323
"AUTOINC value explicitly using ALTER TABLE\n"
3324
"InnoDB: or fix the data dictionary by "
3325
"recreating the table.\n",
3326
col_name, index->table->name);
3207
3328
/* This will disable the AUTOINC generation. */
3247
3369
getTransactionalEngine()->releaseTemporaryLatches(session);
3372
normalize_table_name(norm_name, identifier.getPath().c_str());
3250
3374
user_session = NULL;
3252
std::string search_string(identifier.getSchemaName());
3253
boost::algorithm::to_lower(search_string);
3376
if (!(share=get_share(identifier.getPath().c_str()))) {
3255
if (search_string.compare("data_dictionary") == 0)
3257
std::string table_name(identifier.getTableName());
3258
boost::algorithm::to_upper(table_name);
3259
if (!(share=get_share(table_name.c_str())))
3266
if (!(share=get_share(identifier.getKeyPath().c_str())))
3272
3381
/* Create buffers for packing the fields of a record. Why
3295
3404
/* Get pointer to a table object in InnoDB dictionary cache */
3296
if (search_string.compare("data_dictionary") == 0)
3298
std::string table_name(identifier.getTableName());
3299
boost::algorithm::to_upper(table_name);
3300
ib_table = dict_table_get(table_name.c_str(), TRUE);
3304
ib_table = dict_table_get(identifier.getKeyPath().c_str(), TRUE);
3405
ib_table = dict_table_get(norm_name, TRUE);
3307
3407
if (NULL == ib_table) {
3308
errmsg_printf(error::ERROR, "Cannot find or open table %s from\n"
3408
errmsg_printf(ERRMSG_LVL_ERROR, "Cannot find or open table %s from\n"
3309
3409
"the internal data dictionary of InnoDB "
3310
3410
"though the .frm file for the\n"
3311
3411
"table exists. Maybe you have deleted and "
3328
3428
return(HA_ERR_NO_SUCH_TABLE);
3331
if (ib_table->ibd_file_missing && ! session->doing_tablespace_operation()) {
3332
errmsg_printf(error::ERROR, "MySQL is trying to open a table handle but "
3431
if (ib_table->ibd_file_missing && !session_tablespace_op(session)) {
3432
errmsg_printf(ERRMSG_LVL_ERROR, "MySQL is trying to open a table handle but "
3333
3433
"the .ibd file for\ntable %s does not exist.\n"
3334
3434
"Have you deleted the .ibd file from the "
3335
3435
"database directory under\nthe MySQL datadir, "
3336
3436
"or have you used DISCARD TABLESPACE?\n"
3337
3437
"See " REFMAN "innodb-troubleshooting.html\n"
3338
3438
"how you can resolve the problem.\n",
3339
identifier.getKeyPath().c_str());
3340
3440
free_share(share);
3341
3441
upd_buff.resize(0);
3342
3442
key_val_buff.resize(0);
3358
3458
key_used_on_scan = primary_key;
3360
3460
if (!innobase_build_index_translation(getTable(), ib_table, share)) {
3361
errmsg_printf(error::ERROR, "Build InnoDB index translation table for"
3362
" Table %s failed", identifier.getKeyPath().c_str());
3461
errmsg_printf(ERRMSG_LVL_ERROR, "Build InnoDB index translation table for"
3462
" Table %s failed", identifier.getPath().c_str());
3365
3465
/* Allocate a buffer for a 'row reference'. A row reference is
6177
6277
if (lex_identified_temp_table)
6178
6278
iflags |= DICT_TF2_TEMPORARY << DICT_TF2_SHIFT;
6180
error= create_table_def(trx, &form, identifier.getKeyPath().c_str(),
6181
lex_identified_temp_table ? identifier.getKeyPath().c_str() : NULL,
6280
error= create_table_def(trx, &form, norm_name,
6281
lex_identified_temp_table ? name2 : NULL,
6184
6284
session.setXaId(trx->id);
6211
6311
for (i = 0; i < form.getShare()->sizeKeys(); i++) {
6212
6312
if (i != (uint) primary_key_no) {
6214
if ((error = create_index(trx, &form, iflags, identifier.getKeyPath().c_str(),
6314
if ((error = create_index(trx, &form, iflags, norm_name,
6221
stmt= session.getQueryStringCopy(stmt_len);
6321
stmt = innobase_get_stmt(&session, &stmt_len);
6224
6324
string generated_create_table;
6225
6325
const char *query= stmt;
6227
if (session.getSqlCommand() == SQLCOM_CREATE_TABLE)
6327
if (session_sql_command(&session) == SQLCOM_CREATE_TABLE)
6229
6329
message::transformTableDefinitionToSql(create_proto,
6230
6330
generated_create_table,
6427
6527
InnobaseEngine::doDropTable(
6428
6528
/*======================*/
6429
6529
Session &session,
6430
const identifier::Table &identifier)
6530
const TableIdentifier &identifier)
6433
6533
trx_t* parent_trx;
6535
char norm_name[1000];
6436
6537
ut_a(identifier.getPath().length() < 1000);
6438
std::string search_string(identifier.getSchemaName());
6439
boost::algorithm::to_lower(search_string);
6441
if (search_string.compare("data_dictionary") == 0)
6443
return HA_ERR_TABLE_READONLY;
6539
/* Strangely, MySQL passes the table name without the '.frm'
6540
extension, in contrast to ::create */
6541
normalize_table_name(norm_name, identifier.getPath().c_str());
6446
6543
/* Get the transaction associated with the current session, or create one
6447
6544
if not yet created */
6608
6705
innobase_rename_table(
6609
6706
/*==================*/
6610
6707
trx_t* trx, /*!< in: transaction */
6611
const identifier::Table &from,
6612
const identifier::Table &to,
6708
const char* from, /*!< in: old name of the table */
6709
const char* to, /*!< in: new name of the table */
6613
6710
ibool lock_and_commit)
6614
6711
/*!< in: TRUE=lock data dictionary and commit */
6714
char norm_to[FN_REFLEN];
6715
char norm_from[FN_REFLEN];
6618
6717
srv_lower_case_table_names = TRUE;
6719
normalize_table_name(norm_to, to);
6720
normalize_table_name(norm_from, from);
6620
6722
/* Serialize data dictionary operations with dictionary mutex:
6621
6723
no deadlocks can occur then in these operations */
6624
6726
row_mysql_lock_data_dictionary(trx);
6627
error = row_rename_table_for_mysql(from.getKeyPath().c_str(), to.getKeyPath().c_str(), trx, lock_and_commit);
6729
error = row_rename_table_for_mysql(
6730
norm_from, norm_to, trx, lock_and_commit);
6629
6732
if (error != DB_SUCCESS) {
6630
6733
FILE* ef = dict_foreign_err_file;
6632
6735
fputs("InnoDB: Renaming table ", ef);
6633
ut_print_name(ef, trx, TRUE, from.getKeyPath().c_str());
6736
ut_print_name(ef, trx, TRUE, norm_from);
6634
6737
fputs(" to ", ef);
6635
ut_print_name(ef, trx, TRUE, to.getKeyPath().c_str());
6738
ut_print_name(ef, trx, TRUE, norm_to);
6636
6739
fputs(" failed!\n", ef);
7678
7781
db_name[i] = 0;
7679
ulen= identifier::Table::filename_to_tablename(db_name, uname, sizeof(uname));
7782
ulen= TableIdentifier::filename_to_tablename(db_name, uname, sizeof(uname));
7680
7783
LEX_STRING *tmp_referenced_db = session->make_lex_string(NULL, uname, ulen, true);
7682
7785
/* Table name */
7683
7786
tmp_buff += i + 1;
7684
ulen= identifier::Table::filename_to_tablename(tmp_buff, uname, sizeof(uname));
7787
ulen= TableIdentifier::filename_to_tablename(tmp_buff, uname, sizeof(uname));
7685
7788
LEX_STRING *tmp_referenced_table = session->make_lex_string(NULL, uname, ulen, true);
7687
7790
/** Foreign Fields **/
9148
9255
"Purge threads can be either 0 or 1. Defalut is 0.");
9149
9256
context("file-per-table",
9150
9257
po::value<bool>(&srv_file_per_table)->default_value(false)->zero_tokens(),
9151
"Stores each InnoDB table to an .ibd file in the database dir.");
9258
"Stores each InnoDB table to an .ibd file in the database dir.");
9259
context("file-format",
9260
po::value<string>(&innobase_file_format_name)->default_value("Antelope"),
9261
"File format to use for new tables in .ibd files.");
9152
9262
context("file-format-max",
9153
9263
po::value<string>(&innobase_file_format_max)->default_value("Antelope"),
9154
9264
"The highest file format in the tablespace.");
9155
9265
context("file-format-check",
9156
9266
po::value<bool>(&innobase_file_format_check)->default_value(true)->zero_tokens(),
9157
9267
"Whether to perform system file format check.");
9158
context("file-format",
9159
po::value<string>(&innobase_file_format_name)->default_value("Antelope"),
9160
"File format to use for new tables in .ibd files.");
9161
9268
context("flush-log-at-trx-commit",
9162
9269
po::value<trinary_constraint>(&innodb_flush_log_at_trx_commit)->default_value(1),
9163
9270
"Set to 0 (write and flush once per second), 1 (write and flush at each commit) or 2 (write at commit, flush once per second).");