MCPcopy Create free account
hub / github.com/apache/impala / StringConcatMerge

Function StringConcatMerge

be/src/udf_samples/uda-sample.cc:113–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113IMPALA_UDF_EXPORT
114void StringConcatMerge(FunctionContext* context, const StringVal& src, StringVal* dst) {
115 if (src.is_null) return;
116 StringConcatUpdate(context, src, ",", dst);
117}
118
119IMPALA_UDF_EXPORT
120StringVal StringConcatFinalize(FunctionContext* context, const StringVal& val) {

Callers

nothing calls this directly

Calls 1

StringConcatUpdateFunction · 0.85

Tested by

no test coverage detected