-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Added fetchSize
to ReactiveSelectOperationSupport
#1898
Conversation
* @param fetchSize | ||
* @return | ||
*/ | ||
SelectWithQuery<T> withFetchSize(Integer fetchSize); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be a primitive.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mp911de That is done. I hope we both understand, that in general, this does not omit the boxing from int
to Integer
. Although, specifying withFetchSize(null)
still does not make much sense, since that signals the driver to adhere to default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We apply defaults whenever user input is absent. Asking for applying default behavior is weird in the first place.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's exactly what I'm trying to communicate, I'm just verifying we're on the same page.
fetchSize
to ReactiveSelectOperationSupport
Thank you for your contribution. That's merged and polished now. |
Solves #1652 issue.