MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / isCompilable

Method isCompilable

src/AggregateFunctions/AggregateFunctionCount.cpp:125–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123#if USE_EMBEDDED_COMPILER
124
125bool AggregateFunctionCount::isCompilable() const
126{
127 bool is_compilable = true;
128 for (const auto & argument_type : argument_types)
129 is_compilable &= canBeNativeType(*argument_type);
130
131 return is_compilable;
132}
133
134void AggregateFunctionCount::compileCreate(llvm::IRBuilderBase & builder, llvm::Value * aggregate_data_ptr) const
135{

Callers

nothing calls this directly

Calls 1

canBeNativeTypeFunction · 0.50

Tested by

no test coverage detected