Header And Logo

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

Defines | Typedefs | Functions | Variables

pg_ts_template.h File Reference

#include "catalog/genbki.h"
Include dependency graph for pg_ts_template.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define TSTemplateRelationId   3764
#define Natts_pg_ts_template   4
#define Anum_pg_ts_template_tmplname   1
#define Anum_pg_ts_template_tmplnamespace   2
#define Anum_pg_ts_template_tmplinit   3
#define Anum_pg_ts_template_tmpllexize   4

Typedefs

typedef FormData_pg_ts_templateForm_pg_ts_template

Functions

 CATALOG (pg_ts_template, 3764)
 DATA (insert OID=3727("simple"PGNSP dsimple_init dsimple_lexize))
 DESCR ("simple dictionary: just lower case and check for stopword")
 DESCR ("synonym dictionary: replace word by its synonym")
 DESCR ("ispell dictionary")
 DESCR ("thesaurus dictionary: phrase by phrase substitution")

Variables

 FormData_pg_ts_template

Define Documentation

#define Anum_pg_ts_template_tmplinit   3

Definition at line 50 of file pg_ts_template.h.

Referenced by DefineTSTemplate(), and get_ts_template_func().

#define Anum_pg_ts_template_tmpllexize   4

Definition at line 51 of file pg_ts_template.h.

Referenced by DefineTSTemplate(), and get_ts_template_func().

#define Anum_pg_ts_template_tmplname   1

Definition at line 48 of file pg_ts_template.h.

Referenced by DefineTSTemplate().

#define Anum_pg_ts_template_tmplnamespace   2

Definition at line 49 of file pg_ts_template.h.

Referenced by DefineTSTemplate().

#define Natts_pg_ts_template   4

Definition at line 47 of file pg_ts_template.h.

#define TSTemplateRelationId   3764

Typedef Documentation

Definition at line 41 of file pg_ts_template.h.


Function Documentation

CATALOG ( pg_ts_template  ,
3764   
)

Definition at line 33 of file pg_ts_template.h.

{
    NameData    tmplname;       /* template name */
    Oid         tmplnamespace;  /* name space */
    regproc     tmplinit;       /* initialization method of dict (may be 0) */
    regproc     tmpllexize;     /* base method of dictionary */
} FormData_pg_ts_template;

DATA ( insert  OID = 3727("simple"PGNSP dsimple_init dsimple_lexize)  ) 
DESCR ( "ispell dictionary"   ) 
DESCR ( "synonym dictionary: replace word by its synonym"   ) 
DESCR ( "simple dictionary: just lower case and check for stopword"   ) 
DESCR ( "thesaurus dictionary: phrase by phrase substitution"   ) 

Variable Documentation

Definition at line 39 of file pg_ts_template.h.