MySQL 8.3.0
Source Code Documentation
p_s.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 2016, 2023, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License, version 2.0, as published by the
7Free Software Foundation.
8
9This program is also distributed with certain software (including but not
10limited to OpenSSL) that is licensed under separate terms, as designated in a
11particular file or component or in included license documentation. The authors
12of MySQL hereby grant you an additional permission to link the program and
13your derivative works with the separately licensed software that they have
14included with MySQL.
15
16This program is distributed in the hope that it will be useful, but WITHOUT
17ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
19for more details.
20
21You should have received a copy of the GNU General Public License along with
22this program; if not, write to the Free Software Foundation, Inc.,
2351 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
25*****************************************************************************/
26
27/** @file handler/p_s.h
28 InnoDB performance_schema tables interface to MySQL.
29
30 *******************************************************/
31
32#ifndef p_s_h
33#define p_s_h
34
36
37/** Inspect data locks in innodb.
38This class is used by the performance schema to extract lock data.
39*/
41 public:
43 ~Innodb_data_lock_inspector() override = default;
44
50};
51
52#endif /* p_s_h */
Inspect data locks in innodb.
Definition: p_s.h:40
PSI_engine_data_lock_wait_iterator * create_data_lock_wait_iterator() override
Create a data lock wait iterator.
Definition: p_s.cc:415
void destroy_data_lock_iterator(PSI_engine_data_lock_iterator *it) override
Destroy a data lock iterator.
Definition: p_s.cc:419
PSI_engine_data_lock_iterator * create_data_lock_iterator() override
Create a data lock iterator.
Definition: p_s.cc:410
~Innodb_data_lock_inspector() override=default
Innodb_data_lock_inspector()=default
void destroy_data_lock_wait_iterator(PSI_engine_data_lock_wait_iterator *it) override
Destroy a data lock wait iterator.
Definition: p_s.cc:424
Engine interface, row lock inspector.
Definition: psi_data_lock.h:385
Engine interface, row lock iterator.
Definition: psi_data_lock.h:316
Definition: psi_data_lock.h:343
Performance schema instrumentation interface.