#include "catalog/genbki.h"

Go to the source code of this file.
Defines | |
| #define | ForeignTableRelationId 3118 |
| #define | Natts_pg_foreign_table 3 |
| #define | Anum_pg_foreign_table_ftrelid 1 |
| #define | Anum_pg_foreign_table_ftserver 2 |
| #define | Anum_pg_foreign_table_ftoptions 3 |
Typedefs | |
| typedef FormData_pg_foreign_table * | Form_pg_foreign_table |
Functions | |
| CATALOG (pg_foreign_table, 3118) BKI_WITHOUT_OIDS | |
Variables | |
| FormData_pg_foreign_table | |
| #define Anum_pg_foreign_table_ftoptions 3 |
Definition at line 54 of file pg_foreign_table.h.
Referenced by ATExecGenericOptions(), CreateForeignTable(), and GetForeignTable().
| #define Anum_pg_foreign_table_ftrelid 1 |
Definition at line 52 of file pg_foreign_table.h.
Referenced by CreateForeignTable().
| #define Anum_pg_foreign_table_ftserver 2 |
Definition at line 53 of file pg_foreign_table.h.
Referenced by CreateForeignTable().
| #define ForeignTableRelationId 3118 |
Definition at line 27 of file pg_foreign_table.h.
Referenced by ATExecAlterColumnGenericOptions(), ATExecGenericOptions(), CreateForeignTable(), file_fdw_validator(), and heap_drop_with_catalog().
| #define Natts_pg_foreign_table 3 |
Definition at line 51 of file pg_foreign_table.h.
Definition at line 44 of file pg_foreign_table.h.
| CATALOG | ( | pg_foreign_table | , | |
| 3118 | ||||
| ) |
Definition at line 29 of file pg_foreign_table.h.
{
Oid ftrelid; /* OID of foreign table */
Oid ftserver; /* OID of foreign server */
#ifdef CATALOG_VARLEN /* variable-length fields start here */
text ftoptions[1]; /* FDW-specific options */
#endif
} FormData_pg_foreign_table;
Definition at line 37 of file pg_foreign_table.h.
1.7.1