Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b61ba6

Browse files
committed
DataFill() has no business resetting xact status bits
in the infomask of the provided tuple.
1 parent d0273c0 commit 3b61ba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/common/heaptuple.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.64 2000/07/03 23:09:10 wieck Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.65 2000/07/04 02:40:56 tgl Exp $
1313
*
1414
* NOTES
1515
* The old interface functions have been converted to macros
@@ -90,7 +90,7 @@ DataFill(char *data,
9090
bitmask = CSIGNBIT;
9191
}
9292

93-
*infomask = 0;
93+
*infomask &= HEAP_XACT_MASK;
9494

9595
for (i = 0; i < numberOfAttributes; i++)
9696
{

0 commit comments

Comments
 (0)