8000 Fix incorrect value clone in plato_propagate · postgrespro/vops@556b282 · GitHub
[go: up one dir, main page]

Skip to content

Commit 556b282

Browse files
committed
Fix incorrect value clone in plato_propagate
1 parent 6728123 commit 556b282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ Datum vops_populate(PG_FUNCTION_ARGS)
14811481
if (DatumGetPointer(values[i]) != NULL) {
14821482
pfree(DatumGetPointer(values[i]));
14831483
}
1484-
values[i] = datumCopy(val, true, types[i].len);
1484+
values[i] = datumCopy(val, false, types[i].len);
14851485
}
14861486
}
14871487
else if (is_null != nulls[i]

0 commit comments

Comments
 (0)
0