Cody Engel
12/18/2019, 11:15 PMString
will be nullabe, so ColumnAdapter<OffsetDateTime, String?>
how the generated code from SQLDelight removes that so it still expects ColumnAdapter<OffsetDateTime, String>
which breaks my solution of:
sealed class SentDate {
object NotSent : SentDate()
data class Sent(val at: OffsetDateTime): SentDate()
}
Is this truly how we want the library to be used? Ignoring null entirely when it comes to ColumnAdapter feels more like a bug than a feature.