clickhouse-format 0.3.0

ClickHouse Formats
Documentation
{
    "meta": [
        {
            "name": "array1",
            "type": "Array(UInt8)"
        },
        {
            "name": "array2",
            "type": "Array(String)"
        },
        {
            "name": "tuple1",
            "type": "Tuple(UInt8, String)"
        },
        {
            "name": "tuple2",
            "type": "Tuple(UInt8, Nullable(String))"
        },
        {
            "name": "map1",
            "type": "Map(String,String)"
        }
    ],
    "data": [
        {
            "array1": "[1,2]",
            "array2": "['a','b']",
            "tuple1": "(1,'a')",
            "tuple2": "(1,NULL)",
            "map1": "{'1':'Ready','2':'Steady','3':'Go'}"
        },
        {
            "array1": "[3,4]",
            "array2": "['c','d']",
            "tuple1": "(2,'b')",
            "tuple2": "(2,'b')",
            "map1": "{}"
        }
    ],
    "rows": 2,
    "statistics": {
        "elapsed": 0.000372392,
        "rows_read": 2,
        "bytes_read": 207
    }
}