Nullibility
{
"type": "record",
"name": "record",
"namespace": "example",
"doc": "A schema representing a nullable type.",
"fields": [
{
"name": "property",
"type": [
"null",
"double"
],
"doc": "A property that can be null or a double."
}
]
}Using nullable types
Address nullability
COALESCE
AS_NON_NULLABLE
AS_NON_NULLABLE and CASE
AS_NULLABLE
Last updated
Was this helpful?

