Use NIL instead of NULL for an empty List.

Tatsuro Yamada, reviewed by Ashutosh Bapat
pull/17/head
Robert Haas 9 years ago
parent 274bb2b385
commit c6ff380e38
  1. 4
      contrib/postgres_fdw/postgres_fdw.c

@ -4431,7 +4431,7 @@ postgresGetForeignJoinPaths(PlannerInfo *root,
NIL, /* no pathkeys */ NIL, /* no pathkeys */
NULL, /* no required_outer */ NULL, /* no required_outer */
epq_path, epq_path,
NULL); /* no fdw_private */ NIL); /* no fdw_private */
/* Add generated path into joinrel by add_path(). */ /* Add generated path into joinrel by add_path(). */
add_path(joinrel, (Path *) joinpath); add_path(joinrel, (Path *) joinpath);
@ -4748,7 +4748,7 @@ add_foreign_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel,
NIL, /* no pathkeys */ NIL, /* no pathkeys */
NULL, /* no required_outer */ NULL, /* no required_outer */
NULL, NULL,
NULL); /* no fdw_private */ NIL); /* no fdw_private */
/* Add generated path into grouped_rel by add_path(). */ /* Add generated path into grouped_rel by add_path(). */
add_path(grouped_rel, (Path *) grouppath); add_path(grouped_rel, (Path *) grouppath);

Loading…
Cancel
Save