Closed
Description
I try read bool column type, but get NotImplementedException "TODO: add support for custom serialization.". In same time nullable bool column type works fine.
Can you solve this problem?
FROM YOUR SOURCE CODE:
ClickHouseTcpClient row 421
if (_client.ServerInfo.Revision >= ClickHouseProtocolRevisions.MinRevisionWithCustomSerialization)
{
var hasCustom = await reader.ReadBool(async, cancellationToken);
if (hasCustom)
throw new NotImplementedException("TODO: add support for custom serialization.");
}
PS: clickhouse version 24.1.5.6