Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef PG_TS_DICT_H
00022 #define PG_TS_DICT_H
00023
00024 #include "catalog/genbki.h"
00025
00026
00027
00028
00029
00030
00031 #define TSDictionaryRelationId 3600
00032
00033 CATALOG(pg_ts_dict,3600)
00034 {
00035 NameData dictname;
00036 Oid dictnamespace;
00037 Oid dictowner;
00038 Oid dicttemplate;
00039
00040 #ifdef CATALOG_VARLEN
00041 text dictinitoption;
00042 #endif
00043 } FormData_pg_ts_dict;
00044
00045 typedef FormData_pg_ts_dict *Form_pg_ts_dict;
00046
00047
00048
00049
00050
00051 #define Natts_pg_ts_dict 5
00052 #define Anum_pg_ts_dict_dictname 1
00053 #define Anum_pg_ts_dict_dictnamespace 2
00054 #define Anum_pg_ts_dict_dictowner 3
00055 #define Anum_pg_ts_dict_dicttemplate 4
00056 #define Anum_pg_ts_dict_dictinitoption 5
00057
00058
00059
00060
00061
00062
00063 DATA(insert OID = 3765 ( "simple" PGNSP PGUID 3727 _null_));
00064 DESCR("simple dictionary: just lower case and check for stopword");
00065
00066 #endif