You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
MaceWindu, abbaabbbaabbbbbaa, MrDoe and SergeyMirvoda