MXS-2851 Fix bug

This commit is contained in:
Johan Wikman
2020-01-28 12:10:24 +02:00
parent 9262e14aed
commit ea2665214f

View File

@ -917,6 +917,7 @@ public:
case TK_BITAND:
case TK_BITOR:
case TK_CASE:
case TK_CAST:
case TK_IN:
case TK_ISNULL:
case TK_MINUS:
@ -3976,6 +3977,9 @@ static const char* get_token_symbol(int token)
case TK_CASE:
return "case";
case TK_CAST:
return "cast";
case TK_IN:
return "in";