Shave a few cycles in string_agg().
Pavel Stehule
This commit is contained in:
parent
1db5af2794
commit
7f0e4bb82e
@ -3621,7 +3621,7 @@ string_agg_finalfn(PG_FUNCTION_ARGS)
|
|||||||
state = PG_ARGISNULL(0) ? NULL : (StringInfo) PG_GETARG_POINTER(0);
|
state = PG_ARGISNULL(0) ? NULL : (StringInfo) PG_GETARG_POINTER(0);
|
||||||
|
|
||||||
if (state != NULL)
|
if (state != NULL)
|
||||||
PG_RETURN_TEXT_P(cstring_to_text(state->data));
|
PG_RETURN_TEXT_P(cstring_to_text_with_len(state->data, state->len));
|
||||||
else
|
else
|
||||||
PG_RETURN_NULL();
|
PG_RETURN_NULL();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user