-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LowCardinality(Nullable(String)) doesn't work #121
Comments
Можно более конкретный пример? |
Running into the same problem. I had a column of
|
Looks like support for LowCardinality<Nullable> is completely broken in clickhouse itself. I've implemented reading and writing of these types without regard to NULLs as they state in the docs, yet it sometimes eat up the first value on insert. Reads are OK though. For now I think that's sufficient, I don't really understand the need to keep NULL and '' values distinct whilst saying it has 'low cardinality'. |
Description
Если в запросе присутствует поле с типом LowCardinality(Nullable(String)), то запрос просто зависает
Steps to reproduce
Использую для запросов конструкции из ваших примеров и до использования полей LowCardinality(Nullable(String)) всё работало отлично. Теперь же происходит просто зависание. Причем сначала отжирается резко несколько гигов оперативки.
Не работает ни такая конструкция:
do
{
while (reader.Read())
{
}
} while (reader.NextResult());
Ни такая:
The text was updated successfully, but these errors were encountered: