mirror of https://github.com/citusdata/citus.git
23 lines
548 B
C
23 lines
548 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* transaction_recovery.h
|
|
* Type and function declarations used in recovering 2PC transactions.
|
|
*
|
|
* Copyright (c) 2016, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef TRANSACTION_RECOVERY_H
|
|
#define TRANSACTION_RECOVERY_H
|
|
|
|
|
|
#include "nodes/pg_list.h"
|
|
|
|
|
|
/* Functions declarations for worker transactions */
|
|
extern void LogPreparedTransactions(List *connectionList);
|
|
|
|
|
|
#endif /* TRANSACTION_RECOVERY_H */
|