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": [
        [
            [
                1,
                2
            ],
            [
                "a",
                "b"
            ],
            [
                1,
                "a"
            ],
            [
                1,
                null
            ],
            {
                "1": "Ready",
                "2": "Steady",
                "3": "Go"
            }
        ],
        [
            [
                3,
                4
            ],
            [
                "c",
                "d"
            ],
            [
                2,
                "b"
            ],
            [
                2,
                "b"
            ],
            {}
        ]
    ],
    "rows": 2,
    "statistics": {
        "elapsed": 0.000315355,
        "rows_read": 2,
        "bytes_read": 207
    }
}