We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Simply speaking LowCardinality feature is the engine hint to treat type column of T as a dictionary.
T
From the driver perspective LowCardinality(T) is simply T e.g. LowCardinality(String) is String.
LowCardinality(T)
LowCardinality(String)
String
As for now, driver throws NotSupported Exception
NotSupported Exception
The text was updated successfully, but these errors were encountered:
#2 LowCardinality(T) type
2ec1430
victor-sushko
No branches or pull requests
Simply speaking LowCardinality feature is the engine hint to treat type column of
T
as a dictionary.From the driver perspective
LowCardinality(T)
is simplyT
e.g.LowCardinality(String)
isString
.As for now, driver throws
NotSupported Exception
The text was updated successfully, but these errors were encountered: