Skip to content

Commit

Permalink
Merge c469849 into 03e4d01
Browse files Browse the repository at this point in the history
  • Loading branch information
codefairy08 committed Apr 29, 2019
2 parents 03e4d01 + c469849 commit 3b006a6
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -87,6 +87,9 @@ private Optional<OrPredicateSegment> extractRecursiveWithParen(final ParserRuleC
}

private Optional<PredicateSegment> extractPredicate(final ParserRuleContext exprNode, final Map<ParserRuleContext, Integer> parameterMarkerIndexes) {
if (ExtractorUtils.findFirstChildNode(exprNode, RuleName.SUBQUERY).isPresent()) {
return Optional.absent();
}
Optional<PredicateSegment> result = extractComparisonPredicate(exprNode, parameterMarkerIndexes);
if (result.isPresent()) {
return result;
Expand Down

0 comments on commit 3b006a6

Please sign in to comment.