There is a lack of implementation. I tried to implement it by myself but got no luck. Here is a sample method for string array:
public void writeArray(String[] array) throws IOException {
Preconditions.checkNotNull(array);
writeUnsignedLeb128(array.length);
for (String el : array) {
writeString(el);
}
}
With this implementation I get DB::Exception: Cannot read all data from clickhouse server version 1.1.54236.
Do you see what can be wrong with this code?
There is a lack of implementation. I tried to implement it by myself but got no luck. Here is a sample method for string array:
With this implementation I get
DB::Exception: Cannot read all datafrom clickhouse server version 1.1.54236.Do you see what can be wrong with this code?