Add missing close definition for examplefilter
The filter session method was not defined.
This commit is contained in:
@ -32,6 +32,10 @@ ExampleFilterSession* ExampleFilterSession::create(MXS_SESSION* pSession, const
|
|||||||
return new ExampleFilterSession(pSession);
|
return new ExampleFilterSession(pSession);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ExampleFilterSession::close()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
int ExampleFilterSession::routeQuery(GWBUF* pPacket)
|
int ExampleFilterSession::routeQuery(GWBUF* pPacket)
|
||||||
{
|
{
|
||||||
return mxs::FilterSession::routeQuery(pPacket);
|
return mxs::FilterSession::routeQuery(pPacket);
|
||||||
|
Reference in New Issue
Block a user