Open
Description
Bug Report
Versions
- Driver: r2dbc-mssql 1.0.2.RELEASE
- Database: azure mssql
- springboot: 3.1.2
- spring-boot-starter-data-r2dbc
- Java: 17
Current Behavior
Bumped r2dbc-mssql from 1.0.0.RELEASE to 1.0.2.RELEASE (via springboot 3.1.2) generates the following exception at runtime:
i.r.m.ExceptionFactory$MssqlNonTransientException: Procedure or function has too many arguments specified.
at i.r.m.ExceptionFactory.createException(ExceptionFactory.java:154)
at i.r.m.DefaultMssqlResult.lambda$doMap$5(DefaultMssqlResult.java:229)
... 2 frames excluded
... 71 common frames omitted
Wrapped by: o.s.r.UncategorizedR2dbcException: executeMany; SQL [SELECT MESSAGES.id, MESSAGES.external_id, MESSAGES.mgo_id, MESSAGES.creation_date, MESSAGES.modification_date, MESSAGES.sending_date, MESSAGES.status FROM MESSAGES WHERE MESSAGES.status = @P0_status AND (MESSAGES.sending_date < @P1_sendingdate)]; Procedure or function has too many arguments specified.
at o.s.r.c.ConnectionFactoryUtils.convertR2dbcException(ConnectionFactoryUtils.java:246)
at o.s.r.c.DefaultDatabaseClient.lambda$inConnectionMany$8(DefaultDatabaseClient.java:151)
... 3 frames excluded
Implementation unchanged where both parameters are never null.
@Repository
public interface MessageDao extends ReactiveCrudRepository<MessageEntity, Long> {
Flux<MessageEntity> findAllByStatusAndSendingDateBefore(MessageEntity.Status status, LocalDateTime dateTime);
}
Expected behavior/code
Running as 1.0.0.RELEASE (no exceptions)
Possible Solution
Additional context
Looks related to #271