We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e0f48 commit 6a98d2bCopy full SHA for 6a98d2b
1 file changed
src/main/javacc/net/sf/jsqlparser/parser/JSqlParserCC.jj
@@ -80,7 +80,7 @@ import java.util.*;
80
* The parser generated by JavaCC
81
*/
82
public class CCJSqlParser {
83
- private boolean allowOraclePrior = false;
+
84
}
85
86
PARSER_END(CCJSqlParser)
@@ -1091,8 +1091,8 @@ OracleHierarchicalExpression OracleHierarchicalQueryClause():
1091
{
1092
[ <K_START> <K_WITH> expr=AndExpression() {result.setStartExpression(expr);} ]
1093
<K_CONNECT> <K_BY> [ <K_NOCYCLE> { result.setNoCycle(true); } ]
1094
- { allowOraclePrior=true; } expr=AndExpression()
1095
- { result.setConnectExpression(expr);allowOraclePrior=false; }
+ expr=AndExpression()
+ { result.setConnectExpression(expr); }
1096
1097
{ return result; }
1098
0 commit comments