Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix compile error on HP C.
authorThomas Munro <tmunro@postgresql.org>
Tue, 28 Jan 2020 07:30:40 +0000 (20:30 +1300)
committerThomas 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

index ef7b472381fd989a91ae5da3bd8f806154cd7398..854136e9fa35a621f320c159ac2252198ec784c0 100644 (file)
@@ -9134,5 +9134,5 @@ HeapCheckForSerializableConflictOut(bool visible, Relation relation,
    if (TransactionIdPrecedes(xid, TransactionXmin))
        return;
 
-   return CheckForSerializableConflictOut(relation, xid, snapshot);
+   CheckForSerializableConflictOut(relation, xid, snapshot);
 }