MySQL 8.4.0
Source Code Documentation
rpl_info_values.h
Go to the documentation of this file.
1/* Copyright (c) 2010, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef RPL_INFO_VALUES_H
25#define RPL_INFO_VALUES_H
26
27#include "my_bitmap.h"
28
29class String;
30
32 public:
33 Rpl_info_values(int param_ninfo);
34 virtual ~Rpl_info_values();
35
36 bool init();
37
38 /**
39 Sequence of values to be read from or stored into a repository.
40 */
42
43 /**
44 Bitset to represent nullability of corresponding field values in `value`
45 array above.
46 */
48
49 private:
50 /* This property represents the number of fields. */
51 int ninfo;
52
55};
56#endif /* RPL_INFO_VALUES_H */
Definition: rpl_info_values.h:31
String * value
Sequence of values to be read from or stored into a repository.
Definition: rpl_info_values.h:41
virtual ~Rpl_info_values()
Definition: rpl_info_values.cc:55
Rpl_info_values(int param_ninfo)
Definition: rpl_info_values.cc:30
Rpl_info_values(const Rpl_info_values &values)
int ninfo
Definition: rpl_info_values.h:51
bool init()
Initializes a sequence of values to be read from or stored into a repository.
Definition: rpl_info_values.cc:42
Rpl_info_values & operator=(const Rpl_info_values &values)
MY_BITMAP is_null
Bitset to represent nullability of corresponding field values in value array above.
Definition: rpl_info_values.h:47
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:167
Definition: my_bitmap.h:43