Sign in
apache
/
avro
/
refs/heads/remove-python-37-and-38
/
.
/
lang
/
java
/
compiler
/
src
/
test
/
idl
/
input
/
union.avdl
blob: 19f37f2f7489ff7c25c35095d346ecf215c440c4 [
file
]
@namespace
(
"org.apache.avro.gen"
)
protocol
UnionFwd
{
record
TestRecord
{
union
{
SR1
,
SR2
}
unionField
;
}
record SR1
{
string
field
;
}
record SR2
{
string
field
;
}
}