We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97441e1 commit 8322d6cCopy full SHA for 8322d6c
src/ruminsert.c
@@ -201,6 +201,8 @@ RumFormTuple(RumState * rumstate,
201
{
202
itup = repalloc(itup, newsize);
203
204
+ memset((char *) itup + IndexTupleSize(itup),
205
+ 0, newsize - IndexTupleSize(itup));
206
/* set new size in tuple header */
207
itup->t_info &= ~INDEX_SIZE_MASK;
208
itup->t_info |= newsize;
src/rumvacuum.c
@@ -182,6 +182,8 @@ RumFormTuple(RumState * rumstate,
182
183
184
185
186
187
188
189
0 commit comments