Andrey.Tarashevskiy
Andrey.Tarashevskiy
https://github.com/JetBrains/Exposed/blob/master/docs/ChangeLog.md#0351 Please check `keepLoadedReferencesOutOfTransaction` part
Do you mean SQL `mod` not kotlin one?
The idea here was to return loaded entities when SizedIterable was provided. @lure , you think it's worth to return original collection for further chaining?
Are there other databases (besides PostgreSQL) which support returning affected rows with `UPDATE`?
@marioalvial after #1592 `newSuspendedTransaction` accepts `CoroutineContext` instead of dispatcher. Will this resolve the issue?
Hi, eager loading in a single query is not supported and always requires another call to fetch related entities. To me 3rd query looks strange, I'll try to reproduce it.
What kotlin version do you use?
Exposed 0.39.x should work with Kotlin 1.6. Can you please describe the problem you've faced in more details?
@pindab0ter , can you share your `Farmers` table declaration and what Java version do you use?
I was able to reproduce the bug, will fix it with next release. As a workaround you can move table name into table declaration like: ```kotlin object Farmers : IdTable{"farmers")...