@@ -1353,7 +1353,7 @@ add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel,
1353
1353
build_partitioned_rels = true;
1354
1354
break ;
1355
1355
default :
1356
- elog (ERROR , "unexpcted rtekind: %d" , (int ) rte -> rtekind );
1356
+ elog (ERROR , "unexpected rtekind: %d" , (int ) rte -> rtekind );
1357
1357
}
1358
1358
}
1359
1359
else if (rel -> reloptkind == RELOPT_JOINREL && rel -> part_scheme )
@@ -3262,10 +3262,10 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
3262
3262
return ;
3263
3263
3264
3264
/*
3265
- * Nothing to do if the relation is not partitioned. An outer join
3266
- * relation which had empty inner relation in every pair will have rest of
3267
- * the partitioning properties set except the child-join RelOptInfos. See
3268
- * try_partition_wise_join() for more explanation .
3265
+ * We've nothing to do if the relation is not partitioned. An outer join
3266
+ * relation which had an empty inner relation in every pair will have the
3267
+ * rest of the partitioning properties set except the child-join
3268
+ * RelOptInfos. See try_partition_wise_join() for more details .
3269
3269
*/
3270
3270
if (rel -> nparts <= 0 || rel -> part_rels == NULL )
3271
3271
return ;
@@ -3284,7 +3284,7 @@ generate_partition_wise_join_paths(PlannerInfo *root, RelOptInfo *rel)
3284
3284
/* Add partition-wise join paths for partitioned child-joins. */
3285
3285
generate_partition_wise_join_paths (root , child_rel );
3286
3286
3287
- /* Dummy children will not be scanned, so ingore those. */
3287
+ /* Dummy children will not be scanned, so ignore those. */
3288
3288
if (IS_DUMMY_REL (child_rel ))
3289
3289
continue ;
3290
3290
0 commit comments