-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
named binding is not supported #97
Comments
but infobip-spring-data-r2dbc-querydsl-boot-starter 8.1.2 is ok |
A similar error is thrown when using asyncer-mysql,
|
I need to add support for this, until then the only compatible version is 8.1.2 or prior. |
Any estimate on when will this be fixed? |
Fixed in 9.0.7. |
when i query then error
"
java.lang.UnsupportedOperationException: named binding is not supported by jasync driver ?=In{Inferred: java.lang.Long}
at com.github.jasync.r2dbc.mysql.JasyncStatement.bind(JasyncStatement.kt:65)
Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException.
"
use:
spring boot 3.1.3
jasync-r2dbc-mysql 2.2.4
infobip-spring-data-r2dbc-querydsl-boot-starter 9.0.2
ex:
Flux actual = repository.query(query -> query.select(repository.entityProjection())
.from(person)
.where(person.firstName.in("John", "Jane"))
.orderBy(person.firstName.asc(),
person.lastName.asc())
.limit(1)
.offset(1))
.all();
The text was updated successfully, but these errors were encountered: