File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -161,14 +161,14 @@ _PG_init(void)
161
161
runtimeappend_plan_methods .CustomName = "RuntimeAppend" ;
162
162
runtimeappend_plan_methods .CreateCustomScanState = runtimeappend_create_scan_state ;
163
163
164
- runtimeppend_exec_methods .CustomName = "RuntimeAppend" ;
165
- runtimeppend_exec_methods .BeginCustomScan = runtimeappend_begin ;
166
- runtimeppend_exec_methods .ExecCustomScan = runtimeappend_exec ;
167
- runtimeppend_exec_methods .EndCustomScan = runtimeappend_end ;
168
- runtimeppend_exec_methods .ReScanCustomScan = runtimeappend_rescan ;
169
- runtimeppend_exec_methods .MarkPosCustomScan = NULL ;
170
- runtimeppend_exec_methods .RestrPosCustomScan = NULL ;
171
- runtimeppend_exec_methods .ExplainCustomScan = runtimeppend_explain ;
164
+ runtimeappend_exec_methods .CustomName = "RuntimeAppend" ;
165
+ runtimeappend_exec_methods .BeginCustomScan = runtimeappend_begin ;
166
+ runtimeappend_exec_methods .ExecCustomScan = runtimeappend_exec ;
167
+ runtimeappend_exec_methods .EndCustomScan = runtimeappend_end ;
168
+ runtimeappend_exec_methods .ReScanCustomScan = runtimeappend_rescan ;
169
+ runtimeappend_exec_methods .MarkPosCustomScan = NULL ;
170
+ runtimeappend_exec_methods .RestrPosCustomScan = NULL ;
171
+ runtimeappend_exec_methods .ExplainCustomScan = runtimeappend_explain ;
172
172
173
173
DefineCustomBoolVariable ("pg_pathman.enable" ,
174
174
"Enables pg_pathman's optimizations during the planner stage" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ bool pg_pathman_enable_runtimeappend = true;
17
17
18
18
CustomPathMethods runtimeappend_path_methods ;
19
19
CustomScanMethods runtimeappend_plan_methods ;
20
- CustomExecMethods runtimeppend_exec_methods ;
20
+ CustomExecMethods runtimeappend_exec_methods ;
21
21
22
22
23
23
Path *
47
47
runtimeappend_create_scan_state (CustomScan * node )
48
48
{
49
49
return create_append_scan_state_common (node ,
50
- & runtimeppend_exec_methods ,
50
+ & runtimeappend_exec_methods ,
51
51
sizeof (RuntimeAppendState ));
52
52
}
53
53
@@ -110,7 +110,7 @@ runtimeappend_rescan(CustomScanState *node)
110
110
}
111
111
112
112
void
113
- runtimeppend_explain (CustomScanState * node , List * ancestors , ExplainState * es )
113
+ runtimeappend_explain (CustomScanState * node , List * ancestors , ExplainState * es )
114
114
{
115
115
RuntimeAppendState * scan_state = (RuntimeAppendState * ) node ;
116
116
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ extern bool pg_pathman_enable_runtimeappend;
54
54
55
55
extern CustomPathMethods runtimeappend_path_methods ;
56
56
extern CustomScanMethods runtimeappend_plan_methods ;
57
- extern CustomExecMethods runtimeppend_exec_methods ;
57
+ extern CustomExecMethods runtimeappend_exec_methods ;
58
58
59
59
Path * create_runtimeappend_path (PlannerInfo * root , AppendPath * inner_append ,
60
60
ParamPathInfo * param_info , List * runtime_clauses ,
@@ -74,6 +74,6 @@ void runtimeappend_end(CustomScanState *node);
74
74
75
75
void runtimeappend_rescan (CustomScanState * node );
76
76
77
- void runtimeppend_explain (CustomScanState * node , List * ancestors , ExplainState * es );
77
+ void runtimeappend_explain (CustomScanState * node , List * ancestors , ExplainState * es );
78
78
79
79
#endif
You can’t perform that action at this time.
0 commit comments