Skip to content

Commit d3d3af9

Browse files
fix: fix the Grammar so it builds with Maven
Signed-off-by: Andreas Reichel <[email protected]> Signed-off-by: manticore-projects <[email protected]>
1 parent d837b67 commit d3d3af9

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

pom.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
<version>[7.0.13,)</version>
3333
<scope>test</scope>
3434
</dependency>
35-
3635
<dependency>
3736
<groupId>commons-io</groupId>
3837
<artifactId>commons-io</artifactId>
@@ -72,7 +71,7 @@
7271
<dependency>
7372
<groupId>com.h2database</groupId>
7473
<artifactId>h2</artifactId>
75-
<version>[2.2.224,)</version>
74+
<version>[2.3.232,)</version>
7675
<scope>test</scope>
7776
</dependency>
7877

@@ -205,7 +204,6 @@
205204
<plugin>
206205
<groupId>org.javacc.plugin</groupId>
207206
<artifactId>javacc-maven-plugin</artifactId>
208-
<version>3.0.3</version>
209207
<executions>
210208
<execution>
211209
<id>javacc</id>

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

+7-3
Original file line numberDiff line numberDiff line change
@@ -1192,22 +1192,26 @@ ExplainStatement Explain():
11921192
Select select;
11931193
Table table;
11941194
List<ExplainStatement.Option> options;
1195+
ExplainStatement es;
11951196
}
11961197
{
11971198
( tk=<K_EXPLAIN> | tk = <K_SUMMARIZE> )
11981199
(
11991200
LOOKAHEAD(3)(
1200-
options=ExplainStatementOptions()
1201+
options= ExplainStatementOptions()
12011202
select = Select( )
12021203
{
1203-
return new ExplainStatement(tk.image, select, options);
1204+
es = new ExplainStatement(tk.image, select, options);
12041205
}
12051206
)
12061207
|
12071208
(
1208-
table=Table( ) { return new ExplainStatement(tk.image, table); }
1209+
table=Table( ) { es = new ExplainStatement(tk.image, table); }
12091210
)
12101211
)
1212+
{
1213+
return es;
1214+
}
12111215
}
12121216

12131217
/**

src/test/java/net/sf/jsqlparser/statement/ExplainStatementTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*-
2+
* #%L
3+
* JSQLParser library
4+
* %%
5+
* Copyright (C) 2004 - 2024 JSQLParser
6+
* %%
7+
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
8+
* #L%
9+
*/
110
package net.sf.jsqlparser.statement;
211

312
import net.sf.jsqlparser.JSQLParserException;

src/test/java/net/sf/jsqlparser/statement/select/NestedBracketsPerformanceTest.java

+6-7
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ public void testRecursiveBracketExpressionIssue1019() {
135135
// maxDepth = 10 collides with the Parser Timeout = 6 seconds
136136
// @todo: implement methods to set the Parser Timeout explicitly and on demand
137137
@Test
138-
@Timeout(20000)
138+
@Timeout(2000)
139139
public void testRecursiveBracketExpressionIssue1019_2() throws JSQLParserException {
140140
// Temporally set the maxDepth to be 6, was 8 before this
141-
doIncreaseOfParseTimeTesting("IF(1=1, $1, 2)", "1", 6);
141+
doIncreaseOfParseTimeTesting("IF(1=1, $1, 2)", "1", 8);
142142
}
143143

144144
@Test
@@ -165,9 +165,9 @@ public void testIssue1013_3() throws JSQLParserException {
165165
@Test
166166
@Timeout(2000)
167167
public void testIssue1013_4() throws JSQLParserException {
168-
String s = "tblA";
168+
StringBuilder s = new StringBuilder("tblA");
169169
for (int i = 1; i < 100; i++) {
170-
s = "(" + s + ")";
170+
s = new StringBuilder("(" + s + ")");
171171
}
172172
String sql = "SELECT * FROM " + s;
173173
LOG.info("testing " + sql);
@@ -182,8 +182,7 @@ public void testIssue1013_4() throws JSQLParserException {
182182
@Test
183183
@Timeout(2000)
184184
public void testIncreaseOfParseTime() throws JSQLParserException {
185-
// Temporally set the maxDepth to be 6, was 50 before this
186-
doIncreaseOfParseTimeTesting("concat($1,'B')", "'A'", 6);
185+
doIncreaseOfParseTimeTesting("concat($1,'B')", "'A'", 50);
187186
}
188187

189188
private void doIncreaseOfParseTimeTesting(String template, String finalExpression, int maxDepth)
@@ -194,7 +193,7 @@ private void doIncreaseOfParseTimeTesting(String template, String finalExpressio
194193
String sql = "SELECT " + buildRecursiveBracketExpression(template, finalExpression, i)
195194
+ " FROM mytbl";
196195
long startTime = System.currentTimeMillis();
197-
assertSqlCanBeParsedAndDeparsed(sql, true, parser -> parser.withTimeOut(60000));
196+
assertSqlCanBeParsedAndDeparsed(sql, true, parser -> parser.withTimeOut(12000));
198197
long durationTime = System.currentTimeMillis() - startTime;
199198

200199
if (i > 0) {

0 commit comments

Comments
 (0)