~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

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

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * catname.h
 
4
 *        POSTGRES system catalog relation name definitions.
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL: pgsql/src/include/catalog/catname.h,v 1.34 2004-12-31 22:03:24 pgsql Exp $
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef CATNAME_H
 
15
#define CATNAME_H
 
16
 
 
17
 
 
18
#define  AggregateRelationName "pg_aggregate"
 
19
#define  AccessMethodRelationName "pg_am"
 
20
#define  AccessMethodOperatorRelationName "pg_amop"
 
21
#define  AccessMethodProcedureRelationName "pg_amproc"
 
22
#define  AttributeRelationName "pg_attribute"
 
23
#define  CastRelationName "pg_cast"
 
24
#define  ConstraintRelationName "pg_constraint"
 
25
#define  ConversionRelationName "pg_conversion"
 
26
#define  DatabaseRelationName "pg_database"
 
27
#define  DependRelationName "pg_depend"
 
28
#define  DescriptionRelationName "pg_description"
 
29
#define  GroupRelationName "pg_group"
 
30
#define  IndexRelationName "pg_index"
 
31
#define  InheritsRelationName "pg_inherits"
 
32
#define  LanguageRelationName "pg_language"
 
33
#define  LargeObjectRelationName "pg_largeobject"
 
34
#define  ListenerRelationName "pg_listener"
 
35
#define  NamespaceRelationName "pg_namespace"
 
36
#define  OperatorClassRelationName "pg_opclass"
 
37
#define  OperatorRelationName "pg_operator"
 
38
#define  ProcedureRelationName "pg_proc"
 
39
#define  RelationRelationName "pg_class"
 
40
#define  RewriteRelationName "pg_rewrite"
 
41
#define  ShadowRelationName "pg_shadow"
 
42
#define  StatisticRelationName "pg_statistic"
 
43
#define  TableSpaceRelationName "pg_tablespace"
 
44
#define  TypeRelationName "pg_type"
 
45
#define  VersionRelationName "pg_version"
 
46
#define  AttrDefaultRelationName "pg_attrdef"
 
47
#define  TriggerRelationName "pg_trigger"
 
48
 
 
49
#endif   /* CATNAME_H */