Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78aaa0e
)
Fix compile error on HP C.
author
Thomas Munro
<tmunro@postgresql.org>
Tue, 28 Jan 2020 07:30:40 +0000
(20:30 +1300)
committer
Thomas Munro
<tmunro@postgresql.org>
Tue, 28 Jan 2020 07:30:40 +0000
(20:30 +1300)
Per build farm animal anole, after commit
6f38d4dac3
.
src/backend/access/heap/heapam.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/access/heap/heapam.c
b/src/backend/access/heap/heapam.c
index ef7b472381fd989a91ae5da3bd8f806154cd7398..854136e9fa35a621f320c159ac2252198ec784c0 100644
(file)
--- a/
src/backend/access/heap/heapam.c
+++ b/
src/backend/access/heap/heapam.c
@@
-9134,5
+9134,5
@@
HeapCheckForSerializableConflictOut(bool visible, Relation relation,
if (TransactionIdPrecedes(xid, TransactionXmin))
return;
-
return
CheckForSerializableConflictOut(relation, xid, snapshot);
+ CheckForSerializableConflictOut(relation, xid, snapshot);
}