Skip to content

Commit 7245353

Browse files
author
Alexander Korotkov
committed
Fix xmin, xmax pass by value.
1 parent 7506f72 commit 7245353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/heap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ static FormData_pg_attribute a2 = {
150150
static FormData_pg_attribute a3 = {
151151
0, {"xmin"}, XIDOID, 0, sizeof(TransactionId),
152152
MinTransactionIdAttributeNumber, 0, -1, -1,
153-
true, 'p', 'd', true, false, false, true, 0
153+
FLOAT8PASSBYVAL, 'p', 'd', true, false, false, true, 0
154154
};
155155

156156
static FormData_pg_attribute a4 = {
@@ -162,7 +162,7 @@ static FormData_pg_attribute a4 = {
162162
static FormData_pg_attribute a5 = {
163163
0, {"xmax"}, XIDOID, 0, sizeof(TransactionId),
164164
MaxTransactionIdAttributeNumber, 0, -1, -1,
165-
true, 'p', 'd', true, false, false, true, 0
165+
FLOAT8PASSBYVAL, 'p', 'd', true, false, false, true, 0
166166
};
167167

168168
static FormData_pg_attribute a6 = {

0 commit comments

Comments
 (0)