ragnese
ragnese
Thank you for the thorough reply. 1. That seems reasonable. 2. Yes, the "native" behavior of how MySQL handles "nested" transactions is definitely error-prone, and I think that your choice...
This obviously isn't very high priority, and I don't really have a concrete suggestion, but I just want to chime in and say that I also find it to be...
I apologize for bumping an old-ish issue. > I'm still not clear on how this config property will be used. What is the value of the plugin if the property...
@SHaTRO Unfortunately, I have to agree with @OliverJAsh. TypeScript has made the (questionable, IMO) decision that there **is** a distinct difference between having a field with a value of `undefined`...
That could be, but I have a feeling it would be a weird ask for the Java-side of things. There are no free functions in Java, so the idea of...
@cowtowncoder Interesting. I'm not familiar with what you're describing about using annotations from mix-in classes (and therefore I also don't understand the request feature you're describing). Could you elaborate? I'm...
I'm working on the PR today. One question is what exception should be thrown for the non-nullable versions when they deserialize a null?
Okay. I'll look into what strictNullChecks throws. I was originally going to just throw a new DatabindException, but I wasn't sure how to implement it. ``` class DeserializedNullException() : DatabindException("Deserialized...
This is a well-known issue, but I didn't realize that it had to do with the constructors being synthetic! Is there no way for Jackson to find synthetic stuff at...
@dvail That one should be easy to fix. Single-field class constructors are often problematic, anyway. Try writing: ``` data class MyDataClass @JsonCreator(mode = JsonCreator.DELEGATING) constructor(val i: MyInlineClass) ``` and see...