MySQL 8.3.0
Source Code Documentation
row0umod.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1997, 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/row0umod.h
28 Undo modify of a row
29
30 Created 2/27/1997 Heikki Tuuri
31 *******************************************************/
32
33#ifndef row0umod_h
34#define row0umod_h
35
36#include "data0data.h"
37#include "dict0types.h"
38#include "mtr0mtr.h"
39#include "que0types.h"
40#include "row0types.h"
41#include "trx0types.h"
42#include "univ.i"
43
44/** Undoes a modify operation on a row of a table.
45 @return DB_SUCCESS or error code */
46[[nodiscard]] dberr_t row_undo_mod(undo_node_t *node, /*!< in: row undo node */
47 que_thr_t *thr); /*!< in: query thread */
48
49#endif
SQL data field and tuple.
dberr_t
Definition: db0err.h:38
Data dictionary global types.
Mini-transaction buffer.
Query graph global types.
Row operation global types.
dberr_t row_undo_mod(undo_node_t *node, que_thr_t *thr)
Undoes a modify operation on a row of a table.
Definition: row0umod.cc:1271
Definition: que0que.h:241
Undo node structure.
Definition: row0undo.h:101
Transaction system global type definitions.
Version control for database, common definitions, and include files.