Skip to content

Instantly share code, notes, and snippets.

@rogpeppe
Created January 20, 2020 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogpeppe/5faf971eec51f3dbd316bb71d6d5dccc to your computer and use it in GitHub Desktop.
Save rogpeppe/5faf971eec51f3dbd316bb71d6d5dccc to your computer and use it in GitHub Desktop.
"unionIntVsLong": {
"inSchema": {
"name": "R",
"type": "record",
"fields": [
{
"name": "F",
"type": [
"int",
"string"
],
"default": 1234
}
]
},
"outSchema": {
"name": "R",
"type": "record",
"fields": [
{
"name": "F",
"type": [
"long",
"int",
"string"
],
"default": 1234
}
]
},
"inData": {
"F": {
"int": 999
}
},
"outData": {
"F": {
"long": 999
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment