Merge branch '2.2' into develop

This commit is contained in:
Niclas Antti
2018-06-01 09:33:04 +03:00
9 changed files with 86 additions and 59 deletions

View File

@ -213,8 +213,11 @@ routeQuery(MXS_FILTER *instance, MXS_FILTER_SESSION *session, GWBUF *queue)
{
my_session->request = NULL;
my_session->query_len = 0;
HINT *hint = hint_parser(my_session, queue);
queue->hint = hint;
HINT *new_hint = hint_parser(my_session, queue);
if (new_hint)
{
queue->hint = hint_splice(queue->hint, new_hint);
}
}
/* Now process the request */