From ee29c51a497d8056cbc66da2d674b95da194c27c Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 25 Apr 2024 21:45:26 -0700 Subject: [PATCH] Added comment [skip ci] --- src/vector.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vector.c b/src/vector.c index fd81a5c..4ba7ce1 100644 --- a/src/vector.c +++ b/src/vector.c @@ -1203,6 +1203,7 @@ PGDLLEXPORT PG_FUNCTION_INFO_V1(vector_combine); Datum vector_combine(PG_FUNCTION_ARGS) { + /* Must also update parameters of halfvec_combine if modifying */ ArrayType *statearray1 = PG_GETARG_ARRAYTYPE_P(0); ArrayType *statearray2 = PG_GETARG_ARRAYTYPE_P(1); float8 *statevalues1;