@@ -1353,7 +1353,7 @@ add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel,
13531353build_partitioned_rels = true;
13541354break ;
13551355default :
1356- elog (ERROR ,"unexpcted rtekind: %d" , (int )rte -> rtekind );
1356+ elog (ERROR ,"unexpected rtekind: %d" , (int )rte -> rtekind );
13571357}
13581358}
13591359else if (rel -> reloptkind == RELOPT_JOINREL && rel -> part_scheme )
@@ -3262,10 +3262,10 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
32623262return ;
32633263
32643264/*
3265- *Nothing to do if the relation is not partitioned. An outer join
3266- * relation which had empty inner relation in every pair will haverest of
3267- * the partitioning properties set except the child-join RelOptInfos. See
3268- * try_partition_wise_join() for moreexplanation .
3265+ *We've nothing to do if the relation is not partitioned. An outer join
3266+ * relation which hadan empty inner relation in every pair will havethe
3267+ *rest of the partitioning properties set except the child-join
3268+ *RelOptInfos. See try_partition_wise_join() for moredetails .
32693269 */
32703270if (rel -> nparts <=0 || rel -> part_rels == NULL )
32713271return ;
@@ -3284,7 +3284,7 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
32843284/* Add partition-wise join paths for partitioned child-joins. */
32853285generate_partition_wise_join_paths (root ,child_rel );
32863286
3287- /* Dummy children will not be scanned, soingore those. */
3287+ /* Dummy children will not be scanned, soignore those. */
32883288if (IS_DUMMY_REL (child_rel ))
32893289continue ;
32903290