We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I was checking the code in N1qlJoinResolver and there's a duplicated condition, which makes the 2nd not reachable :
spring-data-couchbase/spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/convert/join/N1qlJoinResolver.java
Lines 143 to 148 in a998251
I think (from reading comments) :
} else if (lhCollection != null && rhCollection == null) {
} else if (lhCollection != null) {
} else if (lhCollection == null && rhCollection != null) {
} else if (rhCollection != null) {
The text was updated successfully, but these errors were encountered:
Fix handling of collections in N1qlJoinResolver.
485bb90
Closes #1566.
Fix handling of collections in N1qlJoinResolver. (#1587)
b0d96fc
mikereiche
Successfully merging a pull request may close this issue.
Hi, I was checking the code in N1qlJoinResolver and there's a duplicated condition, which makes the 2nd not reachable :
spring-data-couchbase/spring-data-couchbase/src/main/java/org/springframework/data/couchbase/core/convert/join/N1qlJoinResolver.java
Lines 143 to 148 in a998251
I think (from reading comments) :
} else if (lhCollection != null && rhCollection == null) {
(or even shorter} else if (lhCollection != null) {
)} else if (lhCollection == null && rhCollection != null) {
(or even shorter} else if (rhCollection != null) {
)The text was updated successfully, but these errors were encountered: