Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TOASTING_H
00015 #define TOASTING_H
00016
00017
00018
00019
00020 extern void AlterTableCreateToastTable(Oid relOid, Datum reloptions);
00021 extern void BootstrapToastTable(char *relName,
00022 Oid toastOid, Oid toastIndexOid);
00023
00024
00025
00026
00027
00028
00029 #define DECLARE_TOAST(name,toastoid,indexoid) extern int no_such_variable
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 DECLARE_TOAST(pg_attrdef, 2830, 2831);
00044 DECLARE_TOAST(pg_constraint, 2832, 2833);
00045 DECLARE_TOAST(pg_description, 2834, 2835);
00046 DECLARE_TOAST(pg_proc, 2836, 2837);
00047 DECLARE_TOAST(pg_rewrite, 2838, 2839);
00048 DECLARE_TOAST(pg_seclabel, 3598, 3599);
00049 DECLARE_TOAST(pg_statistic, 2840, 2841);
00050 DECLARE_TOAST(pg_trigger, 2336, 2337);
00051
00052
00053 DECLARE_TOAST(pg_shdescription, 2846, 2847);
00054 #define PgShdescriptionToastTable 2846
00055 #define PgShdescriptionToastIndex 2847
00056 DECLARE_TOAST(pg_db_role_setting, 2966, 2967);
00057 #define PgDbRoleSettingToastTable 2966
00058 #define PgDbRoleSettingToastIndex 2967
00059
00060 #endif