MySQL 8.1.0
Source Code Documentation
mysql_query_attributes_imp.h
Go to the documentation of this file.
1/* Copyright (c) 2020, 2023, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is also distributed with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have included with MySQL.
13
14This program is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License, version 2.0, for more details.
18
19You should have received a copy of the GNU General Public License
20along with this program; if not, write to the Free Software
21Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef MYSQL_QUERY_ATTRIBUTES_IMP_H
24#define MYSQL_QUERY_ATTRIBUTES_IMP_H
25
28
29/**
30 Query attributes service implementation.
31*/
33 public:
34 // iterator methods
35
37 (MYSQL_THD thd, const char *name,
40 enum enum_field_types *out_type));
43 my_h_string *out_name_handle));
45
46 // string methods
48 my_h_string *out_string_value));
49
50 // is null methods
52 bool *out_null));
53};
54
55#endif /* MYSQL_QUERY_ATTRIBUTES_IMP_H */
#define MYSQL_THD
Definition: backup_page_tracker.h:37
Query attributes service implementation.
Definition: mysql_query_attributes_imp.h:32
static void release(mysqlh_query_attributes_iterator iter) noexcept
Definition: mysql_query_attributes_imp.cc:171
static mysql_service_status_t next(mysqlh_query_attributes_iterator iter) noexcept
Definition: mysql_query_attributes_imp.cc:144
static mysql_service_status_t create(THD *thd, const char *name, mysqlh_query_attributes_iterator *out_iterator) noexcept
Definition: mysql_query_attributes_imp.cc:120
static mysql_service_status_t string_get(mysqlh_query_attributes_iterator iter, my_h_string *out_string_value) noexcept
Definition: mysql_query_attributes_imp.cc:400
static mysql_service_status_t get_type(mysqlh_query_attributes_iterator iter, enum enum_field_types *out_type) noexcept
Definition: mysql_query_attributes_imp.cc:134
static mysql_service_status_t isnull_get(mysqlh_query_attributes_iterator iter, bool *out_null) noexcept
Definition: mysql_query_attributes_imp.cc:180
static mysql_service_status_t get_name(mysqlh_query_attributes_iterator iter, my_h_string *out_name_handle) noexcept
Definition: mysql_query_attributes_imp.cc:153
enum_field_types
Column types for MySQL Note: Keep include/mysql/components/services/bits/stored_program_bits....
Definition: field_types.h:54
struct mysqlh_query_attributes_iterator_imp * mysqlh_query_attributes_iterator
Definition: mysql_query_attributes.h:37
Specifies macros to define Service Implementations.
#define DEFINE_BOOL_METHOD(name, args)
A short macro to define method that returns bool, which is the most common case.
Definition: service_implementation.h:87
#define DEFINE_METHOD(retval, name, args)
A macro to ensure method implementation has required properties, that is it does not throw exceptions...
Definition: service_implementation.h:78
case opt name
Definition: sslopt-case.h:32
Definition: mysql_string_service.cc:59