Header And Logo

PostgreSQL
| The world's most advanced open source database.

Defines | Typedefs | Functions | Variables

pg_ts_dict.h File Reference

#include "catalog/genbki.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.

Defines

#define TSDictionaryRelationId   3600
#define Natts_pg_ts_dict   5
#define Anum_pg_ts_dict_dictname   1
#define Anum_pg_ts_dict_dictnamespace   2
#define Anum_pg_ts_dict_dictowner   3
#define Anum_pg_ts_dict_dicttemplate   4
#define Anum_pg_ts_dict_dictinitoption   5

Typedefs

typedef FormData_pg_ts_dictForm_pg_ts_dict

Functions

 CATALOG (pg_ts_dict, 3600)
 DATA (insert OID=3765("simple"PGNSP PGUID 3727 _null_))
 DESCR ("simple dictionary: just lower case and check for stopword")

Variables

 FormData_pg_ts_dict

Define Documentation

#define Anum_pg_ts_dict_dictinitoption   5

Definition at line 56 of file pg_ts_dict.h.

Referenced by AlterTSDictionary(), DefineTSDictionary(), and lookup_ts_dictionary_cache().

#define Anum_pg_ts_dict_dictname   1

Definition at line 52 of file pg_ts_dict.h.

Referenced by DefineTSDictionary().

#define Anum_pg_ts_dict_dictnamespace   2

Definition at line 53 of file pg_ts_dict.h.

Referenced by DefineTSDictionary().

#define Anum_pg_ts_dict_dictowner   3

Definition at line 54 of file pg_ts_dict.h.

Referenced by DefineTSDictionary().

#define Anum_pg_ts_dict_dicttemplate   4

Definition at line 55 of file pg_ts_dict.h.

Referenced by DefineTSDictionary().

#define Natts_pg_ts_dict   5

Definition at line 51 of file pg_ts_dict.h.

#define TSDictionaryRelationId   3600

Typedef Documentation

Definition at line 45 of file pg_ts_dict.h.


Function Documentation

CATALOG ( pg_ts_dict  ,
3600   
)

Definition at line 33 of file pg_ts_dict.h.

{
    NameData    dictname;       /* dictionary name */
    Oid         dictnamespace;  /* name space */
    Oid         dictowner;      /* owner */
    Oid         dicttemplate;   /* dictionary's template */

#ifdef CATALOG_VARLEN           /* variable-length fields start here */
    text        dictinitoption; /* options passed to dict_init() */
#endif
} FormData_pg_ts_dict;

DATA ( insert  OID = 3765("simple"PGNSP PGUID 3727 _null_)  ) 
DESCR ( "simple dictionary: just lower case and check for stopword"   ) 

Variable Documentation

Definition at line 43 of file pg_ts_dict.h.