| 111 | } |
| 112 | |
| 113 | IMPALA_UDF_EXPORT |
| 114 | void StringConcatMerge(FunctionContext* context, const StringVal& src, StringVal* dst) { |
| 115 | if (src.is_null) return; |
| 116 | StringConcatUpdate(context, src, ",", dst); |
| 117 | } |
| 118 | |
| 119 | IMPALA_UDF_EXPORT |
| 120 | StringVal StringConcatFinalize(FunctionContext* context, const StringVal& val) { |
nothing calls this directly
no test coverage detected