mirror of https://github.com/citusdata/citus.git
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* transaction_identifier.h
|
|
*
|
|
* Data structure for distributed transaction id and related function
|
|
* declarations.
|
|
*
|
|
* Copyright (c) 2017, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef TRANSACTION_IDENTIFIER_H
|
|
#define TRANSACTION_IDENTIFIER_H
|
|
|
|
|
|
#include "datatype/timestamp.h"
|
|
|
|
|
|
/*
|
|
* Citus identifies a distributed transaction with a triplet consisting of
|
|
*
|
|
* - initiatorNodeIdentifier: A unique identifier of the node that initiated
|
|
* the distributed transaction
|
|
* - transactionNumber: A locally unique identifier assigned for the distributed
|
|
* transaction on the node that initiated the distributed transaction
|
|
* - timestamp: The current timestamp of distributed transaction initiation
|
|
*
|
|
*/
|
|
typedef struct DistributedTransactionId
|
|
{
|
|
int initiatorNodeIdentifier;
|
|
uint64 transactionNumber;
|
|
TimestampTz timestamp;
|
|
} DistributedTransactionId;
|
|
|
|
|
|
extern DistributedTransactionId * GetCurrentDistributedTransactionId(void);
|
|
extern uint64 CurrentDistributedTransactionNumber(void);
|
|
|
|
#endif /* TRANSACTION_IDENTIFIER_H */
|