Parameter place holder should start from 1 in StandardTemporaryTableExporter
Description
It’s related to this issue:
The mehotd interface ParameterMarkerStrategy#createMarker expects the parameters to be 1-based positioned, but it’s called with position 0 (see the javadoc).
This does not affect Hibernate ORM unless somebody uses the interface (for example, Hibernate Reactive) because the default is to generate the queries using ? as parameters marker.
It’s related to this issue:
The mehotd interface
ParameterMarkerStrategy#createMarker
expects the parameters to be 1-based positioned, but it’s called with position 0 (see the javadoc).This does not affect Hibernate ORM unless somebody uses the interface (for example, Hibernate Reactive) because the default is to generate the queries using
?
as parameters marker.