MySQL 8.4.0
Source Code Documentation
pfs_batch_mode.h
Go to the documentation of this file.
1#ifndef PFS_BATCH_MODE_INCLUDED
2#define PFS_BATCH_MODE_INCLUDED
3
4/* Copyright (c) 2018, 2024, Oracle and/or its affiliates.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License, version 2.0,
8 as published by the Free Software Foundation.
9
10 This program is designed to work with certain software (including
11 but not limited to OpenSSL) that is licensed under separate terms,
12 as designated in a particular file or component or in included license
13 documentation. The authors of MySQL hereby grant you an additional
14 permission to link the program and your derivative works with the
15 separately licensed software that they have either included with
16 the program or referenced in the documentation.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License, version 2.0, for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
26
28
29/// A RAII class to handle turning on batch mode in front of scanning a row
30/// iterator, and then turn it back off afterwards (on destruction).
31///
32/// Use this when scanning an iterator, e.g. using a for loop. See the comments
33/// on RowIterator::StartPSIBatchMode for more details.
35 public:
36 explicit PFSBatchMode(RowIterator *iterator) : m_iterator(iterator) {
38 }
39
41
42 private:
44};
45#endif /* PFS_BATCH_MODE_INCLUDED */
A RAII class to handle turning on batch mode in front of scanning a row iterator, and then turn it ba...
Definition: pfs_batch_mode.h:34
RowIterator * m_iterator
Definition: pfs_batch_mode.h:43
PFSBatchMode(RowIterator *iterator)
Definition: pfs_batch_mode.h:36
~PFSBatchMode()
Definition: pfs_batch_mode.h:40
A context for reading through a single table using a chosen access method: index read,...
Definition: row_iterator.h:82
virtual void StartPSIBatchMode()
Start performance schema batch mode, if supported (otherwise ignored).
Definition: row_iterator.h:206
virtual void EndPSIBatchModeIfStarted()
Ends performance schema batch mode, if started.
Definition: row_iterator.h:217