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.
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
Michael Reiche opened DATACOUCH-673 and commented
This is mostly a note to myself -
QueryMethod.isCollectionQuery() returns false for Flux<T> findByXXX(..., pageRequest)
airportRepository.findAllByIataLikeOrderByIata("S%", pageRequest)
To resolve this, not only does CouchbaseQueryMethod (or ReactiveCouchbaseQueryMethod) need to override isCollectionQuery() :
@Override public boolean isCollectionQuery() { return (Boolean) this.isCollectionQueryCouchbase.get(); }
@Override
But the lazy field from QueryMethod 'isCollectionQuery' should be substituted from a lazy field from [Reactive]CouchbaseQueryMethod
No further details from DATACOUCH-673
The text was updated successfully, but these errors were encountered:
I believe this was fixed in one of the 588 part 1 merge
Sorry, something went wrong.
mikereiche
Successfully merging a pull request may close this issue.
Michael Reiche opened DATACOUCH-673 and commented
This is mostly a note to myself -
QueryMethod.isCollectionQuery() returns false for Flux<T> findByXXX(..., pageRequest)
airportRepository.findAllByIataLikeOrderByIata("S%", pageRequest)
To resolve this, not only does CouchbaseQueryMethod (or ReactiveCouchbaseQueryMethod) need to override isCollectionQuery() :
@Override
public boolean isCollectionQuery() {
return (Boolean) this.isCollectionQueryCouchbase.get();
}
But the lazy field from QueryMethod 'isCollectionQuery' should be substituted from a lazy field from [Reactive]CouchbaseQueryMethod
No further details from DATACOUCH-673
The text was updated successfully, but these errors were encountered: