Steven Schlansker
Steven Schlansker
+1, this would be useful
Hi, the problem isn't necessarily tied to having spaces or not, but you correctly highlight the `toString` value is not considered. We can add this as an option.
Ah, @vahidpaz , have you considered instead of using `toString`, using `@DatabaseValue`? That allows you to explicitly specify the enum's value in the database.
@hanzo2001, I'm unfortunately not very familiar with Kotlin personally, but registering a custom `ColumnMapper` to handle logic specific to the `N` type is exactly what you're supposed to do. The...
Thanks for reporting this. Immutables is a pretty young feature and I haven't extensively tested its interaction with Nested myself. I think it'd be great to have this work as...
Currently, Jdbi does not really do automatic 1-N or M-N collapsing. You can build it yourself pretty easily -- there's a couple of documentation examples showing it with Multimap, for...
Hi anborg, it's difficult for us to write such a comprehensive doc, as the features requested and supported varies a lot by customer / database driver / driver version and...
Hi, this seems to be against an older version of Jdbi. Can you confirm that the issue still exists on the latest, or tell us what version you use? I...
Hi Tor, We tested that a very similar construction works in vanilla Java: https://github.com/jdbi/jdbi/blob/master/sqlobject/src/test/java/org/jdbi/v3/sqlobject/TestSqlObject.java#L293-L307 Perhaps we missed a case for Kotlin. We should add a test corresponding to your use...
Ah, looking more closely: note that the *return types* are different, `Object` vs `UUID`. I expect this means the Kotlin compiler is emitting a synthetic bridge method that we are...