diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-03-13 13:32:04 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-03-13 13:32:04 +0200 |
commit | e63f621652b95f778960840300d7df4321c4f462 (patch) | |
tree | e83b199092febc5dc3353b2e4a27ae942d3c0737 /storage/innobase/ut | |
parent | 56304875f72d9aa051853bc736b6cf3fb9e346ad (diff) | |
download | mariadb-git-e63f621652b95f778960840300d7df4321c4f462.tar.gz |
Remove references to MySQL 5.7 native InnoDB partitioning
The native InnoDB partitioning was never enabled in MariaDB.
Remove some declarations and comments referring to it.
Diffstat (limited to 'storage/innobase/ut')
-rw-r--r-- | storage/innobase/ut/ut0new.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/innobase/ut/ut0new.cc b/storage/innobase/ut/ut0new.cc index 8aad921278c..6e64eba307f 100644 --- a/storage/innobase/ut/ut0new.cc +++ b/storage/innobase/ut/ut0new.cc @@ -1,6 +1,7 @@ /***************************************************************************** Copyright (c) 2014, 2016, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2019, MariaDB Corporation. 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 @@ -42,7 +43,6 @@ PSI_memory_key mem_key_row_log_buf; PSI_memory_key mem_key_row_merge_sort; PSI_memory_key mem_key_std; PSI_memory_key mem_key_trx_sys_t_rw_trx_ids; -PSI_memory_key mem_key_partitioning; #ifdef UNIV_PFS_MEMORY @@ -71,7 +71,6 @@ static PSI_memory_info pfs_info[] = { {&mem_key_row_merge_sort, "row_merge_sort", 0}, {&mem_key_std, "std", 0}, {&mem_key_trx_sys_t_rw_trx_ids, "trx_sys_t::rw_trx_ids", 0}, - {&mem_key_partitioning, "partitioning", 0}, }; /** Map used for default performance schema keys, based on file name of the |