blob: 3c9421b9b7512d1239ad48f2285cd83fb7d9fd02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* compat.h
* Compatibility routines to let the JSON module work in PostgreSQL 8.3
*
* Copyright (c) 2011, PostgreSQL Global Development Group
* Arranged by Joey Adams <[email protected]>.
*
*-------------------------------------------------------------------------
*/
#ifndef JSON_COMPAT_H
#define JSON_COMPAT_H
/*** 8.4.3 ***/
#ifndef SearchSysCacheList1
#define SearchSysCacheList1(cacheId, key1) \
SearchSysCacheList(cacheId, 1, key1, 0, 0, 0)
#endif
#endif
|