| 123 | #if USE_EMBEDDED_COMPILER |
| 124 | |
| 125 | bool 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 | |
| 134 | void AggregateFunctionCount::compileCreate(llvm::IRBuilderBase & builder, llvm::Value * aggregate_data_ptr) const |
| 135 | { |
nothing calls this directly
no test coverage detected