diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-05-06 21:42:05 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-05-06 21:42:05 +0200 |
commit | 3427fd037822722da4d51db47c51d9621567283d (patch) | |
tree | 15e78a8f48d3de9f54b233a1289c4f8ea2c0773d /storage/perfschema/ha_perfschema.cc | |
parent | 4a84ee1c25045ba1ee4bd23cba3772b90545d3d1 (diff) | |
download | mariadb-git-3427fd037822722da4d51db47c51d9621567283d.tar.gz |
making perfschema easier to merge: remove unnecessary changes
Diffstat (limited to 'storage/perfschema/ha_perfschema.cc')
-rw-r--r-- | storage/perfschema/ha_perfschema.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/perfschema/ha_perfschema.cc b/storage/perfschema/ha_perfschema.cc index 2934afefbe6..ab942ab2ea5 100644 --- a/storage/perfschema/ha_perfschema.cc +++ b/storage/perfschema/ha_perfschema.cc @@ -392,6 +392,11 @@ int ha_perfschema::delete_all_rows(void) DBUG_RETURN(result); } +int ha_perfschema::truncate() +{ + return delete_all_rows(); +} + THR_LOCK_DATA **ha_perfschema::store_lock(THD *thd, THR_LOCK_DATA **to, enum thr_lock_type lock_type) |