Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
752871b6
Commit
752871b6
authored
Oct 19, 2017
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
David Rowley
parent
275c4be1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/backend/optimizer/path/allpaths.c
src/backend/optimizer/path/allpaths.c
+6
-6
No files found.
src/backend/optimizer/path/allpaths.c
View file @
752871b6
...
...
@@ -1353,7 +1353,7 @@ add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel,
build_partitioned_rels
=
true
;
break
;
default:
elog
(
ERROR
,
"unexpcted rtekind: %d"
,
(
int
)
rte
->
rtekind
);
elog
(
ERROR
,
"unexp
e
cted rtekind: %d"
,
(
int
)
rte
->
rtekind
);
}
}
else
if
(
rel
->
reloptkind
==
RELOPT_JOINREL
&&
rel
->
part_scheme
)
...
...
@@ -3262,10 +3262,10 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
return
;
/*
*
N
othing to do if the relation is not partitioned. An outer join
* relation which had
empty inner relation in every pair will have rest of
*
the partitioning properties set except the child-join RelOptInfos. See
*
try_partition_wise_join() for more explanation
.
*
We've n
othing to do if the relation is not partitioned. An outer join
* relation which had
an empty inner relation in every pair will have the
*
rest of the partitioning properties set except the child-join
*
RelOptInfos. See try_partition_wise_join() for more details
.
*/
if
(
rel
->
nparts
<=
0
||
rel
->
part_rels
==
NULL
)
return
;
...
...
@@ -3284,7 +3284,7 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
/* Add partition-wise join paths for partitioned child-joins. */
generate_partition_wise_join_paths
(
root
,
child_rel
);
/* Dummy children will not be scanned, so i
ng
ore those. */
/* Dummy children will not be scanned, so i
gn
ore those. */
if
(
IS_DUMMY_REL
(
child_rel
))
continue
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment