Can the concatentation limit be increased beyond 5?

Can the concencatination function be altered to allow more than five strings to be concatenated? Right now, I have to right several different functions to concatenate 5 strings each and then nest these concatenations within another function. This is not a highest prority feature request due to the workaround but a nice to have.

The limit is actually 10 strings, but you can always make nested concatenates like:

concatenate(“abc”, concatenate(“123”, “456”), concatenate(“678”, “90”))

Call depth is not limited.

Thanks Uldis. Your right, I was concatenating 5 stings and 5 OIDs for 10 total.