Update IDEA community edition to the newest 2023.3...
# intellij
h
Update IDEA community edition to the newest 2023.3.2, encountered the old issue(I remember I encountered this issue before), can not resolve jOOQ types correctly.
sql
will raise an error, when move cursor on it, it will display type mismatched: Required: Publisher out Variable T, but provides SelectConditionStep<RecordX....>, but
SelectConditionStep
is a
Publisher
.
Copy code
val sql =dslContext.select(...).from().where() // is a publisher
Flux.from(sql).map {...}.asFlow()
The codes is working. But due to the IDEA issue, can not get the assistance from IDE.
a
Hello hantsy! Can you please create a ticket to YouTrack and attach steps how to reproduce the issue? Thank you!