-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
Description:
In version v2.0.5, when inserting into a table with a column of type LowCardinality(Nullable(String)), the column value is always null.
Steps to reproduce:
Just run this code and then do "SELECT * FROM TestTable", and you can see that the selected row has column string1 with value null. If running the exact same SQL statements in the ClickHouse HTTP client, the row has the expected value 'Test1'.
using (ClickHouseConnection connection = new ClickHouseConnection(connectionString))
{
connection.Open();
using (ClickHouseCommand command = connection.CreateCommand())
{
command.CommandText = @"CREATE TABLE TestTable
(
`id` UInt32,
`string1` LowCardinality(Nullable(String)),
`string2` Nullable(String)
)
ENGINE = MergeTree()
ORDER BY (id)";
command.ExecuteNonQuery();
}
using (ClickHouseCommand command = connection.CreateCommand())
{
command.CommandText = "INSERT INTO TestTable(id, string1, string2) VALUES (1,'Test1','Test2')";
command.ExecuteNonQuery();
}
}
What should be done:
Add support for columns of type LowCardinality(Nullable(String))
Metadata
Metadata
Assignees
Labels
No labels