-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DeserializeValue:
default_when_null
attribute support
By default, if DB provides null value in serialized data and the corresponding Rust type expects non-null value, deserialization fails. Instead, if `default_when_null` is specified for a field, deserialization yields `Default::default()`. This is important in production: when added a field to a UDT, the existing UDT instances have the new field filled with null, even if the data represented makes no sense to allow nulls. By using `default_when_null`, clients can handle such situation without using `Option` in their Rust struct.
- Loading branch information
Showing
2 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters