Fixed bug parsing create statements.

This commit is contained in:
2018-06-10 00:07:17 +01:00
parent 9e60b793c6
commit 5f6f10fe2e

View File

@@ -369,6 +369,7 @@ ParserNode *parser_parse(Parser *parser, Scanner *scanner) {
break; break;
} }
} }
break;
case NODE_DROP_STMT: { case NODE_DROP_STMT: {
NEXT_TOKEN(); NEXT_TOKEN();
if (token == NULL || token->type != T_IDENTIFIER) { if (token == NULL || token->type != T_IDENTIFIER) {