PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pg_ts_dict.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pg_ts_dict.h
4 * definition of the "text search dictionary" system catalog (pg_ts_dict)
5 *
6 *
7 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/catalog/pg_ts_dict.h
11 *
12 * NOTES
13 * The Catalog.pm module reads this file and derives schema
14 * information.
15 *
16 *-------------------------------------------------------------------------
17 */
18#ifndef PG_TS_DICT_H
19#define PG_TS_DICT_H
20
21#include "catalog/genbki.h"
22#include "catalog/pg_ts_dict_d.h" /* IWYU pragma: export */
23
24/* ----------------
25 * pg_ts_dict definition. cpp turns this into
26 * typedef struct FormData_pg_ts_dict
27 * ----------------
28 */
30{
31 /* oid */
32 Oid oid;
33
34 /* dictionary name */
35 NameData dictname;
36
37 /* name space */
39
40 /* owner */
42
43 /* dictionary's template */
44 Oid dicttemplate BKI_LOOKUP(pg_ts_template);
45
46#ifdef CATALOG_VARLEN /* variable-length fields start here */
47 /* options passed to dict_init() */
48 text dictinitoption;
49#endif
51
53
55
58
61
62#endif /* PG_TS_DICT_H */
#define DECLARE_UNIQUE_INDEX_PKEY(name, oid, oidmacro, tblname, decl)
Definition genbki.h:86
#define BKI_LOOKUP(catalog)
Definition genbki.h:46
#define BKI_DEFAULT(value)
Definition genbki.h:35
#define DECLARE_UNIQUE_INDEX(name, oid, oidmacro, tblname, decl)
Definition genbki.h:85
#define DECLARE_TOAST(name, toastoid, indexoid)
Definition genbki.h:63
#define CATALOG(name, oid, oidmacro)
Definition genbki.h:23
#define MAKE_SYSCACHE(name, idxname, nbuckets)
Definition genbki.h:127
FormData_pg_ts_dict
Definition pg_ts_dict.h:50
FormData_pg_ts_dict * Form_pg_ts_dict
Definition pg_ts_dict.h:52
unsigned int Oid
static int fb(int x)
Definition c.h:760
Definition c.h:706