PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_ts_config.h File Reference
#include "catalog/genbki.h"
#include "catalog/pg_ts_config_d.h"
Include dependency graph for pg_ts_config.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_config, 3602, TSConfigRelationId)
 
 DECLARE_UNIQUE_INDEX (pg_ts_config_cfgname_index, 3608, TSConfigNameNspIndexId, pg_ts_config, btree(cfgname name_ops, cfgnamespace oid_ops))
 
 DECLARE_UNIQUE_INDEX_PKEY (pg_ts_config_oid_index, 3712, TSConfigOidIndexId, pg_ts_config, btree(oid oid_ops))
 
 MAKE_SYSCACHE (TSCONFIGNAMENSP, pg_ts_config_cfgname_index, 2)
 
 MAKE_SYSCACHE (TSCONFIGOID, pg_ts_config_oid_index, 2)
 

Variables

END_CATALOG_STRUCT typedef FormData_pg_ts_configForm_pg_ts_config
 
 FormData_pg_ts_config
 

Function Documentation

◆ CATALOG()

BEGIN_CATALOG_STRUCT CATALOG ( pg_ts_config  ,
3602  ,
TSConfigRelationId   
)

Definition at line 32 of file pg_ts_config.h.

33{
34 /* oid */
35 Oid oid;
36
37 /* name of configuration */
38 NameData cfgname;
39
40 /* name space */
42
43 /* owner */
45
46 /* OID of parser */
47 Oid cfgparser BKI_LOOKUP(pg_ts_parser);
#define BKI_LOOKUP(catalog)
Definition genbki.h:65
#define BKI_DEFAULT(value)
Definition genbki.h:54
FormData_pg_ts_config
unsigned int Oid
static int fb(int x)
Definition c.h:772

References BKI_DEFAULT, BKI_LOOKUP, and fb().

◆ DECLARE_UNIQUE_INDEX()

DECLARE_UNIQUE_INDEX ( pg_ts_config_cfgname_index  ,
3608  ,
TSConfigNameNspIndexId  ,
pg_ts_config  ,
btree(cfgname name_ops, cfgnamespace oid_ops  
)

◆ DECLARE_UNIQUE_INDEX_PKEY()

DECLARE_UNIQUE_INDEX_PKEY ( pg_ts_config_oid_index  ,
3712  ,
TSConfigOidIndexId  ,
pg_ts_config  ,
btree(oid oid_ops  
)

◆ MAKE_SYSCACHE() [1/2]

MAKE_SYSCACHE ( TSCONFIGNAMENSP  ,
pg_ts_config_cfgname_index  ,
 
)

◆ MAKE_SYSCACHE() [2/2]

MAKE_SYSCACHE ( TSCONFIGOID  ,
pg_ts_config_oid_index  ,
 
)

Variable Documentation

◆ Form_pg_ts_config

◆ FormData_pg_ts_config

FormData_pg_ts_config

Definition at line 48 of file pg_ts_config.h.