]> granicus.if.org Git - postgresql/blob - src/include/catalog/catname.h
Hello,
[postgresql] / src / include / catalog / catname.h
1 /*-------------------------------------------------------------------------
2  *
3  * catname.h
4  *        POSTGRES system catalog relation name definitions.
5  *
6  *
7  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: catname.h,v 1.13 2000/10/08 03:18:55 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef CATNAME_H
15 #define CATNAME_H
16
17
18
19 #define  AggregateRelationName "pg_aggregate"
20 #define  AccessMethodRelationName "pg_am"
21 #define  AccessMethodOperatorRelationName "pg_amop"
22 #define  AccessMethodProcedureRelationName "pg_amproc"
23 #define  AttributeRelationName "pg_attribute"
24 #define  DatabaseRelationName "pg_database"
25 #define  DescriptionRelationName "pg_description"
26 #define  GroupRelationName "pg_group"
27 #define  IndexRelationName "pg_index"
28 #define  InheritProcedureRelationName "pg_inheritproc"
29 #define  InheritsRelationName "pg_inherits"
30 #define  InheritancePrecidenceListRelationName "pg_ipl"
31 #define  LanguageRelationName "pg_language"
32 #define  LargeobjectRelationName "pg_largeobject"
33 #define  ListenerRelationName "pg_listener"
34 #define  LogRelationName "pg_log"
35 #define  OperatorClassRelationName "pg_opclass"
36 #define  OperatorRelationName "pg_operator"
37 #define  ProcedureRelationName "pg_proc"
38 #define  RelationRelationName "pg_class"
39 #define  RewriteRelationName "pg_rewrite"
40 #define  ShadowRelationName "pg_shadow"
41 #define  StatisticRelationName "pg_statistic"
42 #define  TypeRelationName "pg_type"
43 #define  VariableRelationName "pg_variable"
44 #define  VersionRelationName "pg_version"
45 #define  AttrDefaultRelationName "pg_attrdef"
46 #define  RelCheckRelationName "pg_relcheck"
47 #define  TriggerRelationName "pg_trigger"
48
49 extern char *SharedSystemRelationNames[];
50
51 #endif   /* CATNAME_H */