mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
More comments.
This commit is contained in:
parent
65c8a00e51
commit
5a211b1ab7
@ -42,6 +42,9 @@ namespace ErrorCodes
|
||||
}
|
||||
|
||||
|
||||
/// Cache for functions result if it was executed on low cardinality column.
|
||||
/// It's LRUCache which stores function result executed on dictionary and index mapping.
|
||||
/// It's expected that cache_size is a number of reading streams (so, will store single cached value per thread).
|
||||
class PreparedFunctionLowCardinalityResultCache
|
||||
{
|
||||
public:
|
||||
|
@ -89,8 +89,11 @@ public:
|
||||
ColumnPtr added_column;
|
||||
|
||||
/// For APPLY_FUNCTION and LEFT ARRAY JOIN.
|
||||
/// FunctionBuilder is used before action was added to ExpressionActions (when we don't know types of arguments).
|
||||
FunctionBuilderPtr function_builder;
|
||||
/// Can be used after action was added to ExpressionActions if we want to get function signature or properties like monotonicity.
|
||||
FunctionBasePtr function_base;
|
||||
/// Prepared function which is used in function execution.
|
||||
PreparedFunctionPtr function;
|
||||
Names argument_names;
|
||||
bool is_function_compiled = false;
|
||||
|
Loading…
Reference in New Issue
Block a user