PostgreSQL Source Code git master
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.

Typedefs

typedef FormData_pg_ts_dictForm_pg_ts_dict
 

Functions

 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

 FormData_pg_ts_dict
 

Typedef Documentation

◆ Form_pg_ts_dict

Definition at line 52 of file pg_ts_dict.h.

Function Documentation

◆ CATALOG()

CATALOG ( pg_ts_dict  ,
3600  ,
TSDictionaryRelationId   
)

Definition at line 29 of file pg_ts_dict.h.

30{
31 /* oid */
32 Oid oid;
33
34 /* dictionary name */
35 NameData dictname;
36
37 /* name space */
38 Oid dictnamespace BKI_DEFAULT(pg_catalog) BKI_LOOKUP(pg_namespace);
39
40 /* owner */
41 Oid dictowner BKI_DEFAULT(POSTGRES) BKI_LOOKUP(pg_authid);
42
43 /* dictionary's template */
44 Oid dicttemplate BKI_LOOKUP(pg_ts_template);
45
46#ifdef CATALOG_VARLEN /* variable-length fields start here */
47 /* options passed to dict_init() */
48 text dictinitoption;
49#endif
#define BKI_LOOKUP(catalog)
Definition: genbki.h:46
#define BKI_DEFAULT(value)
Definition: genbki.h:35
FormData_pg_ts_dict
Definition: pg_ts_dict.h:50
unsigned int Oid
Definition: postgres_ext.h:32
Definition: c.h:698
Definition: c.h:644

References BKI_DEFAULT, and BKI_LOOKUP.

◆ 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

◆ FormData_pg_ts_dict

FormData_pg_ts_dict

Definition at line 50 of file pg_ts_dict.h.