Skip to content

Instantly share code, notes, and snippets.

@mc-soi
Created September 5, 2015 04:22
Show Gist options
  • Save mc-soi/8f89e2e6a7ed49e04bcb to your computer and use it in GitHub Desktop.
Save mc-soi/8f89e2e6a7ed49e04bcb to your computer and use it in GitHub Desktop.
tds_fdw patch for PostgreSQL 9.5
diff --git a/src/tds_fdw.c b/src/tds_fdw.c
index 6bbf28f..b6909ee 100644
--- a/src/tds_fdw.c
+++ b/src/tds_fdw.c
@@ -1746,7 +1746,7 @@ ForeignScan* tdsGetForeignPlan(PlannerInfo *root, RelOptInfo *baserel,
));
#endif
- return make_foreignscan(tlist, scan_clauses, scan_relid, NIL, NIL);
+ return make_foreignscan(tlist, scan_clauses, scan_relid, NIL, NIL, NIL);
}
/* routines for versions older than 9.2.0 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment