projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
922dedc
)
fix trivial merge error in pathnode.h (missing comma)
author
Tomas Vondra
<
[email protected]
>
Mon, 7 Nov 2016 20:35:33 +0000
(21:35 +0100)
committer
Tomas Vondra
<
[email protected]
>
Mon, 7 Nov 2016 20:35:33 +0000
(21:35 +0100)
src/include/optimizer/pathnode.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/optimizer/pathnode.h
b/src/include/optimizer/pathnode.h
index e11b92ea2b6a1472694b43ef8e079e317eb78e28..8d8776530bd5d7ca9dfb16c231253ab56fc614f7 100644
(file)
--- a/
src/include/optimizer/pathnode.h
+++ b/
src/include/optimizer/pathnode.h
@@
-79,8
+79,8
@@
extern GatherPath *create_gather_path(PlannerInfo *root,
Relids required_outer, double *rows);
#ifdef XCP
extern SubqueryScanPath *create_subqueryscan_path(PlannerInfo *root,
- RelOptInfo *rel, Path *subpath
List *pathkeys, Relids required_outer
,
- Distribution *distribution);
+ RelOptInfo *rel, Path *subpath
, List *pathkeys
,
+
Relids required_outer,
Distribution *distribution);
#else
extern SubqueryScanPath *create_subqueryscan_path(PlannerInfo *root,
RelOptInfo *rel, Path *subpath,