2010-07-15 17:44:45 -06:00
|
|
|
/* Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
|
2010-01-11 18:47:27 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2010-07-15 17:44:45 -06:00
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
|
2010-01-11 18:47:27 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
@file storage/perfschema/ha_perfschema.cc
|
|
|
|
Performance schema storage engine (implementation).
|
|
|
|
*/
|
|
|
|
|
2010-07-15 17:44:45 -06:00
|
|
|
#include "my_global.h"
|
|
|
|
#include "my_pthread.h"
|
2010-09-10 11:10:38 +02:00
|
|
|
#include "my_atomic.h"
|
2010-07-15 17:44:45 -06:00
|
|
|
#include "sql_plugin.h"
|
2010-01-11 18:47:27 -07:00
|
|
|
#include "mysql/plugin.h"
|
2010-07-15 17:44:45 -06:00
|
|
|
#include "ha_perfschema.h"
|
2010-01-11 18:47:27 -07:00
|
|
|
#include "pfs_engine_table.h"
|
|
|
|
#include "pfs_column_values.h"
|
|
|
|
#include "pfs_instr_class.h"
|
|
|
|
#include "pfs_instr.h"
|
|
|
|
|
2010-09-09 14:28:47 -06:00
|
|
|
#ifdef MY_ATOMIC_MODE_DUMMY
|
|
|
|
/*
|
|
|
|
The performance schema can can not function with MY_ATOMIC_MODE_DUMMY,
|
|
|
|
a fully functional implementation of MY_ATOMIC should be used instead.
|
|
|
|
If the build fails with this error message:
|
|
|
|
- either use a different ./configure --with-atomic-ops option
|
|
|
|
- or do not build with the performance schema.
|
|
|
|
*/
|
|
|
|
#error "The performance schema needs a functional MY_ATOMIC implementation."
|
|
|
|
#endif
|
|
|
|
|
2010-01-11 18:47:27 -07:00
|
|
|
handlerton *pfs_hton= NULL;
|
|
|
|
|
|
|
|
static handler* pfs_create_handler(handlerton *hton,
|
|
|
|
TABLE_SHARE *table,
|
|
|
|
MEM_ROOT *mem_root)
|
|
|
|
{
|
|
|
|
return new (mem_root) ha_perfschema(hton, table);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int compare_database_names(const char *name1, const char *name2)
|
|
|
|
{
|
|
|
|
if (lower_case_table_names)
|
|
|
|
return strcasecmp(name1, name2);
|
|
|
|
return strcmp(name1, name2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const PFS_engine_table_share*
|
|
|
|
find_table_share(const char *db, const char *name)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("find_table_share");
|
|
|
|
|
|
|
|
if (compare_database_names(db, PERFORMANCE_SCHEMA_str.str) != 0)
|
|
|
|
DBUG_RETURN(NULL);
|
|
|
|
|
|
|
|
const PFS_engine_table_share* result;
|
|
|
|
result= PFS_engine_table::find_engine_table_share(name);
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pfs_init_func(void *p)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("pfs_init_func");
|
|
|
|
|
|
|
|
pfs_hton= reinterpret_cast<handlerton *> (p);
|
|
|
|
|
|
|
|
pfs_hton->state= SHOW_OPTION_YES;
|
|
|
|
pfs_hton->create= pfs_create_handler;
|
|
|
|
pfs_hton->show_status= pfs_show_status;
|
|
|
|
pfs_hton->flags= HTON_ALTER_NOT_SUPPORTED |
|
|
|
|
HTON_TEMPORARY_NOT_SUPPORTED |
|
|
|
|
HTON_NO_PARTITION;
|
|
|
|
|
|
|
|
/*
|
|
|
|
As long as the server implementation keeps using legacy_db_type,
|
|
|
|
as for example in mysql_truncate(),
|
|
|
|
we can not rely on the fact that different mysqld process will assign
|
|
|
|
consistently the same legacy_db_type for a given storage engine name.
|
|
|
|
In particular, using different --loose-skip-xxx options between
|
|
|
|
./mysqld --bootstrap
|
|
|
|
./mysqld
|
|
|
|
creates bogus .frm forms when bootstrapping the performance schema,
|
|
|
|
if we rely on ha_initialize_handlerton to assign a really dynamic value.
|
|
|
|
To fix this, a dedicated DB_TYPE is officially assigned to
|
|
|
|
the performance schema. See Bug#43039.
|
|
|
|
*/
|
|
|
|
pfs_hton->db_type= DB_TYPE_PERFORMANCE_SCHEMA;
|
|
|
|
|
|
|
|
PFS_engine_table_share::init_all_locks();
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pfs_done_func(void *p)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("pfs_done_func");
|
|
|
|
|
|
|
|
pfs_hton= NULL;
|
|
|
|
|
|
|
|
PFS_engine_table_share::delete_all_locks();
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct st_mysql_show_var pfs_status_vars[]=
|
|
|
|
{
|
|
|
|
{"Performance_schema_mutex_classes_lost",
|
|
|
|
(char*) &mutex_class_lost, SHOW_LONG_NOFLUSH},
|
|
|
|
{"Performance_schema_rwlock_classes_lost",
|
|
|
|
(char*) &rwlock_class_lost, SHOW_LONG_NOFLUSH},
|
|
|
|
{"Performance_schema_cond_classes_lost",
|
|
|
|
(char*) &cond_class_lost, SHOW_LONG_NOFLUSH},
|
|
|
|
{"Performance_schema_thread_classes_lost",
|
|
|
|
(char*) &thread_class_lost, SHOW_LONG_NOFLUSH},
|
|
|
|
{"Performance_schema_file_classes_lost",
|
|
|
|
(char*) &file_class_lost, SHOW_LONG_NOFLUSH},
|
|
|
|
{"Performance_schema_mutex_instances_lost",
|
|
|
|
(char*) &mutex_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_rwlock_instances_lost",
|
|
|
|
(char*) &rwlock_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_cond_instances_lost",
|
|
|
|
(char*) &cond_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_thread_instances_lost",
|
|
|
|
(char*) &thread_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_file_instances_lost",
|
|
|
|
(char*) &file_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_file_handles_lost",
|
|
|
|
(char*) &file_handle_lost, SHOW_LONG},
|
|
|
|
{"Performance_schema_locker_lost",
|
|
|
|
(char*) &locker_lost, SHOW_LONG},
|
|
|
|
/* table shares, can be flushed */
|
|
|
|
{"Performance_schema_table_instances_lost",
|
|
|
|
(char*) &table_share_lost, SHOW_LONG},
|
|
|
|
/* table handles, can be flushed */
|
|
|
|
{"Performance_schema_table_handles_lost",
|
|
|
|
(char*) &table_lost, SHOW_LONG},
|
|
|
|
{NullS, NullS, SHOW_LONG}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct st_mysql_storage_engine pfs_storage_engine=
|
|
|
|
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
|
|
|
|
|
|
|
|
const char* pfs_engine_name= "PERFORMANCE_SCHEMA";
|
|
|
|
|
|
|
|
mysql_declare_plugin(perfschema)
|
|
|
|
{
|
|
|
|
MYSQL_STORAGE_ENGINE_PLUGIN,
|
|
|
|
&pfs_storage_engine,
|
|
|
|
pfs_engine_name,
|
2010-07-15 17:44:45 -06:00
|
|
|
"Marc Alff, Oracle", /* Formerly Sun Microsystems, formerly MySQL */
|
2010-01-11 18:47:27 -07:00
|
|
|
"Performance Schema",
|
|
|
|
PLUGIN_LICENSE_GPL,
|
|
|
|
pfs_init_func, /* Plugin Init */
|
|
|
|
pfs_done_func, /* Plugin Deinit */
|
|
|
|
0x0001 /* 0.1 */,
|
|
|
|
pfs_status_vars, /* status variables */
|
|
|
|
NULL, /* system variables */
|
|
|
|
NULL /* config options */
|
|
|
|
}
|
|
|
|
mysql_declare_plugin_end;
|
|
|
|
|
|
|
|
ha_perfschema::ha_perfschema(handlerton *hton, TABLE_SHARE *share)
|
|
|
|
: handler(hton, share), m_table_share(NULL), m_table(NULL)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ha_perfschema::~ha_perfschema()
|
|
|
|
{}
|
|
|
|
|
|
|
|
static const char *ha_pfs_exts[]= {
|
|
|
|
NullS
|
|
|
|
};
|
|
|
|
|
|
|
|
const char **ha_perfschema::bas_ext() const
|
|
|
|
{
|
|
|
|
return ha_pfs_exts;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::open(const char *name, int mode, uint test_if_locked)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::open");
|
|
|
|
|
|
|
|
m_table_share= find_table_share(table_share->db.str,
|
|
|
|
table_share->table_name.str);
|
|
|
|
if (! m_table_share)
|
|
|
|
DBUG_RETURN(HA_ERR_NO_SUCH_TABLE);
|
|
|
|
|
|
|
|
thr_lock_data_init(m_table_share->m_thr_lock_ptr, &m_thr_lock, NULL);
|
|
|
|
ref_length= m_table_share->m_ref_length;
|
|
|
|
|
|
|
|
psi_open();
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::close(void)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::close");
|
|
|
|
m_table_share= NULL;
|
|
|
|
delete m_table;
|
|
|
|
m_table= NULL;
|
|
|
|
|
|
|
|
psi_close();
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::write_row(uchar *buf)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
DBUG_ENTER("ha_perfschema::write_row");
|
|
|
|
|
|
|
|
ha_statistic_increment(&SSV::ha_write_count);
|
|
|
|
DBUG_ASSERT(m_table_share);
|
|
|
|
|
|
|
|
if (m_table_share->m_write_row)
|
|
|
|
result= m_table_share->m_write_row(table, buf, table->field);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
my_error(ER_WRONG_PERFSCHEMA_USAGE, MYF(0));
|
|
|
|
result= HA_ERR_WRONG_COMMAND;
|
|
|
|
}
|
|
|
|
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ha_perfschema::use_hidden_primary_key(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
This is also called in case of row based replication,
|
|
|
|
see TABLE::mark_columns_needed_for_update().
|
|
|
|
Add all columns to the read set, but do not touch the write set,
|
|
|
|
as some columns in the SETUP_ tables are not writable.
|
|
|
|
*/
|
|
|
|
table->column_bitmaps_set_no_signal(&table->s->all_set, table->write_set);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::update_row(const uchar *old_data, uchar *new_data)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::update_row");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table);
|
|
|
|
int result= m_table->update_row(table, old_data, new_data, table->field);
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::rnd_init(bool scan)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
DBUG_ENTER("ha_perfschema::rnd_init");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table_share);
|
|
|
|
DBUG_ASSERT(m_table_share->m_open_table != NULL);
|
|
|
|
|
|
|
|
stats.records= 0;
|
|
|
|
if (m_table == NULL)
|
|
|
|
m_table= m_table_share->m_open_table();
|
|
|
|
else
|
|
|
|
m_table->reset_position();
|
|
|
|
|
|
|
|
result= m_table ? 0 : HA_ERR_OUT_OF_MEM;
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::rnd_end(void)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::rnd_end");
|
|
|
|
DBUG_ASSERT(m_table);
|
|
|
|
delete m_table;
|
|
|
|
m_table= NULL;
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::rnd_next(uchar *buf)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::rnd_next");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table);
|
|
|
|
int result= m_table->rnd_next();
|
|
|
|
if (result == 0)
|
|
|
|
{
|
|
|
|
result= m_table->read_row(table, buf, table->field);
|
|
|
|
if (result == 0)
|
|
|
|
stats.records++;
|
|
|
|
}
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ha_perfschema::position(const uchar *record)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::position");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table);
|
|
|
|
m_table->get_position(ref);
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::rnd_pos(uchar *buf, uchar *pos)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::rnd_pos");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table);
|
|
|
|
int result= m_table->rnd_pos(pos);
|
|
|
|
if (result == 0)
|
|
|
|
result= m_table->read_row(table, buf, table->field);
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::info(uint flag)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::info");
|
|
|
|
DBUG_ASSERT(m_table_share);
|
|
|
|
if (flag & HA_STATUS_VARIABLE)
|
|
|
|
stats.records= m_table_share->m_records;
|
|
|
|
if (flag & HA_STATUS_CONST)
|
|
|
|
ref_length= m_table_share->m_ref_length;
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::delete_all_rows(void)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
DBUG_ENTER("ha_perfschema::delete_all_rows");
|
|
|
|
|
|
|
|
DBUG_ASSERT(m_table_share);
|
|
|
|
if (m_table_share->m_delete_all_rows)
|
|
|
|
result= m_table_share->m_delete_all_rows();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
my_error(ER_WRONG_PERFSCHEMA_USAGE, MYF(0));
|
|
|
|
result= HA_ERR_WRONG_COMMAND;
|
|
|
|
}
|
|
|
|
DBUG_RETURN(result);
|
|
|
|
}
|
|
|
|
|
Bug#49938: Failing assertion: inode or deadlock in fsp/fsp0fsp.c
Bug#54678: InnoDB, TRUNCATE, ALTER, I_S SELECT, crash or deadlock
- Incompatible change: truncate no longer resorts to a row by
row delete if the storage engine does not support the truncate
method. Consequently, the count of affected rows does not, in
any case, reflect the actual number of rows.
- Incompatible change: it is no longer possible to truncate a
table that participates as a parent in a foreign key constraint,
unless it is a self-referencing constraint (both parent and child
are in the same table). To work around this incompatible change
and still be able to truncate such tables, disable foreign checks
with SET foreign_key_checks=0 before truncate. Alternatively, if
foreign key checks are necessary, please use a DELETE statement
without a WHERE condition.
Problem description:
The problem was that for storage engines that do not support
truncate table via a external drop and recreate, such as InnoDB
which implements truncate via a internal drop and recreate, the
delete_all_rows method could be invoked with a shared metadata
lock, causing problems if the engine needed exclusive access
to some internal metadata. This problem originated with the
fact that there is no truncate specific handler method, which
ended up leading to a abuse of the delete_all_rows method that
is primarily used for delete operations without a condition.
Solution:
The solution is to introduce a truncate handler method that is
invoked when the engine does not support truncation via a table
drop and recreate. This method is invoked under a exclusive
metadata lock, so that there is only a single instance of the
table when the method is invoked.
Also, the method is not invoked and a error is thrown if
the table is a parent in a non-self-referencing foreign key
relationship. This was necessary to avoid inconsistency as
some integrity checks are bypassed. This is inline with the
fact that truncate is primarily a DDL operation that was
designed to quickly remove all data from a table.
mysql-test/suite/innodb/t/innodb-truncate.test:
Add test cases for truncate and foreign key checks.
Also test that InnoDB resets auto-increment on truncate.
mysql-test/suite/innodb/t/innodb.test:
FK is not necessary, test is related to auto-increment.
Update error number, truncate is no longer invoked if
table is parent in a FK relationship.
mysql-test/suite/innodb/t/innodb_mysql.test:
Update error number, truncate is no longer invoked if
table is parent in a FK relationship.
Use delete instead of truncate, test is used to check
the interaction of FKs, triggers and delete.
mysql-test/suite/parts/inc/partition_check.inc:
Fix typo.
mysql-test/suite/sys_vars/t/foreign_key_checks_func.test:
Update error number, truncate is no longer invoked if
table is parent in a FK relationship.
mysql-test/t/mdl_sync.test:
Modify test case to reflect and ensure that truncate takes
a exclusive metadata lock.
mysql-test/t/trigger-trans.test:
Update error number, truncate is no longer invoked if
table is parent in a FK relationship.
sql/ha_partition.cc:
Reorganize the various truncate methods. delete_all_rows is now
passed directly to the underlying engines, so as truncate. The
code responsible for truncating individual partitions is moved
to ha_partition::truncate_partition, which is invoked when a
ALTER TABLE t1 TRUNCATE PARTITION p statement is executed.
Since the partition truncate no longer can be invoked via
delete, the bitmap operations are not necessary anymore. The
explicit reset of the auto-increment value is also removed
as the underlying engines are now responsible for reseting
the value.
sql/handler.cc:
Wire up the handler truncate method.
sql/handler.h:
Introduce and document the truncate handler method. It assumes
certain use cases of delete_all_rows.
Add method to retrieve the list of foreign keys referencing a
table. Method is used to avoid truncating tables that are
parent in a foreign key relationship.
sql/share/errmsg-utf8.txt:
Add error message for truncate and FK.
sql/sql_lex.h:
Introduce a flag so that the partition engine can detect when
a partition is being truncated. Used to give a special error.
sql/sql_parse.cc:
Function mysql_truncate_table no longer exists.
sql/sql_partition_admin.cc:
Implement the TRUNCATE PARTITION statement.
sql/sql_truncate.cc:
Change the truncate table implementation to use the new truncate
handler method and to not rely on row-by-row delete anymore.
The truncate handler method is always invoked with a exclusive
metadata lock. Also, it is no longer possible to truncate a
table that is parent in some non-self-referencing foreign key.
storage/archive/ha_archive.cc:
Rename method as the description indicates that in the future
this could be a truncate operation.
storage/blackhole/ha_blackhole.cc:
Implement truncate as no operation for the blackhole engine in
order to remain compatible with older releases.
storage/federated/ha_federated.cc:
Introduce truncate method that invokes delete_all_rows.
This is required to support partition truncate as this
form of truncate does not implement the drop and recreate
protocol.
storage/heap/ha_heap.cc:
Introduce truncate method that invokes delete_all_rows.
This is required to support partition truncate as this
form of truncate does not implement the drop and recreate
protocol.
storage/ibmdb2i/ha_ibmdb2i.cc:
Introduce truncate method that invokes delete_all_rows.
This is required to support partition truncate as this
form of truncate does not implement the drop and recreate
protocol.
storage/innobase/handler/ha_innodb.cc:
Rename delete_all_rows to truncate. InnoDB now does truncate
under a exclusive metadata lock.
Introduce and reorganize methods used to retrieve the list
of foreign keys referenced by a or referencing a table.
storage/myisammrg/ha_myisammrg.cc:
Introduce truncate method that invokes delete_all_rows.
This is required in order to remain compatible with earlier
releases where truncate would resort to a row-by-row delete.
2010-10-06 11:34:28 -03:00
|
|
|
int ha_perfschema::truncate()
|
|
|
|
{
|
|
|
|
return delete_all_rows();
|
|
|
|
}
|
|
|
|
|
2010-01-11 18:47:27 -07:00
|
|
|
THR_LOCK_DATA **ha_perfschema::store_lock(THD *thd,
|
|
|
|
THR_LOCK_DATA **to,
|
|
|
|
enum thr_lock_type lock_type)
|
|
|
|
{
|
|
|
|
if (lock_type != TL_IGNORE && m_thr_lock.type == TL_UNLOCK)
|
|
|
|
m_thr_lock.type= lock_type;
|
|
|
|
*to++= &m_thr_lock;
|
|
|
|
m_thr_lock.m_psi= m_psi;
|
|
|
|
return to;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::delete_table(const char *name)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::delete_table");
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::rename_table(const char * from, const char * to)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::rename_table ");
|
|
|
|
my_error(ER_WRONG_PERFSCHEMA_USAGE, MYF(0));
|
|
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ha_perfschema::create(const char *name, TABLE *table_arg,
|
|
|
|
HA_CREATE_INFO *create_info)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("ha_perfschema::create");
|
|
|
|
DBUG_ASSERT(table_arg);
|
|
|
|
DBUG_ASSERT(table_arg->s);
|
|
|
|
if (find_table_share(table_arg->s->db.str,
|
|
|
|
table_arg->s->table_name.str))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Attempting to create a known performance schema table.
|
|
|
|
Allowing the create, to create .FRM files,
|
|
|
|
for the initial database install, and mysql_upgrade.
|
|
|
|
This should fail once .FRM are removed.
|
|
|
|
*/
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
This is not a general purpose engine.
|
|
|
|
Failure to CREATE TABLE is the expected result.
|
|
|
|
*/
|
|
|
|
my_error(ER_WRONG_PERFSCHEMA_USAGE, MYF(0));
|
|
|
|
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
|
|
|
}
|
|
|
|
|