mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
UINT64_MAX isn't defined on MSVC.
This commit is contained in:
parent
faa0550572
commit
f9f9d696a9
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ typedef uint64 SerCommitSeqNo;
|
|||
* at that point. It's earlier than all normal sequence numbers,
|
||||
* and is only used by recovered prepared transactions
|
||||
*/
|
||||
#define InvalidSerCommitSeqNo UINT64_MAX
|
||||
#define InvalidSerCommitSeqNo ((SerCommitSeqNo) UINT64CONST(0xFFFFFFFFFFFFFFFF))
|
||||
#define RecoverySerCommitSeqNo ((SerCommitSeqNo) 1)
|
||||
#define FirstNormalSerCommitSeqNo ((SerCommitSeqNo) 2)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue