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

17 lines
434 B
JSON
Raw Normal View History

2020-04-18 20:15:39 +00:00
{
"type": "record",
"name": "main",
"fields": [
{"name": "a", "type": "long"},
{"name": "b", "type": {
"type": "record",
"name": "sub1",
"fields": [
{"name": "a", "type": "string"},
{"name": "b", "type": "double"},
{"name": "c", "type": "double"}
]
}},
{"name": "c", "type": "string"}
]
}