MySQL 9.1.0
Source Code Documentation
|
Namespaces | |
namespace | internal |
Classes | |
class | Error |
Error representation used internally in case final error code is unknown and error situation handling needs to be done by the caller. More... | |
struct | Is_specialization |
Helper struct used to determine at compile time whether a given type T is a template specialization of the Primary. More... | |
struct | Is_specialization< Primary< Args... >, Primary > |
Helper struct used to determine at compile time whether a given type T is a template specialization of the Primary. More... | |
Typedefs | |
using | Error_ptr = std::unique_ptr< mysql::utils::Error > |
Enumerations | |
enum class | Return_status { ok , error } |
Simple, strongly-typed enumeration to indicate internal status: ok, error. More... | |
Functions | |
template<> | |
constexpr gtid::Gtid_format | enum_max< gtid::Gtid_format > () |
Specialization of enum_max method for Gtid_format. More... | |
template<class... Args> | |
std::string | concat (Args... args) |
Convert all the arguments to strings and concatenate the strings. More... | |
template<typename Enum_type > | |
constexpr decltype(auto) | to_underlying (Enum_type enum_value) |
Helper function that converts enum type to underlying integer type. More... | |
template<typename Enum_type > | |
constexpr Enum_type | enum_max () |
Template function that returns maximum valid constant that can appear in the enumeration type. More... | |
template<typename Enum_type , typename Integral_type > | |
constexpr std::pair< Enum_type, Return_status > | to_enumeration (Integral_type value) |
Helper function that converts value of enumeration underlying type into enumeration type constant. More... | |
using mysql::utils::Error_ptr = typedef std::unique_ptr<mysql::utils::Error> |
|
strong |
std::string mysql::utils::concat | ( | Args... | args | ) |
Convert all the arguments to strings and concatenate the strings.
This feeds all arguments to a std::ostringstream
, so supports all types for which operator<<(std::ostringstream&, ...)
is defined.
args | Arguments to concatenate. |
Template function that returns maximum valid constant that can appear in the enumeration type.
It must be specialized for each enumeration type serialized
Enum_type | Type of the enumeration that will be returned |
|
inlineconstexpr |
Specialization of enum_max method for Gtid_format.
|
inlineconstexpr |
Helper function that converts value of enumeration underlying type into enumeration type constant.
Enum_type | Type of the enumeration that Integral_type parameter is converted into |
Integral_type | Type of the enumeration parameter that gets converted into the Enum_type |
|
inlineconstexpr |
Helper function that converts enum type to underlying integer type.
Enum_type | Type of the enumeration parameter that gets converted into the underlying type value |