[#5955] Fixed multiline comment regression

This commit is contained in:
lukaseder 2017-04-21 21:37:15 +02:00
parent 47b2076a5e
commit 1f52094120

View File

@ -5102,7 +5102,7 @@ class ParserImpl implements Parser {
switch (ctx.sql[i]) {
case '*':
if (i + 1 < ctx.sql.length && ctx.sql[i + 1] == '/') {
position = i;
position = i = i + 1;
continue loop;
}