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 #ifndef PG_TABLESPACE_H
00020 #define PG_TABLESPACE_H
00021
00022 #include "catalog/genbki.h"
00023
00024
00025
00026
00027
00028
00029 #define TableSpaceRelationId 1213
00030
00031 CATALOG(pg_tablespace,1213) BKI_SHARED_RELATION
00032 {
00033 NameData spcname;
00034 Oid spcowner;
00035
00036 #ifdef CATALOG_VARLEN
00037 aclitem spcacl[1];
00038 text spcoptions[1];
00039 #endif
00040 } FormData_pg_tablespace;
00041
00042
00043
00044
00045
00046
00047 typedef FormData_pg_tablespace *Form_pg_tablespace;
00048
00049
00050
00051
00052
00053
00054 #define Natts_pg_tablespace 4
00055 #define Anum_pg_tablespace_spcname 1
00056 #define Anum_pg_tablespace_spcowner 2
00057 #define Anum_pg_tablespace_spcacl 3
00058 #define Anum_pg_tablespace_spcoptions 4
00059
00060 DATA(insert OID = 1663 ( pg_default PGUID _null_ _null_ ));
00061 DATA(insert OID = 1664 ( pg_global PGUID _null_ _null_ ));
00062
00063 #define DEFAULTTABLESPACE_OID 1663
00064 #define GLOBALTABLESPACE_OID 1664
00065
00066 #endif