Skip to content

Commit 365078d

Browse files
feat: Pratt 8.5 ms/ops without failures
Signed-off-by: manticore-projects <andreas@manticore-projects.com>
1 parent 53ca038 commit 365078d

2 files changed

Lines changed: 187 additions & 193 deletions

File tree

src/main/java/net/sf/jsqlparser/parser/CCJSqlParserUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public static Expression parseExpression(String expressionStr, boolean allowPart
220220
"could only parse partial expression " + expression.toString());
221221
}
222222
} catch (ParseException ex) {
223-
throw new JSQLParserException(ex);
223+
throw new JSQLParserException(expressionStr, ex);
224224
}
225225
} catch (JSQLParserException ex1) {
226226
// when fast simple parsing fails, try complex parsing but only if it has a chance to

0 commit comments

Comments
 (0)