forked from ssinger/slony1-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_msvc.h
52 lines (47 loc) · 1.38 KB
/
config_msvc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef SLONY_I_CONFIG_H
#define SLONY_I_CONFIG_H
#include <server/pg_config.h>
#define SLONY_I_VERSION_STRING "2.2.0"
#define SLONY_I_VERSION_STRING_DEC 2,2,0
#define SLONY_I_FUNC_VERSION_STRING 2_2_0
#if PG_VERSION_NUM >=90600
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_8 1
#define HAS_LOOKUPEXPLICITNAMESPACE_2 1
#define GETCONFIGOPTIONBYNAME_3
#elif PG_VERSION_NUM >= 90500
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_8 1
#define HAS_LOOKUPEXPLICITNAMESPACE_2 1
#define GETCONFIGOPTIONBYNAME_2
#elif PG_VERSION_NUM >= 90300
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_7 1
#define HAS_LOOKUPEXPLICITNAMESPACE_2 1
#define GETCONFIGOPTIONBYNAME_2
#elif PG_VERSION_NUM >= 90200
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_7 1
#define GETCONFIGOPTIONBYNAME_2
#elif PG_VERSION_NUM >= 90000
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_6 1
#define GETCONFIGOPTIONBYNAME_2
#elif PG_VERSION_NUM >= 80400
#define HAVE_GETACTIVESNAPSHOT 1
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_6 1
#define GETCONFIGOPTIONBYNAME_2
#elif PG_VERSION_NUM >= 80300
#define HAVE_TYPCACHE 1
#define SETCONFIGOPTION_6 1
#define GETCONFIGOPTIONBYNAME_2
#else
#error "Postgresql 8.3 or higher is required"
#endif
#endif /* SLONY_I_CONFIG_H */