Added comments [skip ci]

This commit is contained in:
Andrew Kane
2023-06-08 23:02:03 -07:00
parent 2115630fb0
commit 7335a122db

View File

@@ -903,6 +903,7 @@ vector_accum(PG_FUNCTION_ARGS)
{
double v = statevalues[i + 1] + x[i];
/* Check for overflow */
if (isinf(v))
{
pfree(statedatums);
@@ -974,6 +975,7 @@ vector_combine(PG_FUNCTION_ARGS)
{
double v = statevalues1[i] + statevalues2[i];
/* Check for overflow */
if (isinf(v))
{
pfree(statedatums);