#include "catalog/genbki.h"
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_dict * | Form_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 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 |
Definition at line 31 of file pg_ts_dict.h.
Referenced by AlterTSDictionary(), DefineTSDictionary(), getObjectClass(), RemoveTSDictionaryById(), and report_namespace_conflict().
typedef FormData_pg_ts_dict* Form_pg_ts_dict |
Definition at line 45 of file pg_ts_dict.h.
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" | ) |
Definition at line 43 of file pg_ts_dict.h.