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
Until now, null values received from OData servers get substituted by
type specific default values.
Users could not differentiate between those substitutes and actual
values retrieved by the server, which might coincidentally equal the
default ones inserted by pyodata.
This commit allows the user to disable the substitution of null values,
retrieving a None object instead.
Example for Edm.Binary:
| Server | pyodata old behavior | pyodata new (retain_null=True) |
|--------+----------------------+--------------------------------|
| 0 | 0 | 0 |
| null | 0 | None |
0 commit comments