Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions tea/gpext/tea_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,13 +376,6 @@ static void TeaGetForeignPaths(PlannerInfo* root, RelOptInfo* baserel, Oid forei
NULL, /* no outer rel either */
fpinfo->retrieved_attrs);
add_path(baserel, (Path*)path);

/*
* If we're not using remote estimates, stop here. We have no way to
* estimate whether any join clauses would be worth sending across, so
* don't bother building parameterized paths.
*/
return;
}

/*
Expand Down Expand Up @@ -678,8 +671,6 @@ static void FetchDataToVirtualTuple(TeaScanState* fsstate, MemoryContext tuple_c
PG_CATCH();
PG_RE_THROW();
PG_END_TRY();

return;
}

/*
Expand Down
Loading