More code cleanup for MySQL variables

pull/3445/head
René Cannaò 5 years ago
parent eb8dc23dad
commit 9e3d939ed3

@ -369,6 +369,12 @@ class MySQL_Threads_Handler
// max value
// special variable : if true, min and max values are ignored, and further input validation is required
std::unordered_map<std::string, std::tuple<int *, int, int, bool>> VariablesPointers_int;
// VariablesPointers_bool stores:
// key: variable name
// tuple:
// variable address
// special variable : if true, further input validation is required
std::unordered_map<std::string, std::tuple<bool *, bool>> VariablesPointers_bool;
public:
struct {
int monitor_history;

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save