Hello every experts,What about maximum length of element of array in ClickHousesuch as:Array(String),Array(Int64),Array(int32)from https://clickhouse-docs.readthedocs.io/en/latest/functions/array_functions.htmlrange(N)
Returns an array of numbers from 0 to N-1. Just in case, an exception is thrown if arrays with a total length of more than 100,000,000 elements are created in a data block.
It seems not more than 100,000,000 elements.
Please help to confirm.
Thanks a lot.
Sincerely Jack.
What about maximum length of element of array in ClickHouseThere is no limit. Probably MaxUINT64 is the maximum length.
>range(N) 100,000,000 elements are created in a data block
It's a safety fuse against accidental mis-usage of range function.