MCPcopy Create free account
hub / github.com/apache/arrow / concat_utf8_utf8

Function concat_utf8_utf8

cpp/src/gandiva/precompiled/string_ops.cc:889–900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

887}
888
889FORCE_INLINE
890const char* concat_utf8_utf8(gdv_int64 context, const char* left, gdv_int32 left_len,
891 bool left_validity, const char* right, gdv_int32 right_len,
892 bool right_validity, gdv_int32* out_len) {
893 if (!left_validity) {
894 left_len = 0;
895 }
896 if (!right_validity) {
897 right_len = 0;
898 }
899 return concatOperator_utf8_utf8(context, left, left_len, right, right_len, out_len);
900}
901
902FORCE_INLINE
903const char* concatOperator_utf8_utf8(gdv_int64 context, const char* left,

Callers 1

TESTFunction · 0.85

Calls 1

concatOperator_utf8_utf8Function · 0.85

Tested by 1

TESTFunction · 0.68