#include "catalog/genbki.h"
Go to the source code of this file.
Defines | |
#define | TableSpaceRelationId 1213 |
#define | Natts_pg_tablespace 4 |
#define | Anum_pg_tablespace_spcname 1 |
#define | Anum_pg_tablespace_spcowner 2 |
#define | Anum_pg_tablespace_spcacl 3 |
#define | Anum_pg_tablespace_spcoptions 4 |
#define | DEFAULTTABLESPACE_OID 1663 |
#define | GLOBALTABLESPACE_OID 1664 |
Typedefs | |
typedef FormData_pg_tablespace * | Form_pg_tablespace |
Functions | |
CATALOG (pg_tablespace, 1213) BKI_SHARED_RELATION | |
DATA (insert OID=1663(pg_default PGUID _null_ _null_)) | |
Variables | |
FormData_pg_tablespace |
#define Anum_pg_tablespace_spcacl 3 |
Definition at line 57 of file pg_tablespace.h.
Referenced by CreateTableSpace(), ExecGrant_Tablespace(), and pg_tablespace_aclmask().
#define Anum_pg_tablespace_spcname 1 |
Definition at line 55 of file pg_tablespace.h.
Referenced by AlterTableSpaceOptions(), CreateTableSpace(), DropTableSpace(), get_tablespace_oid(), and RenameTableSpace().
#define Anum_pg_tablespace_spcoptions 4 |
Definition at line 58 of file pg_tablespace.h.
Referenced by AlterTableSpaceOptions(), CreateTableSpace(), and get_tablespace().
#define Anum_pg_tablespace_spcowner 2 |
Definition at line 56 of file pg_tablespace.h.
Referenced by CreateTableSpace().
#define DEFAULTTABLESPACE_OID 1663 |
Definition at line 63 of file pg_tablespace.h.
Referenced by calculate_tablespace_size(), DropTableSpace(), GetDatabasePath(), OpenTemporaryFile(), OpenTemporaryFileInTablespace(), pg_tablespace_databases(), pg_tablespace_location(), and relpathbackend().
#define GLOBALTABLESPACE_OID 1664 |
Definition at line 64 of file pg_tablespace.h.
Referenced by ATExecSetTableSpace(), calculate_tablespace_size(), check_db_file_conflict(), createdb(), DefineIndex(), DefineRelation(), DropTableSpace(), GetDatabasePath(), heap_create_with_catalog(), index_create(), movedb(), OpenTemporaryFileInTablespace(), perform_relmap_update(), pg_relation_filepath(), pg_tablespace_databases(), pg_tablespace_location(), RelationInitPhysicalAddr(), RelationMapFinishBootstrap(), relpathbackend(), remove_dbtablespaces(), and TablespaceCreateDbspace().
#define Natts_pg_tablespace 4 |
Definition at line 54 of file pg_tablespace.h.
#define TableSpaceRelationId 1213 |
Definition at line 29 of file pg_tablespace.h.
Referenced by AlterTableSpaceOptions(), check_db_file_conflict(), createdb(), CreateTableSpace(), DropTableSpace(), ExecGrant_Tablespace(), get_tablespace_name(), get_tablespace_oid(), getObjectClass(), IsSharedRelation(), remove_dbtablespaces(), RemoveRoleFromObjectACL(), RenameTableSpace(), shdepLockAndCheckObject(), and shdepReassignOwned().
typedef FormData_pg_tablespace* Form_pg_tablespace |
Definition at line 47 of file pg_tablespace.h.
CATALOG | ( | pg_tablespace | , | |
1213 | ||||
) |
Definition at line 31 of file pg_tablespace.h.
{ NameData spcname; /* tablespace name */ Oid spcowner; /* owner of tablespace */ #ifdef CATALOG_VARLEN /* variable-length fields start here */ aclitem spcacl[1]; /* access permissions */ text spcoptions[1]; /* per-tablespace options */ #endif } FormData_pg_tablespace;
DATA | ( | insert | OID = 1663(pg_default PGUID _null_ _null_) |
) |
Definition at line 40 of file pg_tablespace.h.