Nathan Xu
Nathan Xu
it is the starting position for any parameter marker created in LimitHandler. E.g. the following native query is issued prior to LimitHandler processing: *select * form book where author =...
> > > ... > > > select * form book where author = ?1 and year = ?2 offset ?3 limit ?4 > > My point was that for...
Nothing needs to be done further except for syncing up with v7 series. I'll rebase and refactor as you proposed soon. Had thought this PR would be a dead one,...
@yrodiere , I synced up with main branch and resolved the conflict. However, I just recollect that there is a tricky issue in `LimitHandler` in the sense that we need...
The situation can't be worse. In vast majority of cases, it works as expected. Currently only dialects that have such native quuey parameter marker customization are restricted to H2 and...
I think I can add a simple commit to solve case 1 and given case 2 doesn't need to be solved (only a few dialects belong to this group, but...
> Note SQL Server requires custom markers in Hibernate Reactive: https://github.com/hibernate/hibernate-reactive/blob/e257189f643346799703eab7805de6c4b74a8b33/hibernate-reactive-core/src/main/java/org/hibernate/reactive/provider/service/NativeParametersHandling.java#L57-L59 > > I imagine that doesn't change anything to your assessment? SQL Server's `top(?)` feature implies the corresponding `LimitHandler`...
> ```diff > @Deprecated // Never called directly by Hibernate ORM > - > ``` Yeah. Forgive an old man's bad memory and poor eyesights. I just pushed a new...
@rozza , I am not sure about the validity of the code changes proposed. For one thing, it breaks 6 unit testing cases; secondly it seems `FallbackPropertyCodecProvider` opted for calling...