~ubuntu-branches/debian/experimental/postgresql-11/experimental

« back to all changes in this revision

Viewing changes to src/include/catalog/pg_ts_config_map.h

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2018-05-22 14:19:08 UTC
  • Revision ID: package-import@ubuntu.com-20180522141908-0oy9ujs1b5vrda74
Tags: upstream-11~beta1
ImportĀ upstreamĀ versionĀ 11~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * pg_ts_config_map.h
 
4
 *        definition of the system catalog for text search token mappings
 
5
 *        (pg_ts_config_map)
 
6
 *
 
7
 *
 
8
 * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 
9
 * Portions Copyright (c) 1994, Regents of the University of California
 
10
 *
 
11
 * src/include/catalog/pg_ts_config_map.h
 
12
 *
 
13
 * NOTES
 
14
 *        The Catalog.pm module reads this file and derives schema
 
15
 *        information.
 
16
 *
 
17
 *-------------------------------------------------------------------------
 
18
 */
 
19
#ifndef PG_TS_CONFIG_MAP_H
 
20
#define PG_TS_CONFIG_MAP_H
 
21
 
 
22
#include "catalog/genbki.h"
 
23
#include "catalog/pg_ts_config_map_d.h"
 
24
 
 
25
/* ----------------
 
26
 *              pg_ts_config_map definition.  cpp turns this into
 
27
 *              typedef struct FormData_pg_ts_config_map
 
28
 * ----------------
 
29
 */
 
30
CATALOG(pg_ts_config_map,3603,TSConfigMapRelationId) BKI_WITHOUT_OIDS
 
31
{
 
32
        Oid                     mapcfg;                 /* OID of configuration owning this entry */
 
33
        int32           maptokentype;   /* token type from parser */
 
34
        int32           mapseqno;               /* order in which to consult dictionaries */
 
35
        Oid                     mapdict;                /* dictionary to consult */
 
36
} FormData_pg_ts_config_map;
 
37
 
 
38
typedef FormData_pg_ts_config_map *Form_pg_ts_config_map;
 
39
 
 
40
#endif                                                  /* PG_TS_CONFIG_MAP_H */