blob: 4d50f3e82d193d8d88a13495b840efbc0fc97f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* gtm_utils.h
*
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 2010-2012 Postgres-XC Development Group
*
* src/include/gtm/gtm_utils.h
*
*-------------------------------------------------------------------------
*/
#ifndef GTM_UTILS_H
#define GTM_UTILS_H
#include "gtm/libpq-int.h"
#include "gtm/gtm_msg.h"
char *gtm_util_message_name(GTM_MessageType type);
#endif /* GTM_UTILS_H */
|