-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathREL_15_STABLE-pg_pathman-core.diff
487 lines (448 loc) · 16 KB
/
REL_15_STABLE-pg_pathman-core.diff
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
diff --git a/contrib/Makefile b/contrib/Makefile
index bbf220407b..9a82a2db04 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -34,6 +34,7 @@ SUBDIRS = \
passwordcheck \
pg_buffercache \
pg_freespacemap \
+ pg_pathman \
pg_prewarm \
pg_stat_statements \
pg_surgery \
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c
index 7a3d9b4b01..0c3d2dec6c 100644
--- a/src/backend/access/transam/xact.c
+++ b/src/backend/access/transam/xact.c
@@ -78,7 +78,7 @@ int DefaultXactIsoLevel = XACT_READ_COMMITTED;
int XactIsoLevel;
bool DefaultXactReadOnly = false;
-bool XactReadOnly;
+bool XactReadOnly = false;
bool DefaultXactDeferrable = false;
bool XactDeferrable;
diff --git a/src/backend/executor/execExprInterp.c b/src/backend/executor/execExprInterp.c
index 87c7603f2b..9cc0bc0da8 100644
--- a/src/backend/executor/execExprInterp.c
+++ b/src/backend/executor/execExprInterp.c
@@ -1801,6 +1801,16 @@ ExecInterpExpr(ExprState *state, ExprContext *econtext, bool *isnull)
}
out:
+
+ /*
+ * pg_pathman: pass 'tts_tableOid' to result tuple to determine from
+ * which partition the tuple was read
+ */
+ if (resultslot)
+ {
+ resultslot->tts_tableOid = scanslot ? scanslot->tts_tableOid :
+ (innerslot ? innerslot->tts_tableOid : (outerslot ? outerslot->tts_tableOid : InvalidOid));
+ }
*isnull = state->resnull;
return state->resvalue;
}
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c
index 0ba61fd547..29d93998b2 100644
--- a/src/backend/executor/execMain.c
+++ b/src/backend/executor/execMain.c
@@ -826,6 +826,13 @@ InitPlan(QueryDesc *queryDesc, int eflags)
estate->es_plannedstmt = plannedstmt;
+ /*
+ * Fields "es_result_relation_info", "es_original_tuple" are used for
+ * pg_pathman only:
+ */
+ estate->es_result_relation_info = NULL;
+ estate->es_original_tuple = NULL;
+
/*
* Next, build the ExecRowMark array from the PlanRowMark(s), if any.
*/
@@ -2849,6 +2856,13 @@ EvalPlanQualStart(EPQState *epqstate, Plan *planTree)
rcestate->es_junkFilter = parentestate->es_junkFilter;
rcestate->es_output_cid = parentestate->es_output_cid;
+ /*
+ * Fields "es_result_relation_info", "es_original_tuple" are used for
+ * pg_pathman only:
+ */
+ rcestate->es_result_relation_info = NULL;
+ rcestate->es_original_tuple = NULL;
+
/*
* ResultRelInfos needed by subplans are initialized from scratch when the
* subplans themselves are initialized.
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c
index 1ad5dcb406..047508e0da 100644
--- a/src/backend/executor/nodeModifyTable.c
+++ b/src/backend/executor/nodeModifyTable.c
@@ -641,6 +641,13 @@ ExecInitUpdateProjection(ModifyTableState *mtstate,
resultRelInfo->ri_projectNewInfoValid = true;
}
+void
+PgproExecInitUpdateProjection(ModifyTableState *mtstate,
+ ResultRelInfo *resultRelInfo)
+{
+ ExecInitUpdateProjection(mtstate, resultRelInfo);
+}
+
/*
* ExecGetInsertNewTuple
* This prepares a "new" tuple ready to be inserted into given result
@@ -3581,6 +3588,7 @@ ExecModifyTable(PlanState *pstate)
HeapTupleData oldtupdata;
HeapTuple oldtuple;
ItemPointer tupleid;
+ ResultRelInfo *saved_resultRelInfo;
CHECK_FOR_INTERRUPTS();
@@ -3622,6 +3630,8 @@ ExecModifyTable(PlanState *pstate)
context.mtstate = node;
context.epqstate = &node->mt_epqstate;
context.estate = estate;
+ saved_resultRelInfo = estate->es_result_relation_info;
+ estate->es_result_relation_info = NULL;
/*
* Fetch rows from subplan, and execute the required table modification
@@ -3629,6 +3639,14 @@ ExecModifyTable(PlanState *pstate)
*/
for (;;)
{
+ /*
+ * "es_original_tuple" should contain original modified tuple (new
+ * values of the changed columns plus row identity information such as
+ * CTID) in case tuple planSlot is replaced in pg_pathman to new value
+ * in call "ExecProcNode(subplanstate)".
+ */
+ estate->es_original_tuple = NULL;
+
/*
* Reset the per-output-tuple exprcontext. This is needed because
* triggers expect to use that context as workspace. It's a bit ugly
@@ -3662,7 +3680,9 @@ ExecModifyTable(PlanState *pstate)
bool isNull;
Oid resultoid;
- datum = ExecGetJunkAttribute(context.planSlot, node->mt_resultOidAttno,
+ datum = ExecGetJunkAttribute(estate->es_original_tuple ?
+ estate->es_original_tuple : context.planSlot,
+ node->mt_resultOidAttno,
&isNull);
if (isNull)
{
@@ -3699,6 +3719,8 @@ ExecModifyTable(PlanState *pstate)
if (resultRelInfo->ri_usesFdwDirectModify)
{
Assert(resultRelInfo->ri_projectReturning);
+ /* PartitionRouter does not support foreign data wrappers: */
+ Assert(estate->es_original_tuple == NULL);
/*
* A scan slot containing the data that was actually inserted,
@@ -3708,6 +3730,7 @@ ExecModifyTable(PlanState *pstate)
*/
slot = ExecProcessReturning(resultRelInfo, NULL, context.planSlot);
+ estate->es_result_relation_info = saved_resultRelInfo;
return slot;
}
@@ -3738,7 +3761,8 @@ ExecModifyTable(PlanState *pstate)
{
/* ri_RowIdAttNo refers to a ctid attribute */
Assert(AttributeNumberIsValid(resultRelInfo->ri_RowIdAttNo));
- datum = ExecGetJunkAttribute(slot,
+ datum = ExecGetJunkAttribute(estate->es_original_tuple
+ ? estate->es_original_tuple : slot,
resultRelInfo->ri_RowIdAttNo,
&isNull);
@@ -3786,7 +3810,8 @@ ExecModifyTable(PlanState *pstate)
*/
else if (AttributeNumberIsValid(resultRelInfo->ri_RowIdAttNo))
{
- datum = ExecGetJunkAttribute(slot,
+ datum = ExecGetJunkAttribute(estate->es_original_tuple
+ ? estate->es_original_tuple : slot,
resultRelInfo->ri_RowIdAttNo,
&isNull);
/* shouldn't ever get a null result... */
@@ -3817,9 +3842,12 @@ ExecModifyTable(PlanState *pstate)
/* Initialize projection info if first time for this table */
if (unlikely(!resultRelInfo->ri_projectNewInfoValid))
ExecInitInsertProjection(node, resultRelInfo);
- slot = ExecGetInsertNewTuple(resultRelInfo, context.planSlot);
- slot = ExecInsert(&context, resultRelInfo, slot,
- node->canSetTag, NULL, NULL);
+ /* Do nothing in case tuple was modified in pg_pathman: */
+ if (!estate->es_original_tuple)
+ slot = ExecGetInsertNewTuple(resultRelInfo, context.planSlot);
+ slot = ExecInsert(&context, estate->es_result_relation_info ?
+ estate->es_result_relation_info : resultRelInfo,
+ slot, node->canSetTag, NULL, NULL);
break;
case CMD_UPDATE:
@@ -3827,6 +3855,13 @@ ExecModifyTable(PlanState *pstate)
if (unlikely(!resultRelInfo->ri_projectNewInfoValid))
ExecInitUpdateProjection(node, resultRelInfo);
+ /*
+ * Do not change the indentation for PostgreSQL code to make it
+ * easier to merge new PostgreSQL changes.
+ */
+ /* Do nothing in case tuple was modified in pg_pathman: */
+ if (!estate->es_original_tuple)
+ {
/*
* Make the new tuple by combining plan's output tuple with
* the old tuple being updated.
@@ -3850,14 +3885,19 @@ ExecModifyTable(PlanState *pstate)
slot = ExecGetUpdateNewTuple(resultRelInfo, context.planSlot,
oldSlot);
context.relaction = NULL;
+ }
/* Now apply the update. */
- slot = ExecUpdate(&context, resultRelInfo, tupleid, oldtuple,
+ slot = ExecUpdate(&context, estate->es_result_relation_info ?
+ estate->es_result_relation_info : resultRelInfo,
+ tupleid, oldtuple,
slot, node->canSetTag);
break;
case CMD_DELETE:
- slot = ExecDelete(&context, resultRelInfo, tupleid, oldtuple,
+ slot = ExecDelete(&context, estate->es_result_relation_info ?
+ estate->es_result_relation_info : resultRelInfo,
+ tupleid, oldtuple,
true, false, node->canSetTag, NULL, NULL, NULL);
break;
@@ -3875,7 +3915,10 @@ ExecModifyTable(PlanState *pstate)
* the work on next call.
*/
if (slot)
+ {
+ estate->es_result_relation_info = saved_resultRelInfo;
return slot;
+ }
}
/*
@@ -3891,6 +3934,7 @@ ExecModifyTable(PlanState *pstate)
node->mt_done = true;
+ estate->es_result_relation_info = saved_resultRelInfo;
return NULL;
}
@@ -3965,6 +4009,7 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
ListCell *l;
int i;
Relation rel;
+ ResultRelInfo *saved_resultRelInfo;
/* check for unsupported flags */
Assert(!(eflags & (EXEC_FLAG_BACKWARD | EXEC_FLAG_MARK)));
@@ -4067,6 +4112,13 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
i++;
}
+ /*
+ * pg_pathman: set "estate->es_result_relation_info" value for take it in
+ * functions partition_filter_begin(), partition_router_begin()
+ */
+ saved_resultRelInfo = estate->es_result_relation_info;
+ estate->es_result_relation_info = mtstate->resultRelInfo;
+
/*
* Now we may initialize the subplan.
*/
@@ -4161,6 +4213,8 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
ExecInitStoredGenerated(resultRelInfo, estate, operation);
}
+ estate->es_result_relation_info = saved_resultRelInfo;
+
/*
* If this is an inherited update/delete/merge, there will be a junk
* attribute named "tableoid" present in the subplan's targetlist. It
diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c
index 1a5d29ac9b..aadca8ea47 100644
--- a/src/backend/utils/init/globals.c
+++ b/src/backend/utils/init/globals.c
@@ -25,7 +25,7 @@
#include "storage/backendid.h"
-ProtocolVersion FrontendProtocol;
+ProtocolVersion FrontendProtocol = (ProtocolVersion) 0;
volatile sig_atomic_t InterruptPending = false;
volatile sig_atomic_t QueryCancelPending = false;
diff --git a/src/include/access/xact.h b/src/include/access/xact.h
index 8d46a781bb..150d70cb64 100644
--- a/src/include/access/xact.h
+++ b/src/include/access/xact.h
@@ -53,6 +53,8 @@ extern PGDLLIMPORT int XactIsoLevel;
/* Xact read-only state */
extern PGDLLIMPORT bool DefaultXactReadOnly;
+
+#define PGPRO_PATHMAN_AWARE_COPY
extern PGDLLIMPORT bool XactReadOnly;
/* flag for logging statements in this transaction */
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index 7cd9b2f2bf..b31a7934a4 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -662,5 +662,17 @@ extern ResultRelInfo *ExecLookupResultRelByOid(ModifyTableState *node,
Oid resultoid,
bool missing_ok,
bool update_cache);
+#define PG_HAVE_PGPRO_EXEC_INIT_UPDATE_PROJECTION
+/*
+ * This function is static in vanilla, but pg_pathman wants it exported.
+ * We cannot make it extern with the same name to avoid compilation errors
+ * in timescaledb, which ships it's own static copy of the same function.
+ * So, export ExecInitUpdateProjection with Pgpro prefix.
+ *
+ * The define above helps pg_pathman to expect proper exported symbol
+ * from various versions of pgpro.
+ */
+extern void PgproExecInitUpdateProjection(ModifyTableState *mtstate,
+ ResultRelInfo *resultRelInfo);
#endif /* EXECUTOR_H */
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 9f176b0e37..a65799dcce 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -624,6 +624,12 @@ typedef struct EState
* es_result_relations in no
* specific order */
+ /* These fields was added for compatibility pg_pathman with 14: */
+ ResultRelInfo *es_result_relation_info; /* currently active array elt */
+ TupleTableSlot *es_original_tuple; /* original modified tuple (new values
+ * of the changed columns plus row
+ * identity information such as CTID) */
+
PartitionDirectory es_partition_directory; /* for PartitionDesc lookup */
/*
diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm
index 8de79c618c..c9226ba5ad 100644
--- a/src/tools/msvc/Install.pm
+++ b/src/tools/msvc/Install.pm
@@ -30,6 +30,18 @@ my @client_program_files = (
'pg_receivewal', 'pg_recvlogical', 'pg_restore', 'psql',
'reindexdb', 'vacuumdb', @client_contribs);
+sub SubstituteMakefileVariables {
+ local $_ = shift; # Line to substitue
+ my $mf = shift; # Makefile text
+ while (/\$\((\w+)\)/) {
+ my $varname = $1;
+ if ($mf =~ /^$varname\s*=\s*(.*)$/mg) {
+ my $varvalue=$1;
+ s/\$\($varname\)/$varvalue/g;
+ }
+ }
+ return $_;
+}
sub lcopy
{
my $src = shift;
@@ -609,7 +621,7 @@ sub ParseAndCleanRule
substr($flist, 0, index($flist, '$(addsuffix '))
. substr($flist, $i + 1);
}
- return $flist;
+ return SubstituteMakefileVariables($flist, $mf);
}
sub CopyIncludeFiles
diff --git a/src/tools/msvc/Mkvcbuild.pm b/src/tools/msvc/Mkvcbuild.pm
index 990c223a9b..cd5048f8d5 100644
--- a/src/tools/msvc/Mkvcbuild.pm
+++ b/src/tools/msvc/Mkvcbuild.pm
@@ -39,8 +39,8 @@ my $contrib_defines = {};
my @contrib_uselibpq = ();
my @contrib_uselibpgport = ();
my @contrib_uselibpgcommon = ();
-my $contrib_extralibs = { 'libpq_pipeline' => ['ws2_32.lib'] };
-my $contrib_extraincludes = {};
+my $contrib_extralibs = { 'libpq_pipeline' => ['ws2_32.lib'] };
+my $contrib_extraincludes = { 'pg_pathman' => ['contrib/pg_pathman/src/include'] };
my $contrib_extrasource = {};
my @contrib_excludes = (
'bool_plperl', 'commit_ts',
@@ -967,6 +967,7 @@ sub AddContrib
my $dn = $1;
my $proj = $solution->AddProject($dn, 'dll', 'contrib', "$subdir/$n");
$proj->AddReference($postgres);
+ $proj->RemoveFile("$subdir/$n/src/declarative.c") if $n eq 'pg_pathman';
AdjustContribProj($proj);
push @projects, $proj;
}
@@ -1070,6 +1071,19 @@ sub AddContrib
return;
}
+sub SubstituteMakefileVariables {
+ local $_ = shift; # Line to substitue
+ my $mf = shift; # Makefile text
+ while (/\$\((\w+)\)/) {
+ my $varname = $1;
+ if ($mf =~ /^$varname\s*=\s*(.*)$/mg) {
+ my $varvalue=$1;
+ s/\$\($varname\)/$varvalue/g;
+ }
+ }
+ return $_;
+}
+
sub GenerateContribSqlFiles
{
my $n = shift;
@@ -1094,23 +1108,53 @@ sub GenerateContribSqlFiles
substr($l, 0, index($l, '$(addsuffix ')) . substr($l, $i + 1);
}
+ $l = SubstituteMakefileVariables($l,$mf);
foreach my $d (split /\s+/, $l)
{
- my $in = "$d.in";
- my $out = "$d";
-
- if (Solution::IsNewer("contrib/$n/$out", "contrib/$n/$in"))
- {
- print "Building $out from $in (contrib/$n)...\n";
- my $cont = Project::read_file("contrib/$n/$in");
- my $dn = $out;
- $dn =~ s/\.sql$//;
- $cont =~ s/MODULE_PATHNAME/\$libdir\/$dn/g;
- my $o;
- open($o, '>', "contrib/$n/$out")
- || croak "Could not write to contrib/$n/$d";
- print $o $cont;
- close($o);
+ if ( -f "contrib/$n/$d.in" ) {
+ my $in = "$d.in";
+ my $out = "$d";
+ if (Solution::IsNewer("contrib/$n/$out", "contrib/$n/$in"))
+ {
+ print "Building $out from $in (contrib/$n)...\n";
+ my $cont = Project::read_file("contrib/$n/$in");
+ my $dn = $out;
+ $dn =~ s/\.sql$//;
+ $cont =~ s/MODULE_PATHNAME/\$libdir\/$dn/g;
+ my $o;
+ open($o, '>', "contrib/$n/$out")
+ || croak "Could not write to contrib/$n/$d";
+ print $o $cont;
+ close($o);
+ }
+ } else {
+ # Search for makefile rule.
+ # For now we do not process rule command and assume
+ # that we should just concatenate all prerequisites
+ #
+ my @prereq = ();
+ my $target;
+ my @rules = $mf =~ /^(\S+)\s*:\s*([^=].*)$/mg;
+ RULE:
+ while (@rules) {
+ $target = SubstituteMakefileVariables(shift @rules,$mf);
+ @prereq = split(/\s+/,SubstituteMakefileVariables(shift @rules,$mf));
+ last RULE if ($target eq $d);
+ @prereq = ();
+ }
+ croak "Don't know how to build contrib/$n/$d" unless @prereq;
+ if (grep(Solution::IsNewer("contrib/$n/$d","contrib/$n/$_"),
+ @prereq)) {
+ print STDERR "building $d from @prereq by concatentation\n";
+ my $o;
+ open $o, ">contrib/$n/$d"
+ or croak("Couldn't write to contrib/$n/$d:$!");
+ for my $in (@prereq) {
+ my $data = Project::read_file("contrib/$n/$in");
+ print $o $data;
+ }
+ close $o;
+ }
}
}
}