You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/mysql_backend.h

26 lines
521 B

#ifndef __CLASS_MYSQL_BACKEND_H
#define __CLASS_MYSQL_BACKEND_H
#include "proxysql.h"
#include "cpp.h"
class MySQL_Backend
{
public:
void * operator new(size_t);
void operator delete(void *);
int hostgroup_id;
char gtid_uuid[128];
uint64_t gtid_trxid;
MySQL_Data_Stream *server_myds;
// mysql_cp_entry_t *server_mycpe;
bytes_stats_t server_bytes_at_cmd;
//MySQL_Hostgroup_Entry *mshge;
//MySQL_Connection *myconn;
MySQL_Backend();
~MySQL_Backend();
void reset();
};
#endif /* __CLASS_MYSQL_BACKEND_H */