Closed javiercj93 closed 2 months ago
Unable to write to a table with a column type Aggregate Function (groupBitmap)
Try to write this entity
@Data public class Pojo { private int id; private ClickHouseBitmap bitmapcolumn; }
into a table with this schema:
CREATE TABLE IF NOT EXISTS pojo ( id UInt64, bitmapcolumn AggregateFunction(groupBitmap, UInt32) ) ENGINE = MergeTree() ORDER BY (id)
Error:
Unsupported data type
Write pojo to clickhouse table.
I've created this PR which includes support for serializing this type of columns.
Unable to write to a table with a column type Aggregate Function (groupBitmap)
Steps to reproduce
Try to write this entity
into a table with this schema:
Error:
Expected behaviour
Write pojo to clickhouse table.
Configuration
Environment
ClickHouse server
I've created this PR which includes support for serializing this type of columns.