-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DE-684] confuse about some code #260
Comments
@Korov If you are asking regrading the regex, then I think the second approach ( |
@DevPJ9 Can I create a PR to fix it? |
Yeah sure. However, you can raise a PR and mention it to someone who has admin rights or reviewing right to this repo, so that they can merge your PR. |
This looks like a bug to me. AFAICS, fixing the regex with Note that the code paths for |
Internal tracking: DE-684 |
com.arangodb.springframework.repository.query.derived.DerivedQueryCreator#createCriteria
the code
final boolean checkUnique = part.getProperty().toDotPath().split(".").length <= 1;
should befinal boolean checkUnique = part.getProperty().toDotPath().split("\\.").length <= 1;
?The text was updated successfully, but these errors were encountered: