MySQL 8.3.0
Source Code Documentation
row0types.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1996, 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 include/row0types.h
28 Row operation global types
29
30 Created 12/27/1996 Heikki Tuuri
31 *******************************************************/
32
33#ifndef row0types_h
34#define row0types_h
35
36struct plan_t;
37
38struct upd_t;
39struct upd_field_t;
40struct upd_node_t;
41struct del_node_t;
42struct ins_node_t;
43struct sel_node_t;
44struct open_node_t;
45struct fetch_node_t;
46
47struct sel_buf_t;
48
49struct undo_node_t;
50
51struct purge_node_t;
52
53struct row_ext_t;
54
55/** Buffer for logging modifications during online index creation */
56struct row_log_t;
57
58/* MySQL data types */
59struct TABLE;
60
61#endif
Definition: table.h:1403
Fetch statement node.
Definition: row0sel.h:375
Definition: row0ins.h:161
Open or close cursor statement node.
Definition: row0sel.h:399
Query plan.
Definition: row0sel.h:246
Definition: row0purge.h:92
Prefixes of externally stored columns.
Definition: row0ext.h:94
Buffer for logging modifications during online index creation.
Definition: row0log.cc:183
A structure for caching column values for prefetched rows.
Definition: row0sel.h:233
Select statement node.
Definition: row0sel.h:328
Undo node structure.
Definition: row0undo.h:101
Definition: row0upd.h:466
Definition: row0upd.h:700
Definition: row0upd.h:564