MySQL 9.0.0
Source Code Documentation
row0types.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1996, 2024, 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 designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20for more details.
21
22You should have received a copy of the GNU General Public License along with
23this program; if not, write to the Free Software Foundation, Inc.,
2451 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26*****************************************************************************/
27
28/** @file include/row0types.h
29 Row operation global types
30
31 Created 12/27/1996 Heikki Tuuri
32 *******************************************************/
33
34#ifndef row0types_h
35#define row0types_h
36
37struct plan_t;
38
39struct upd_t;
40struct upd_field_t;
41struct upd_node_t;
42struct del_node_t;
43struct ins_node_t;
44struct sel_node_t;
45struct open_node_t;
46struct fetch_node_t;
47
48struct sel_buf_t;
49
50struct undo_node_t;
51
52struct purge_node_t;
53
54struct row_ext_t;
55
56/** Buffer for logging modifications during online index creation */
57struct row_log_t;
58
59/* MySQL data types */
60struct TABLE;
61
62#endif
Definition: table.h:1407
Fetch statement node.
Definition: row0sel.h:376
Definition: row0ins.h:162
Open or close cursor statement node.
Definition: row0sel.h:400
Query plan.
Definition: row0sel.h:247
Definition: row0purge.h:93
Prefixes of externally stored columns.
Definition: row0ext.h:95
Buffer for logging modifications during online index creation.
Definition: row0log.cc:184
A structure for caching column values for prefetched rows.
Definition: row0sel.h:234
Select statement node.
Definition: row0sel.h:329
Undo node structure.
Definition: row0undo.h:120
Definition: row0upd.h:467
Definition: row0upd.h:701
Definition: row0upd.h:565