1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Tsearch2 functionality migrates to core. The bulk of this work is by

Oleg Bartunov and Teodor Sigaev, but I did a lot of editorializing,
so anything that's broken is probably my fault.

Documentation is nonexistent as yet, but let's land the patch so we can
get some portability testing done.
This commit is contained in:
Tom Lane
2007-08-21 01:11:32 +00:00
parent 4e94d1f952
commit 140d4ebcb4
200 changed files with 54388 additions and 147 deletions

View File

@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.69 2007/04/02 03:49:41 tgl Exp $
* $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.70 2007/08/21 01:11:30 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -65,8 +65,17 @@
#define RELOID 34
#define RULERELNAME 35
#define STATRELATT 36
#define TYPENAMENSP 37
#define TYPEOID 38
#define TSCONFIGMAP 37
#define TSCONFIGNAMENSP 38
#define TSCONFIGOID 39
#define TSDICTNAMENSP 40
#define TSDICTOID 41
#define TSPARSERNAMENSP 42
#define TSPARSEROID 43
#define TSTEMPLATENAMENSP 44
#define TSTEMPLATEOID 45
#define TYPENAMENSP 46
#define TYPEOID 47
extern void InitCatalogCache(void);
extern void InitCatalogCachePhase2(void);