-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate_fdw.c
316 lines (258 loc) · 8.85 KB
/
template_fdw.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*-------------------------------------------------------------------------
*
* template_fdw.c
*
* a template foreign data wrapper
*
* by Pavel Stehule 2013, 2014, 2015
*
*-------------------------------------------------------------------------
*
* Notes:
*
* This wrapper doesn't allow any DML or SELECT operation.
*
*/
#include "postgres.h"
#include "funcapi.h"
#include "miscadmin.h"
#include "access/reloptions.h"
#include "foreign/fdwapi.h"
#include "foreign/foreign.h"
#include "optimizer/pathnode.h"
#include "optimizer/planmain.h"
#include "optimizer/restrictinfo.h"
#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "template_fdw_builtins.h"
#ifdef PG_MODULE_MAGIC
PG_MODULE_MAGIC;
#endif
/* callback functions */
static void templateGetForeignRelSize(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid);
static void templateGetForeignPaths(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid);
static ForeignScan *templateGetForeignPlan(PlannerInfo *root, RelOptInfo *baserel,
Oid foreigntableid, ForeignPath *best_path,
List *tlist, List *scan_clauses);
static void templateBeginForeignScan(ForeignScanState *node, int eflags);
static TupleTableSlot *templateIterateForeignScan(ForeignScanState *node);
static void templateReScanForeignScan(ForeignScanState *node);
static void templateEndForeignScan(ForeignScanState *node);
static void templateAddForeignUpdateTargets(Query *parsetree, RangeTblEntry *target_rte, Relation target_relation);
static List *templatePlanForeignModify(PlannerInfo *root, ModifyTable *plan, Index resultRelation, int subplan_index);
static void templateBeginForeignModify(ModifyTableState *mtstate, ResultRelInfo *rinfo,
List *fdw_private,
int subplan_index, int eflags);
static TupleTableSlot *templateExecForeignInsert(EState *estate,
ResultRelInfo *rinfo, TupleTableSlot *slot,
TupleTableSlot *planSlot);
static TupleTableSlot *templateExecForeignUpdate(EState *estate,
ResultRelInfo *rinfo, TupleTableSlot *slot,
TupleTableSlot *planSlot);
static TupleTableSlot *templateExecForeignDelete(EState *estate,
ResultRelInfo *rinfo,
TupleTableSlot *slot, TupleTableSlot *planSlot);
static void templateEndForeignModify(EState *estate, ResultRelInfo *rinfo);
static bool templateAnalyzeForeignTable(Relation relation, AcquireSampleRowsFunc *func, BlockNumber *totalpages);
PG_FUNCTION_INFO_V1(template_fdw_handler);
PG_FUNCTION_INFO_V1(template_fdw_validator);
Datum
template_fdw_handler(PG_FUNCTION_ARGS)
{
FdwRoutine *fdwroutine = makeNode(FdwRoutine);
/* assign the handlers for the FDW */
/* these are required */
fdwroutine->GetForeignRelSize = templateGetForeignRelSize;
fdwroutine->GetForeignPaths = templateGetForeignPaths;
fdwroutine->GetForeignPlan = templateGetForeignPlan;
fdwroutine->BeginForeignScan = templateBeginForeignScan;
fdwroutine->IterateForeignScan = templateIterateForeignScan;
fdwroutine->ReScanForeignScan = templateReScanForeignScan;
fdwroutine->EndForeignScan = templateEndForeignScan;
/* remainder are optional - use NULL if not required */
/* support for insert / update / delete */
fdwroutine->AddForeignUpdateTargets = templateAddForeignUpdateTargets;
fdwroutine->PlanForeignModify = templatePlanForeignModify;
fdwroutine->BeginForeignModify = templateBeginForeignModify;
fdwroutine->ExecForeignInsert = templateExecForeignInsert;
fdwroutine->ExecForeignUpdate = templateExecForeignUpdate;
fdwroutine->ExecForeignDelete = templateExecForeignDelete;
fdwroutine->EndForeignModify = templateEndForeignModify;
/* support for EXPLAIN */
fdwroutine->ExplainForeignScan = NULL;
fdwroutine->ExplainForeignModify = NULL;
/* support for ANALYSE */
fdwroutine->AnalyzeForeignTable = templateAnalyzeForeignTable;
PG_RETURN_POINTER(fdwroutine);
}
Datum
template_fdw_validator(PG_FUNCTION_ARGS)
{
List *options_list = untransformRelOptions(PG_GETARG_DATUM(0));
if (list_length(options_list) > 0)
ereport(ERROR,
(errcode(ERRCODE_FDW_INVALID_OPTION_NAME),
errmsg("invalid options"),
errhint("template FDW doies not support any options")));
PG_RETURN_VOID();
}
static void
templateGetForeignRelSize(PlannerInfo *root,
RelOptInfo *baserel,
Oid foreigntableid)
{
baserel->fdw_private = NULL;
baserel->rows = 0;
}
static void
templateGetForeignPaths(PlannerInfo *root,
RelOptInfo *baserel,
Oid foreigntableid)
{
add_path(baserel, (Path *)
create_foreignscan_path(root, baserel,
0, 0, 0,
NIL, NULL, NIL));
}
static ForeignScan *
templateGetForeignPlan(PlannerInfo *root,
RelOptInfo *baserel,
Oid foreigntableid,
ForeignPath *best_path,
List *tlist,
List *scan_clauses)
{
Index scan_relid = 1;
scan_clauses = extract_actual_clauses(scan_clauses, false);
/* Create the ForeignScan node */
#if PG_VERSION_NUM >= 90500
return make_foreignscan(tlist,
scan_clauses, scan_relid,
NIL, NIL, NIL);
#else
return make_foreignscan(tlist,
scan_clauses, scan_relid,
NIL, NIL);
#endif
}
static void
templateBeginForeignScan(ForeignScanState *node,
int eflags)
{
}
static TupleTableSlot *
templateIterateForeignScan(ForeignScanState *node)
{
Relation rel = node->ss.ss_currentRelation;
char *template_name,
*table_name;
template_name = quote_qualified_identifier(get_namespace_name(RelationGetNamespace(rel)),
RelationGetRelationName(rel));
table_name = quote_qualified_identifier(NULL, RelationGetRelationName(rel));
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("cannot read from table \"%s\"", template_name),
errdetail("Table is template."),
errhint("Create temp table by statement "
"\"CREATE TEMP TABLE %s(LIKE %s INCLUDING ALL);\"", table_name, template_name)));
}
static void
templateReScanForeignScan(ForeignScanState *node)
{
}
static void
templateEndForeignScan(ForeignScanState *node)
{
}
static void
templateAddForeignUpdateTargets(Query *parsetree,
RangeTblEntry *target_rte,
Relation target_relation)
{
}
static List *
templatePlanForeignModify(PlannerInfo *root,
ModifyTable *plan,
Index resultRelation,
int subplan_index)
{
return NULL;
}
static void
templateBeginForeignModify(ModifyTableState *mtstate,
ResultRelInfo *rinfo,
List *fdw_private,
int subplan_index,
int eflags)
{
}
static TupleTableSlot *
templateExecForeignInsert(EState *estate,
ResultRelInfo *rinfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
Relation rel = rinfo->ri_RelationDesc;
char *template_name,
*table_name;
template_name = quote_qualified_identifier(get_namespace_name(RelationGetNamespace(rel)),
RelationGetRelationName(rel));
table_name = quote_qualified_identifier(NULL, RelationGetRelationName(rel));
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("cannot insert into to table \"%s\"", template_name),
errdetail("Table is template."),
errhint("Create temp table by statement "
"\"CREATE TEMP TABLE %s(LIKE %s INCLUDING ALL);\"", table_name, template_name)));
}
static TupleTableSlot *
templateExecForeignUpdate(EState *estate,
ResultRelInfo *rinfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
Relation rel = rinfo->ri_RelationDesc;
char *template_name,
*table_name;
template_name = quote_qualified_identifier(get_namespace_name(RelationGetNamespace(rel)),
RelationGetRelationName(rel));
table_name = quote_qualified_identifier(NULL, RelationGetRelationName(rel));
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("cannot update table \"%s\"", template_name),
errdetail("Table is template."),
errhint("Create temp table by statement "
"\"CREATE TEMP TABLE %s(LIKE %s INCLUDING ALL);\"", table_name, template_name)));
}
static TupleTableSlot *
templateExecForeignDelete(EState *estate,
ResultRelInfo *rinfo,
TupleTableSlot *slot,
TupleTableSlot *planSlot)
{
Relation rel = rinfo->ri_RelationDesc;
char *template_name,
*table_name;
template_name = quote_qualified_identifier(get_namespace_name(RelationGetNamespace(rel)),
RelationGetRelationName(rel));
table_name = quote_qualified_identifier(NULL, RelationGetRelationName(rel));
ereport(ERROR,
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
errmsg("cannot delete from table \"%s\"", template_name),
errdetail("Table is template."),
errhint("Create temp table by statement "
"\"CREATE TEMP TABLE %s(LIKE %s INCLUDING ALL);\"", table_name, template_name)));
}
static void
templateEndForeignModify(EState *estate,
ResultRelInfo *rinfo)
{
}
static bool
templateAnalyzeForeignTable(Relation relation,
AcquireSampleRowsFunc *func,
BlockNumber *totalpages)
{
return false;
}