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
Currently, only column name is accepted as indexed column for both skipping and covering index. In certain case, user may want to transform the column value before indexing.
What solution would you like?
Support expression in indexed column:
CREATE SKIPPING INDEX ON test
( expr(col) VALUE_SET ... )
The text was updated successfully, but these errors were encountered:
This may be useful for certain use case such as IP address: #203. For such specific field, user can do some cast/transform before indexing it via value set or bloom filter for instance.
Is your feature request related to a problem?
Currently, only column name is accepted as indexed column for both skipping and covering index. In certain case, user may want to transform the column value before indexing.
What solution would you like?
Support expression in indexed column:
The text was updated successfully, but these errors were encountered: