Skip to content

Commit

Permalink
Add a test case for null value (#12462)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliren authored and suhomud committed May 23, 2022
1 parent fe0cd7b commit 22e51bd
Showing 1 changed file with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1605,5 +1605,48 @@
"node_id": "abc123",
"_airbyte_additional_properties": null
}
},
{
"schemaName": "nullable_value",
"namespace": "namespace22",
"appendAirbyteFields": false,
"jsonSchema": {
"type": "object",
"properties": {
"node_id": {
"type": ["null", "number"]
}
}
},
"jsonObject": {
"node_id": null
},
"avroSchema": {
"type": "record",
"name": "nullable_value",
"namespace": "namespace22",
"fields": [
{
"name": "node_id",
"type": ["null", "double"],
"default": null
},
{
"name": "_airbyte_additional_properties",
"type": [
"null",
{
"type": "map",
"values": "string"
}
],
"default": null
}
]
},
"avroObject": {
"node_id": null,
"_airbyte_additional_properties": null
}
}
]

0 comments on commit 22e51bd

Please sign in to comment.