PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_ts_dict.h File Reference
#include "catalog/genbki.h"
#include "catalog/pg_ts_dict_d.h"
Include dependency graph for pg_ts_dict.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

BEGIN_CATALOG_STRUCT CATALOG (pg_ts_dict, 3600, TSDictionaryRelationId)
 
 DECLARE_TOAST (pg_ts_dict, 4169, 4170)
 
 DECLARE_UNIQUE_INDEX (pg_ts_dict_dictname_index, 3604, TSDictionaryNameNspIndexId, pg_ts_dict, btree(dictname name_ops, dictnamespace oid_ops))
 
 DECLARE_UNIQUE_INDEX_PKEY (pg_ts_dict_oid_index, 3605, TSDictionaryOidIndexId, pg_ts_dict, btree(oid oid_ops))
 
 MAKE_SYSCACHE (TSDICTNAMENSP, pg_ts_dict_dictname_index, 2)
 
 MAKE_SYSCACHE (TSDICTOID, pg_ts_dict_oid_index, 2)
 

Variables

END_CATALOG_STRUCT typedef FormData_pg_ts_dictForm_pg_ts_dict
 
 FormData_pg_ts_dict
 

Function Documentation

◆ CATALOG()

Definition at line 31 of file pg_ts_dict.h.

32{
33 /* oid */
34 Oid oid;
35
36 /* dictionary name */
37 NameData dictname;
38
39 /* name space */
41
42 /* owner */
44
45 /* dictionary's template */
46 Oid dicttemplate BKI_LOOKUP(pg_ts_template);
47
48#ifdef CATALOG_VARLEN /* variable-length fields start here */
49 /* options passed to dict_init() */
50 text dictinitoption;
51#endif
#define BKI_LOOKUP(catalog)
Definition genbki.h:65
#define BKI_DEFAULT(value)
Definition genbki.h:54
FormData_pg_ts_dict
Definition pg_ts_dict.h:52
unsigned int Oid
static int fb(int x)
Definition c.h:772
Definition c.h:718

References BKI_DEFAULT, BKI_LOOKUP, and fb().

◆ DECLARE_TOAST()

DECLARE_TOAST ( pg_ts_dict  ,
4169  ,
4170   
)

◆ DECLARE_UNIQUE_INDEX()

DECLARE_UNIQUE_INDEX ( pg_ts_dict_dictname_index  ,
3604  ,
TSDictionaryNameNspIndexId  ,
pg_ts_dict  ,
btree(dictname name_ops, dictnamespace oid_ops  
)

◆ DECLARE_UNIQUE_INDEX_PKEY()

DECLARE_UNIQUE_INDEX_PKEY ( pg_ts_dict_oid_index  ,
3605  ,
TSDictionaryOidIndexId  ,
pg_ts_dict  ,
btree(oid oid_ops  
)

◆ MAKE_SYSCACHE() [1/2]

MAKE_SYSCACHE ( TSDICTNAMENSP  ,
pg_ts_dict_dictname_index  ,
 
)

◆ MAKE_SYSCACHE() [2/2]

MAKE_SYSCACHE ( TSDICTOID  ,
pg_ts_dict_oid_index  ,
 
)

Variable Documentation

◆ Form_pg_ts_dict

◆ FormData_pg_ts_dict

FormData_pg_ts_dict

Definition at line 52 of file pg_ts_dict.h.