ClickHouse/tests/queries/0_stateless/data_avro/references.avsc

39 lines
898 B
JSON
Raw Normal View History

2020-02-01 04:13:12 +00:00
{
"type": "record",
"name": "row",
"fields": [
{
"name": "a",
"type": {
"name": "fixed_2",
"type": "fixed",
"size": 2
}
},
{
"name": "b",
"type": {
"type": "record",
"name": "LongList",
"fields": [
{
"name": "value",
"type": "long"
},
{
"name": "next",
"type": [
"null",
"LongList",
"fixed_2"
]
}
]
}
},
{
"name": "c",
"type": "fixed_2"
}
]
}