2
Definitions required for Query Cache plugin
5
#ifndef DRIZZLED_PLUGIN_QCACHE_H
6
#define DRIZZLED_PLUGIN_QCACHE_H
8
typedef struct qcache_st
10
/* todo, define this api */
11
/* this is the API that a qcache plugin must implement.
12
it should implement each of these function pointers.
13
if a function returns bool true, that means it failed.
14
if a function pointer is NULL, that's ok.
17
bool (*qcache_func1)(THD *thd, void *parm1, void *parm2);
18
bool (*qcache_func2)(THD *thd, void *parm3, void *parm4);
21
#endif /* DRIZZLED_PLUGIN_QCACHE_H */