Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7ce64378
Commit
7ce64378
authored
Feb 07, 2021
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-23379 fixup: Remove dead PERFORMANCE_SCHEMA code
parent
eacefbca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
11 deletions
+1
-11
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-11
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
7ce64378
...
...
@@ -509,21 +509,14 @@ const struct _ft_vft_ext ft_vft_ext_result = {innobase_fts_get_version,
/* All RWLOCK used in Innodb are SX-locks */
# define PSI_RWLOCK_KEY(n) {&n##_key, #n, PSI_RWLOCK_FLAG_SX}
/* Keys to register pthread mutexes
/cond
in the current file with
/* Keys to register pthread mutexes in the current file with
performance schema */
static
mysql_pfs_key_t
commit_cond_mutex_key
;
static
mysql_pfs_key_t
commit_cond_key
;
static
mysql_pfs_key_t
pending_checkpoint_mutex_key
;
static
PSI_mutex_info
all_pthread_mutexes
[]
=
{
PSI_KEY
(
commit_cond_mutex
),
PSI_KEY
(
pending_checkpoint_mutex
),
};
static
PSI_cond_info
all_innodb_conds
[]
=
{
PSI_KEY
(
commit_cond
)
};
# ifdef UNIV_PFS_MUTEX
/* all_innodb_mutexes array contains mutexes that are
performance schema instrumented if "UNIV_PFS_MUTEX"
...
...
@@ -3917,9 +3910,6 @@ static int innodb_init(void* p)
count
=
array_elements
(
all_innodb_files
);
mysql_file_register
(
"innodb"
,
all_innodb_files
,
count
);
# endif
/* UNIV_PFS_IO */
count
=
array_elements
(
all_innodb_conds
);
mysql_cond_register
(
"innodb"
,
all_innodb_conds
,
count
);
#endif
/* HAVE_PSI_INTERFACE */
bool
create_new_db
=
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment