Mark Paluch

Results 1230 comments of Mark Paluch

Appreciate your perception and feedback. We've practiced the release train idea for a couple years now, mostly by assigning fixed release days for each project. From there on, each project...

We do support Cassandra's paging state through `CassandraPageRequest` and `CassandraScrollPosition`. You can hand in a `ByteBuffer` for example: ``` ResultSet rs; Query q = Query.empty().pagingState(rs.getExecutionInfo().getPagingState()); Query q = Query.empty().pagingState(CassandraScrollPosition.of(rs.getExecutionInfo().getPagingState())); ```...

We did't add support accepting `PagingState` because the driver reports the state `ExecutionInfo.getPagingState()` as `ByteBuffer`. `PagingState` is a public API so we could introduce methods on `Query`, `CassandraPageRequest`, and `CassandraScrollPosition`...

`CassandraPageRequest.of(Pageable, …)` is rather an internally used method to construct `CassandraPageRequest` when creating a `Slice` result. It isn't really intended for the initial request and so this method should not...

@w3-3w I created #2868 out of your comment. While your case doesn't relate to repository invocations per-se, it is still something that works differently between reflective and generated property accessors...

> If users want multipart file projection support they can create a feature request. I fully agree with that sentiment. Let's close this ticket and put it aside for the...

Do you have a reproducer project handy that shows the Scala case?

How did you encounter a null pointer at `ValidationErrors`? Do you have a stack trace handy?

If you would like us to spend some time helping you to diagnose the problem, please spend some time describing it and, ideally, providing a [minimal yet complete sample](https://stackoverflow.com/help/mcve) that...

Can we discuss what you're intending to fix or change before submitting a pull request?