Skip to content

Commit

Permalink
Fix flyway#2500: Cannot create AD account on MSSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Tercete committed Sep 12, 2019
1 parent c90162b commit e33c532
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -472,7 +472,7 @@ private Token readToken(PeekingReader reader, PositionTracker tracker, ParserCon
}
return handleKeyword(reader, context, pos, line, col, text);
}
if (StringUtils.isCharAnyOf(c, ",=*.:;[]~+-/%^|?!@$&#<>'{}")) {
if (StringUtils.isCharAnyOf(c, ",=*.:;[]~+-/%^|?!@$&#<>'{}\\")) {
String text = "" + (char) reader.read();
return new Token(TokenType.SYMBOL, pos, line, col, text, text, context.getParensDepth());
}
Expand Down

0 comments on commit e33c532

Please sign in to comment.