Skip to content

Commit

Permalink
Merge pull request #807 from fbarthez/pr/ERXExistsQualifier-oracle-fix
Browse files Browse the repository at this point in the history
Fix ERXExistsQualifier regex pattern to match oracle expressions
  • Loading branch information
darkv authored Nov 25, 2016
2 parents 9635072 + 961c44a commit dde5164
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class ERXExistsQualifier extends EOQualifier implements Cloneable, NSCodi
*/
static final Logger log = LoggerFactory.getLogger(ERXExistsQualifier.class);

private static final Pattern PATTERN = Pattern.compile("([ '\"\\(]|^)(t)([0-9])([ \\.'\"\\(]|$)");
private static final Pattern PATTERN = Pattern.compile("([ '\"\\(]|^)(t)([0-9])([ ,\\.'\"\\(]|$)");

public static final String EXISTS_ALIAS = "exists";
public static final boolean UseSQLInClause = true;
Expand Down

0 comments on commit dde5164

Please sign in to comment.