1 | /*------------------------------------------------------------------------- |
2 | * |
3 | * pg_foreign_server.h |
4 | * definition of the "foreign server" system catalog (pg_foreign_server) |
5 | * |
6 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | * |
9 | * src/include/catalog/pg_foreign_server.h |
10 | * |
11 | * NOTES |
12 | * The Catalog.pm module reads this file and derives schema |
13 | * information. |
14 | * |
15 | *------------------------------------------------------------------------- |
16 | */ |
17 | #ifndef PG_FOREIGN_SERVER_H |
18 | #define PG_FOREIGN_SERVER_H |
19 | |
20 | #include "catalog/genbki.h" |
21 | #include "catalog/pg_foreign_server_d.h" |
22 | |
23 | /* ---------------- |
24 | * pg_foreign_server definition. cpp turns this into |
25 | * typedef struct FormData_pg_foreign_server |
26 | * ---------------- |
27 | */ |
28 | CATALOG(pg_foreign_server,1417,ForeignServerRelationId) |
29 | { |
30 | Oid oid; /* oid */ |
31 | NameData srvname; /* foreign server name */ |
32 | Oid srvowner; /* server owner */ |
33 | Oid srvfdw; /* server FDW */ |
34 | |
35 | #ifdef CATALOG_VARLEN /* variable-length fields start here */ |
36 | text srvtype; |
37 | text srvversion; |
38 | aclitem srvacl[1]; /* access permissions */ |
39 | text srvoptions[1]; /* FDW-specific options */ |
40 | #endif |
41 | } FormData_pg_foreign_server; |
42 | |
43 | /* ---------------- |
44 | * Form_pg_foreign_server corresponds to a pointer to a tuple with |
45 | * the format of pg_foreign_server relation. |
46 | * ---------------- |
47 | */ |
48 | typedef FormData_pg_foreign_server *Form_pg_foreign_server; |
49 | |
50 | #endif /* PG_FOREIGN_SERVER_H */ |
51 | |