Skip to content

Commit 421e289

Browse files
fix: add needed LOOKAHEAD(2)
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent 93c8210 commit 421e289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6151,7 +6151,7 @@ ColDataType DataType():
61516151
}
61526152
{
61536153
(
6154-
tk=<K_TEXT_LITERAL> {
6154+
LOOKAHEAD(2) tk=<K_TEXT_LITERAL> {
61556155
type = tk.image;
61566156
return new ColDataType(type, precision, scale);
61576157
}

0 commit comments

Comments
 (0)