You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some past SQLiteEncoder skips to update the column if the Codable's optional field is nil
Seems after #838 it starts to place null if the value is nil, which is not convenient in some cases (often you want to update only part of the fields)
Please provide either
example/docs how to update only non-nil fields
additional Encoder setting that would configure this behaviour
The text was updated successfully, but these errors were encountered:
There wasn't really any change done as part of #838 (it looks like the issue was closed without resolving it).
The last changes to the codable functionality was done in #1138
In some past SQLiteEncoder skips to update the column if the Codable's optional field is
nil
Seems after #838 it starts to place
null
if the value isnil
, which is not convenient in some cases (often you want to update only part of the fields)Please provide either
The text was updated successfully, but these errors were encountered: