#include "catalog/genbki.h"

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_template * | Form_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 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 |
Definition at line 31 of file pg_ts_template.h.
Referenced by DefineTSTemplate(), getObjectClass(), RemoveTSTemplateById(), and report_namespace_conflict().
Definition at line 41 of file pg_ts_template.h.
| 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" | ) |
Definition at line 39 of file pg_ts_template.h.
1.7.1