Skip to content

Commit

Permalink
Support new API changes for FDW in pgsql 17
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jun 27, 2024
1 parent d694313 commit 345f2dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ogr_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -952,8 +952,11 @@ ogrGetForeignPaths(PlannerInfo* root,
planstate->startup_cost,
planstate->total_cost,
NIL, /* no pathkeys */
NULL, /* no outer rel either */
NULL, /* no lateral_relids */
NULL /* no extra plan */
#if PG_VERSION_NUM >= 170000
, NIL /* no fdw_restrictinfo list */
#endif
#if PG_VERSION_NUM >= 90500
, NIL /* no fdw_private list */
#endif
Expand Down

0 comments on commit 345f2dc

Please sign in to comment.