PostgreSQL Source Code  git master
pg_ts_config_map.h File Reference
#include "catalog/genbki.h"
#include "catalog/pg_ts_config_map_d.h"
Include dependency graph for pg_ts_config_map.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_config_mapForm_pg_ts_config_map
 

Functions

 CATALOG (pg_ts_config_map, 3603, TSConfigMapRelationId)
 
 DECLARE_UNIQUE_INDEX_PKEY (pg_ts_config_map_index, 3609, TSConfigMapIndexId, pg_ts_config_map, btree(mapcfg oid_ops, maptokentype int4_ops, mapseqno int4_ops))
 
 MAKE_SYSCACHE (TSCONFIGMAP, pg_ts_config_map_index, 2)
 

Variables

 FormData_pg_ts_config_map
 

Typedef Documentation

◆ Form_pg_ts_config_map

Function Documentation

◆ CATALOG()

CATALOG ( pg_ts_config_map  ,
3603  ,
TSConfigMapRelationId   
)

Definition at line 30 of file pg_ts_config_map.h.

31 {
32  /* OID of configuration owning this entry */
33  Oid mapcfg BKI_LOOKUP(pg_ts_config);
34 
35  /* token type from parser */
36  int32 maptokentype;
37 
38  /* order in which to consult dictionaries */
39  int32 mapseqno;
40 
41  /* dictionary to consult */
42  Oid mapdict BKI_LOOKUP(pg_ts_dict);
signed int int32
Definition: c.h:494
#define BKI_LOOKUP(catalog)
Definition: genbki.h:46
FormData_pg_ts_config_map
unsigned int Oid
Definition: postgres_ext.h:31

References BKI_LOOKUP.

◆ DECLARE_UNIQUE_INDEX_PKEY()

DECLARE_UNIQUE_INDEX_PKEY ( pg_ts_config_map_index  ,
3609  ,
TSConfigMapIndexId  ,
pg_ts_config_map  ,
btree(mapcfg oid_ops, maptokentype int4_ops, mapseqno int4_ops)   
)

◆ MAKE_SYSCACHE()

MAKE_SYSCACHE ( TSCONFIGMAP  ,
pg_ts_config_map_index  ,
 
)

Variable Documentation

◆ FormData_pg_ts_config_map

FormData_pg_ts_config_map

Definition at line 43 of file pg_ts_config_map.h.

Referenced by DefineTSConfiguration(), and MakeConfigurationMapping().