53 .
name =
"postgres_fdw",
58#define DEFAULT_FDW_STARTUP_COST 100.0
61#define DEFAULT_FDW_TUPLE_COST 0.2
64#define DEFAULT_FDW_SORT_MULTIPLIER 1.2
351 Index resultRelation,
385 Index resultRelation,
430 List *param_join_conds,
433 double *p_rows,
int *p_width,
434 int *p_disabled_nodes,
435 Cost *p_startup_cost,
Cost *p_total_cost);
444 double retrieved_rows,
448 Cost *p_startup_cost,
466 List *retrieved_attrs);
483 List *returningList);
488 List *fdw_scan_tlist,
499 const char ***param_values);
503 const char **param_values);
507 double *totaldeadrows);
517 List *retrieved_attrs,
530 Path *epq_path,
List *restrictlist);
637 baserel->fdw_private = fpinfo;
815 List *useful_eclass_list =
NIL;
825 foreach(lc,
root->eq_classes)
830 useful_eclass_list =
lappend(useful_eclass_list, cur_ec);
840 return useful_eclass_list;
857 if (restrictinfo->mergeopfamilies ==
NIL)
888 if (
bms_overlap(relids, restrictinfo->right_ec->ec_relids))
890 restrictinfo->right_ec);
891 else if (
bms_overlap(relids, restrictinfo->left_ec->ec_relids))
893 restrictinfo->left_ec);
896 return useful_eclass_list;
911 List *useful_pathkeys_list =
NIL;
912 List *useful_eclass_list;
924 bool query_pathkeys_ok =
true;
926 foreach(lc,
root->query_pathkeys)
939 query_pathkeys_ok =
false;
944 if (query_pathkeys_ok)
961 return useful_pathkeys_list;
971 query_ec = query_pathkey->pk_eclass;
981 foreach(lc, useful_eclass_list)
987 if (cur_ec == query_ec)
992 OperatorFamilyRelationId, fpinfo))
1004 useful_pathkeys_list =
lappend(useful_pathkeys_list,
1008 return useful_pathkeys_list;
1089 required_outer =
bms_union(rinfo->clause_relids,
1104 Assert(param_info != NULL);
1143 if (
arg.current == NULL)
1150 foreach(lc, clauses)
1165 required_outer =
bms_union(rinfo->clause_relids,
1174 Assert(param_info != NULL);
1188 foreach(lc, ppi_list)
1200 &rows, &width, &disabled_nodes,
1201 &startup_cost, &total_cost);
1245 List *fdw_recheck_quals =
NIL;
1246 List *retrieved_attrs;
1248 bool has_final_sort =
false;
1249 bool has_limit =
false;
1268 scan_relid = foreignrel->
relid;
1289 foreach(lc, scan_clauses)
1294 if (rinfo->pseudoconstant)
1311 fdw_recheck_quals = remote_exprs;
1369 foreach(lc, local_exprs)
1385 Join *join_plan = (
Join *) outer_plan;
1409 has_final_sort, has_limit,
false,
1410 &retrieved_attrs, ¶ms_list);
1423 fdw_private =
lappend(fdw_private,
1463 for (
int i = 0;
i < tupdesc->natts;
i++)
1471 if (att->atttypid != RECORDOID || att->atttypmod >= 0)
1488 att->atttypid = reltype;
1546 fsstate->cursor_exists =
false;
1558 "postgres_fdw tuple data",
1561 "postgres_fdw temporary data",
1575 fsstate->rel = NULL;
1585 fsstate->numParams = numParams;
1590 &fsstate->param_flinfo,
1591 &fsstate->param_exprs,
1592 &fsstate->param_values);
1683 snprintf(sql,
sizeof(sql),
"CLOSE c%u",
1689 snprintf(sql,
sizeof(sql),
"MOVE BACKWARD ALL IN c%u",
1694 snprintf(sql,
sizeof(sql),
"CLOSE c%u",
1732 if (fsstate == NULL)
1742 fsstate->
conn = NULL;
1782 Index resultRelation,
1790 List *withCheckOptionList =
NIL;
1793 bool doNothing =
false;
1794 int values_end_len = -1;
1844 elog(
ERROR,
"system-column update is not supported");
1852 if (
plan->withCheckOptionLists)
1859 if (
plan->returningLists)
1871 elog(
ERROR,
"unexpected ON CONFLICT specification: %d",
1872 (
int)
plan->onConflictAction);
1881 targetAttrs, doNothing,
1882 withCheckOptionList, returningList,
1883 &retrieved_attrs, &values_end_len);
1888 withCheckOptionList, returningList,
1897 elog(
ERROR,
"unexpected operation: %d", (
int) operation);
1930 List *retrieved_attrs;
1992 &slot, &planSlot, &numSlots);
1997 return rslot ? *rslot : NULL;
2021 slots, planSlots, numSlots);
2094 if (fmstate && fmstate->
p_nums > 0)
2114 &slot, &planSlot, &numSlots);
2116 return rslot ? rslot[0] : NULL;
2133 &slot, &planSlot, &numSlots);
2135 return rslot ? rslot[0] : NULL;
2149 if (fmstate == NULL)
2167 Index resultRelation;
2176 bool doNothing =
false;
2189 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2190 errmsg(
"cannot route tuples into foreign table to be updated \"%s\"",
2213 elog(
ERROR,
"unexpected ON CONFLICT specification: %d",
2214 (
int) onConflictAction);
2234 rte->relkind = RELKIND_FOREIGN_TABLE;
2258 &retrieved_attrs, &values_end_len);
2269 retrieved_attrs !=
NIL,
2337 if (strcmp(def->
defname,
"updatable") == 0)
2340 foreach(lc,
table->options)
2344 if (strcmp(def->
defname,
"updatable") == 0)
2454 Index resultRelation,
2492 if (fscan->
scan.plan.qual !=
NIL)
2503 foreignrel =
root->simple_rel_array[resultRelation];
2504 rte =
root->simple_rte_array[resultRelation];
2521 &processed_tlist, &targetAttrs);
2522 forboth(lc, processed_tlist, lc2, targetAttrs)
2531 elog(
ERROR,
"system-column update is not supported");
2559 if (
plan->returningLists)
2587 remote_exprs, ¶ms_list,
2588 returningList, &retrieved_attrs);
2593 remote_exprs, ¶ms_list,
2594 returningList, &retrieved_attrs);
2597 elog(
ERROR,
"unexpected operation: %d", (
int) operation);
2627 fscan->
scan.plan.lefttree = NULL;
2638 if (fscan->
scan.plan.async_capable)
2639 fscan->
scan.plan.async_capable =
false;
2698 dmstate->resultRel = dmstate->rel;
2706 dmstate->rel = NULL;
2710 dmstate->num_tuples = -1;
2724 "postgres_fdw temporary data",
2728 if (dmstate->has_returning)
2752 dmstate->numParams = numParams;
2757 &dmstate->param_flinfo,
2758 &dmstate->param_exprs,
2759 &dmstate->param_values);
2782 if (!resultRelInfo->ri_projectReturning)
2816 if (dmstate == NULL)
2824 dmstate->
conn = NULL;
2837 List *fdw_private =
plan->fdw_private;
2869 if (isdigit((
unsigned char) *ptr))
2871 int rti = strtol(ptr, &ptr, 10);
2886 if (isdigit((
unsigned char) *ptr))
2888 int rti = strtol(ptr, &ptr, 10);
2912 if (refname == NULL)
2913 refname = rte->eref->aliasname;
2914 if (strcmp(refname,
relname) != 0)
2996 bool server_truncatable =
true;
3019 serverid =
table->serverid;
3022 foreach(cell, server->
options)
3026 if (strcmp(defel->
defname,
"truncatable") == 0)
3041 truncatable = server_truncatable;
3042 foreach(cell,
table->options)
3046 if (strcmp(defel->
defname,
"truncatable") == 0)
3055 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
3056 errmsg(
"foreign table \"%s\" does not allow truncates",
3095 List *param_join_conds,
3098 double *p_rows,
int *p_width,
3099 int *p_disabled_nodes,
3100 Cost *p_startup_cost,
Cost *p_total_cost)
3104 double retrieved_rows;
3106 int disabled_nodes = 0;
3122 List *remote_param_join_conds;
3123 List *local_param_join_conds;
3132 List *retrieved_attrs;
3139 &remote_param_join_conds, &local_param_join_conds);
3145 fdw_scan_tlist =
NIL;
3152 remote_conds =
list_concat(remote_param_join_conds,
3163 remote_conds, pathkeys,
3166 false, &retrieved_attrs, NULL);
3171 &startup_cost, &total_cost);
3174 retrieved_rows = rows;
3178 local_param_join_conds,
3190 startup_cost += local_cost.
startup;
3191 total_cost += local_cost.
per_tuple * retrieved_rows;
3206 startup_cost -= tlist_cost.
startup;
3207 total_cost -= tlist_cost.
startup;
3208 total_cost -= tlist_cost.
per_tuple * rows;
3232 rows = fpinfo->
rows;
3234 width = fpinfo->
width;
3265 rows = foreignrel->
rows;
3275 nrows = fpinfo_i->
rows * fpinfo_o->
rows;
3282 retrieved_rows =
Min(retrieved_rows, nrows);
3305 startup_cost += join_cost.
startup;
3306 startup_cost += remote_conds_cost.
startup;
3326 run_cost += nrows * join_cost.
per_tuple;
3328 run_cost += nrows * remote_conds_cost.
per_tuple;
3342 double numGroups = 1;
3360 input_rows = ofpinfo->
rows;
3363 if (
root->parse->hasAggs)
3373 input_rows, NULL, NULL);
3379 if (
root->hasHavingQual)
3394 rows = retrieved_rows = numGroups;
3427 if (
root->hasHavingQual)
3433 startup_cost += remote_cost.
startup;
3434 run_cost += remote_cost.
per_tuple * numGroups;
3449 rows = foreignrel->
rows;
3457 retrieved_rows =
Min(retrieved_rows, foreignrel->
tuples);
3470 run_cost += cpu_per_tuple * foreignrel->
tuples;
3486 if (pathkeys !=
NIL)
3493 retrieved_rows, width,
3496 &startup_cost, &run_cost);
3505 total_cost = startup_cost + run_cost;
3512 retrieved_rows = rows;
3545 if (pathkeys ==
NIL && param_join_conds ==
NIL && fpextra == NULL)
3583 total_cost -= (total_cost - startup_cost) * 0.05 *
3590 *p_disabled_nodes = disabled_nodes;
3591 *p_startup_cost = startup_cost;
3592 *p_total_cost = total_cost;
3601 double *rows,
int *width,
3602 Cost *startup_cost,
Cost *total_cost)
3626 p = strrchr(line,
'(');
3628 elog(
ERROR,
"could not interpret EXPLAIN output: \"%s\"", line);
3629 n = sscanf(p,
"(cost=%lf..%lf rows=%lf width=%d)",
3630 startup_cost, total_cost, rows, width);
3632 elog(
ERROR,
"could not interpret EXPLAIN output: \"%s\"", line);
3648 double retrieved_rows,
3650 double limit_tuples,
3651 int *p_disabled_nodes,
3652 Cost *p_startup_cost,
3672 *p_startup_cost + *p_run_cost,
3691 *p_startup_cost *= sort_multiplier;
3692 *p_run_cost *= sort_multiplier;
3713 if (
state->current != NULL)
3723 state->current = expr;
3777 NULL,
values, NULL, NULL, 0))
3849 snprintf(sql,
sizeof(sql),
"FETCH %d FROM c%u",
3864 for (
i = 0;
i < numrows;
i++)
3988 List *retrieved_attrs)
4017 fmstate->
query = query;
4030 "postgres_fdw temporary data",
4050 elog(
ERROR,
"could not find junk ctid column");
4066 Assert(!attr->attisdropped);
4069 if (attr->attgenerated)
4108 const char **p_values;
4139 fmstate->
query = sql.data;
4172 fmstate->
p_nums * (*numSlots),
4211 return (n_rows > 0) ? slots : NULL;
4231 snprintf(prep_name,
sizeof(prep_name),
"pgsql_fdw_prep_%u",
4261 fmstate->
p_name = p_name;
4279 const char **p_values;
4287 p_values = (
const char **)
palloc(
sizeof(
char *) * fmstate->
p_nums * numSlots);
4290 Assert(!(tupleid != NULL && numSlots > 1));
4293 if (tupleid != NULL)
4311 for (
i = 0;
i < numSlots;
i++)
4313 j = (tupleid != NULL) ? 1 : 0;
4326 p_values[pindex] = NULL;
4395 fmstate->
conn = NULL;
4435 bool have_wholerow =
false;
4453 var->
varno == rtindex &&
4456 have_wholerow =
true;
4466 for (
i = 1;
i <= tupdesc->
natts;
i++)
4472 if (attr->attisdropped)
4501 var->
varno == rtindex &&
4536 List *new_tlist = tlist;
4540 foreach(lc, old_tlist)
4547 new_tlist =
lappend(new_tlist,
4588 NULL,
values, NULL, NULL, 0))
4622 Assert(resultRelInfo->ri_projectReturning);
4630 estate->es_processed += 1;
4677 resultRelInfo->ri_projectReturning->pi_exprContext->ecxt_scantuple =
4688 List *fdw_scan_tlist,
4714 foreach(lc, fdw_scan_tlist)
4725 if (var->
varno == rtindex &&
4795 for (
i = 0;
i < resultTupType->
natts;
i++)
4807 isnull[
i] = old_isnull[
j - 1];
4831 resultTup->
t_self = *ctid;
4864 const char ***param_values)
4875 foreach(lc, fdw_exprs)
4897 *param_values = (
const char **)
palloc0(numParams *
sizeof(
char *));
4907 const char **param_values)
4916 foreach(lc, param_exprs)
4923 expr_value =
ExecEvalExpr(expr_state, econtext, &isNull);
4930 param_values[
i] = NULL;
4987 elog(
ERROR,
"unexpected result from deparseAnalyzeSizeSql query");
4988 *totalpages = strtoul(
PQgetvalue(res, 0, 0), NULL, 10);
5016 volatile double reltuples = -1;
5017 volatile char relkind = 0;
5020 *can_tablesample =
false;
5044 elog(
ERROR,
"unexpected result from deparseAnalyzeInfoSql query");
5045 reltuples = strtod(
PQgetvalue(res, 0, 0), NULL);
5058 *can_tablesample = (relkind == RELKIND_RELATION ||
5059 relkind == RELKIND_MATVIEW ||
5060 relkind == RELKIND_PARTITIONED_TABLE);
5083 double *totaldeadrows)
5092 double sample_frac = -1.0;
5100 astate.
rel = relation;
5113 "postgres_fdw temporary data",
5135 if (strcmp(def->
defname,
"analyze_sampling") == 0)
5139 if (strcmp(
value,
"off") == 0)
5141 else if (strcmp(
value,
"auto") == 0)
5143 else if (strcmp(
value,
"random") == 0)
5145 else if (strcmp(
value,
"system") == 0)
5147 else if (strcmp(
value,
"bernoulli") == 0)
5154 foreach(lc,
table->options)
5158 if (strcmp(def->
defname,
"analyze_sampling") == 0)
5162 if (strcmp(
value,
"off") == 0)
5164 else if (strcmp(
value,
"auto") == 0)
5166 else if (strcmp(
value,
"random") == 0)
5168 else if (strcmp(
value,
"system") == 0)
5170 else if (strcmp(
value,
"bernoulli") == 0)
5185 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
5186 errmsg(
"remote server does not support TABLESAMPLE feature")));
5195 bool can_tablesample;
5212 if ((reltuples <= 0) || (targrows >= reltuples))
5240 sample_frac = targrows / reltuples;
5247 Assert(sample_frac >= 0.0 && sample_frac <= 1.0);
5294 if (strcmp(def->
defname,
"fetch_size") == 0)
5300 foreach(lc,
table->options)
5304 if (strcmp(def->
defname,
"fetch_size") == 0)
5312 snprintf(fetch_sql,
sizeof(fetch_sql),
"FETCH %d FROM c%u",
5338 for (
i = 0;
i < numrows;
i++)
5362 *totaldeadrows = 0.0;
5372 *totalrows = reltuples;
5378 (
errmsg(
"\"%s\": table contains %.0f rows, %d rows in sample",
5380 *totalrows, astate.
numrows)));
5404 if (astate->
numrows < targrows)
5423 Assert(pos >= 0 && pos < targrows);
5461 bool import_collate =
true;
5462 bool import_default =
false;
5463 bool import_generated =
true;
5464 bool import_not_null =
true;
5475 foreach(lc,
stmt->options)
5479 if (strcmp(def->
defname,
"import_collate") == 0)
5481 else if (strcmp(def->
defname,
"import_default") == 0)
5483 else if (strcmp(def->
defname,
"import_generated") == 0)
5485 else if (strcmp(def->
defname,
"import_not_null") == 0)
5489 (
errcode(ERRCODE_FDW_INVALID_OPTION_NAME),
5503 import_collate =
false;
5521 (
errcode(ERRCODE_FDW_SCHEMA_NOT_FOUND),
5522 errmsg(
"schema \"%s\" is not present on foreign server \"%s\"",
5551 " format_type(atttypid, atttypmod), "
5553 " pg_get_expr(adbin, adrelid), ");
5566 " collnsp.nspname ");
5573 " JOIN pg_namespace n ON "
5574 " relnamespace = n.oid "
5575 " LEFT JOIN pg_attribute a ON "
5576 " attrelid = c.oid AND attnum > 0 "
5577 " AND NOT attisdropped "
5578 " LEFT JOIN pg_attrdef ad ON "
5579 " adrelid = c.oid AND adnum = attnum ");
5583 " LEFT JOIN pg_collation coll ON "
5584 " coll.oid = attcollation "
5585 " LEFT JOIN pg_namespace collnsp ON "
5586 " collnsp.oid = collnamespace ");
5589 "WHERE c.relkind IN ("
5595 " AND n.nspname = ");
5607 bool first_item =
true;
5615 foreach(lc,
stmt->table_list)
5639 for (
i = 0;
i < numrows;)
5642 bool first_item =
true;
5657 char *collnamespace;
5695 if (import_collate && collname != NULL && collnamespace != NULL)
5701 if (import_default && attdefault != NULL &&
5702 (!attgenerated || !attgenerated[0]))
5706 if (import_generated && attgenerated != NULL &&
5707 attgenerated[0] == ATTRIBUTE_GENERATED_STORED)
5709 Assert(attdefault != NULL);
5711 " GENERATED ALWAYS AS (%s) STORED",
5719 while (++
i < numrows &&
5875 if (!is_remote_clause)
5877 joinclauses =
lappend(joinclauses, rinfo);
5881 if (is_remote_clause)
5898 foreach(lc,
root->placeholder_list)
6036 elog(
ERROR,
"unsupported join type %d", jointype);
6081 fpinfo->
user = NULL;
6118 Path *epq_path,
List *restrictlist)
6120 List *useful_pathkeys_list =
NIL;
6130 if (epq_path != NULL && useful_pathkeys_list !=
NIL)
6175 foreach(lc, useful_pathkeys_list)
6183 Path *sorted_epq_path;
6186 &rows, &width, &disabled_nodes,
6187 &startup_cost, &total_cost);
6193 sorted_epq_path = epq_path;
6194 if (sorted_epq_path != NULL &&
6197 sorted_epq_path = (
Path *)
6248 if (strcmp(def->
defname,
"use_remote_estimate") == 0)
6250 else if (strcmp(def->
defname,
"fdw_startup_cost") == 0)
6253 else if (strcmp(def->
defname,
"fdw_tuple_cost") == 0)
6256 else if (strcmp(def->
defname,
"extensions") == 0)
6259 else if (strcmp(def->
defname,
"fetch_size") == 0)
6261 else if (strcmp(def->
defname,
"async_capable") == 0)
6280 if (strcmp(def->
defname,
"use_remote_estimate") == 0)
6282 else if (strcmp(def->
defname,
"fetch_size") == 0)
6284 else if (strcmp(def->
defname,
"async_capable") == 0)
6380 if (joinrel->fdw_private)
6399 joinrel->fdw_private = fpinfo;
6420 elog(
DEBUG3,
"could not push down foreign join because a local path suitable for EPQ checks was not found");
6461 &rows, &width, &disabled_nodes,
6462 &startup_cost, &total_cost);
6464 joinrel->
rows = rows;
6466 fpinfo->
rows = rows;
6467 fpinfo->
width = width;
6528 if (ofpinfo->local_conds)
6548 foreach(lc, grouping_target->exprs)
6647 foreach(lc, (
List *) havingQual)
6663 root->qual_security_level,
6691 foreach(lc, aggvars)
6734 ofpinfo->relation_name);
6755 if (!input_rel->fdw_private ||
6763 output_rel->fdw_private)
6768 fpinfo->
stage = stage;
6769 output_rel->fdw_private = fpinfo;
6785 elog(
ERROR,
"unexpected upper relation: %d", (
int) stage);
6814 !
root->hasHavingQual)
6859 &rows, &width, &disabled_nodes,
6860 &startup_cost, &total_cost);
6863 fpinfo->
rows = rows;
6864 fpinfo->
width = width;
6914 if (
parse->hasTargetSRFs)
6958 foreach(lc,
root->sort_pathkeys)
6997 &rows, &width, &disabled_nodes,
6998 &startup_cost, &total_cost);
7014 root->sort_pathkeys,
7039 bool has_final_sort =
false;
7042 bool save_use_remote_estimate =
false;
7065 if (
parse->hasTargetSRFs)
7069 fpinfo->outerrel = input_rel;
7075 fpinfo->table = ifpinfo->
table;
7076 fpinfo->server = ifpinfo->
server;
7077 fpinfo->user = ifpinfo->
user;
7143 fpinfo->pushdown_safe =
true;
7168 has_final_sort =
true;
7169 pathkeys =
root->sort_pathkeys;
7222 fpinfo->pushdown_safe =
true;
7248 &rows, &width, &disabled_nodes,
7249 &startup_cost, &total_cost);
7312 AsyncRequest *pendingAreq = fsstate->conn_state->pendingAreq;
7324 if (fsstate->next_tuple < fsstate->num_tuples)
7333 Assert(fsstate->next_tuple >= fsstate->num_tuples);
7373 Assert(pendingAreq == areq);
7398 if (fsstate->next_tuple < fsstate->num_tuples)
7405 Assert(fsstate->next_tuple >= fsstate->num_tuples);
7408 Assert(fsstate->conn_state->pendingAreq == areq);
7427 AsyncRequest *pendingAreq = fsstate->conn_state->pendingAreq;
7431 Assert(areq != pendingAreq);
7434 if (fsstate->next_tuple >= fsstate->num_tuples)
7437 if (!fsstate->eof_reached)
7442 if (fetch && !pendingAreq)
7465 Assert(fsstate->next_tuple >= fsstate->num_tuples);
7468 if (!fsstate->eof_reached)
7473 if (fetch && !pendingAreq)
7500 Assert(!fsstate->conn_state->pendingAreq);
7503 if (!fsstate->cursor_exists)
7507 snprintf(sql,
sizeof(sql),
"FETCH %d FROM c%u",
7508 fsstate->fetch_size, fsstate->cursor_number);
7514 fsstate->conn_state->pendingAreq = areq;
7530 Assert(fsstate->conn_state->pendingAreq == areq);
7539 if (fsstate->next_tuple >= fsstate->num_tuples)
7592 List *retrieved_attrs,
7629 nulls = (
bool *)
palloc(tupdesc->
natts *
sizeof(
bool));
7631 memset(nulls,
true, tupdesc->
natts *
sizeof(
bool));
7640 errcallback.
arg = &errpos;
7648 foreach(lc, retrieved_attrs)
7668 Assert(i <= tupdesc->natts);
7669 nulls[
i - 1] = (valstr == NULL);
7700 elog(
ERROR,
"remote query result does not match the foreign table");
7752 bool is_wholerow =
false;
7799 relname = rte->eref->aliasname;
7803 else if (colno > 0 && colno <=
list_length(rte->eref->colnames))
7831 errcontext(
"processing expression at position %d in select list",
7891 foreach(lc1, target->
exprs)
7900 root->parse->sortClause) == NULL)
7931 if (!
equal(em_expr, expr))
7977 if (strcmp(def->
defname,
"batch_size") == 0)
void get_translated_update_targetlist(PlannerInfo *root, Index relid, List **processed_tlist, List **update_colnos)
void add_row_identity_var(PlannerInfo *root, Var *orig_var, Index rtindex, const char *rowid_name)
#define AttributeNumberIsValid(attributeNumber)
#define InvalidAttrNumber
Bitmapset * bms_intersect(const Bitmapset *a, const Bitmapset *b)
int bms_next_member(const Bitmapset *a, int prevbit)
Bitmapset * bms_del_member(Bitmapset *a, int x)
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
bool bms_is_member(int x, const Bitmapset *a)
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Bitmapset * bms_union(const Bitmapset *a, const Bitmapset *b)
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
bool bms_nonempty_difference(const Bitmapset *a, const Bitmapset *b)
static Datum values[MAXATTR]
#define OidIsValid(objectId)
Selectivity clauselist_selectivity(PlannerInfo *root, List *clauses, int varRelid, JoinType jointype, SpecialJoinInfo *sjinfo)
unsigned int GetCursorNumber(PGconn *conn)
void do_sql_command(PGconn *conn, const char *sql)
PGresult * pgfdw_exec_query(PGconn *conn, const char *query, PgFdwConnState *state)
void ReleaseConnection(PGconn *conn)
PGconn * GetConnection(UserMapping *user, bool will_prep_stmt, PgFdwConnState **state)
PGresult * pgfdw_get_result(PGconn *conn)
void pgfdw_report_error(int elevel, PGresult *res, PGconn *conn, bool clear, const char *sql)
static unsigned int cursor_number
unsigned int GetPrepStmtNumber(PGconn *conn)
List * ExtractExtensionList(const char *extensionsString, bool warnOnMissing)
void set_baserel_size_estimates(PlannerInfo *root, RelOptInfo *rel)
void cost_sort(Path *path, PlannerInfo *root, List *pathkeys, int input_disabled_nodes, Cost input_cost, double tuples, int width, Cost comparison_cost, int sort_mem, double limit_tuples)
void cost_qual_eval(QualCost *cost, List *quals, PlannerInfo *root)
double clamp_row_est(double nrows)
bool is_projection_capable_path(Path *path)
ForeignScan * make_foreignscan(List *qptlist, List *qpqual, Index scanrelid, List *fdw_exprs, List *fdw_private, List *fdw_scan_tlist, List *fdw_recheck_quals, Plan *outer_plan)
Plan * change_plan_targetlist(Plan *subplan, List *tlist, bool tlist_parallel_safe)
char * defGetString(DefElem *def)
bool defGetBoolean(DefElem *def)
void deparseAnalyzeSizeSql(StringInfo buf, Relation rel)
const char * get_jointype_name(JoinType jointype)
void deparseAnalyzeInfoSql(StringInfo buf, Relation rel)
void deparseDirectDeleteSql(StringInfo buf, PlannerInfo *root, Index rtindex, Relation rel, RelOptInfo *foreignrel, List *remote_conds, List **params_list, List *returningList, List **retrieved_attrs)
void deparseDirectUpdateSql(StringInfo buf, PlannerInfo *root, Index rtindex, Relation rel, RelOptInfo *foreignrel, List *targetlist, List *targetAttrs, List *remote_conds, List **params_list, List *returningList, List **retrieved_attrs)
bool is_foreign_param(PlannerInfo *root, RelOptInfo *baserel, Expr *expr)
void deparseSelectStmtForRel(StringInfo buf, PlannerInfo *root, RelOptInfo *rel, List *tlist, List *remote_conds, List *pathkeys, bool has_final_sort, bool has_limit, bool is_subquery, List **retrieved_attrs, List **params_list)
void deparseStringLiteral(StringInfo buf, const char *val)
void rebuildInsertSql(StringInfo buf, Relation rel, char *orig_query, List *target_attrs, int values_end_len, int num_params, int num_rows)
void deparseInsertSql(StringInfo buf, RangeTblEntry *rte, Index rtindex, Relation rel, List *targetAttrs, bool doNothing, List *withCheckOptionList, List *returningList, List **retrieved_attrs, int *values_end_len)
void deparseUpdateSql(StringInfo buf, RangeTblEntry *rte, Index rtindex, Relation rel, List *targetAttrs, List *withCheckOptionList, List *returningList, List **retrieved_attrs)
void deparseDeleteSql(StringInfo buf, RangeTblEntry *rte, Index rtindex, Relation rel, List *returningList, List **retrieved_attrs)
void deparseAnalyzeSql(StringInfo buf, Relation rel, PgFdwSamplingMethod sample_method, double sample_frac, List **retrieved_attrs)
bool is_foreign_expr(PlannerInfo *root, RelOptInfo *baserel, Expr *expr)
void classifyConditions(PlannerInfo *root, RelOptInfo *baserel, List *input_conds, List **remote_conds, List **local_conds)
void deparseTruncateSql(StringInfo buf, List *rels, DropBehavior behavior, bool restart_seqs)
bool is_foreign_pathkey(PlannerInfo *root, RelOptInfo *baserel, PathKey *pathkey)
List * build_tlist_to_deparse(RelOptInfo *foreignrel)
ErrorContextCallback * error_context_stack
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
bool equal(const void *a, const void *b)
void setup_eclass_member_iterator(EquivalenceMemberIterator *it, EquivalenceClass *ec, Relids child_relids)
List * generate_implied_equalities_for_column(PlannerInfo *root, RelOptInfo *rel, ec_matches_callback_type callback, void *callback_arg, Relids prohibited_rels)
EquivalenceMember * eclass_member_iterator_next(EquivalenceMemberIterator *it)
bool eclass_useful_for_merging(PlannerInfo *root, EquivalenceClass *eclass, RelOptInfo *rel)
void ExecAsyncResponse(AsyncRequest *areq)
void ExecAsyncRequestPending(AsyncRequest *areq)
void ExecAsyncRequestDone(AsyncRequest *areq, TupleTableSlot *result)
List * ExecInitExprList(List *nodes, PlanState *parent)
AttrNumber ExecFindJunkAttributeInTlist(List *targetlist, const char *attrName)
TupleTableSlot * ExecStoreVirtualTuple(TupleTableSlot *slot)
HeapTuple ExecFetchSlotHeapTuple(TupleTableSlot *slot, bool materialize, bool *shouldFree)
TupleTableSlot * ExecStoreAllNullTuple(TupleTableSlot *slot)
AttInMetadata * TupleDescGetAttInMetadata(TupleDesc tupdesc)
TupleTableSlot * ExecStoreHeapTuple(HeapTuple tuple, TupleTableSlot *slot, bool shouldFree)
void ExecForceStoreHeapTuple(HeapTuple tuple, TupleTableSlot *slot, bool shouldFree)
TupleTableSlot * ExecGetReturningSlot(EState *estate, ResultRelInfo *relInfo)
Relation ExecOpenScanRelation(EState *estate, Index scanrelid, int eflags)
Oid ExecGetResultRelCheckAsUser(ResultRelInfo *relInfo, EState *estate)
#define outerPlanState(node)
static RangeTblEntry * exec_rt_fetch(Index rti, EState *estate)
static TupleTableSlot * ExecProcNode(PlanState *node)
static Datum ExecEvalExpr(ExprState *state, ExprContext *econtext, bool *isNull)
#define EXEC_FLAG_EXPLAIN_ONLY
static Datum ExecGetJunkAttribute(TupleTableSlot *slot, AttrNumber attno, bool *isNull)
int(* AcquireSampleRowsFunc)(Relation relation, int elevel, HeapTuple *rows, int targrows, double *totalrows, double *totaldeadrows)
int PQserverVersion(const PGconn *conn)
int PQsocket(const PGconn *conn)
int PQsendQueryParams(PGconn *conn, const char *command, int nParams, const Oid *paramTypes, const char *const *paramValues, const int *paramLengths, const int *paramFormats, int resultFormat)
char * PQgetvalue(const PGresult *res, int tup_num, int field_num)
ExecStatusType PQresultStatus(const PGresult *res)
void PQclear(PGresult *res)
char * PQcmdTuples(PGresult *res)
int PQntuples(const PGresult *res)
int PQconsumeInput(PGconn *conn)
int PQsendPrepare(PGconn *conn, const char *stmtName, const char *query, int nParams, const Oid *paramTypes)
int PQgetisnull(const PGresult *res, int tup_num, int field_num)
int PQsendQuery(PGconn *conn, const char *query)
int PQsendQueryPrepared(PGconn *conn, const char *stmtName, int nParams, const char *const *paramValues, const int *paramLengths, const int *paramFormats, int resultFormat)
int PQnfields(const PGresult *res)
Datum InputFunctionCall(FmgrInfo *flinfo, char *str, Oid typioparam, int32 typmod)
void fmgr_info(Oid functionId, FmgrInfo *finfo)
char * OutputFunctionCall(FmgrInfo *flinfo, Datum val)
#define DirectFunctionCall1(func, arg1)
#define PG_RETURN_POINTER(x)
ForeignTable * GetForeignTable(Oid relid)
Path * GetExistingLocalJoinPath(RelOptInfo *joinrel)
UserMapping * GetUserMapping(Oid userid, Oid serverid)
ForeignServer * GetForeignServer(Oid serverid)
bool parse_int(const char *value, int *result, int flags, const char **hintmsg)
int NewGUCNestLevel(void)
bool parse_real(const char *value, double *result, int flags, const char **hintmsg)
void AtEOXact_GUC(bool isCommit, int nestLevel)
int set_config_option(const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
static int server_version_num
Assert(PointerIsAligned(start, uint64))
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
void heap_freetuple(HeapTuple htup)
#define SizeofHeapTupleHeader
static void HeapTupleHeaderSetCmin(HeapTupleHeaderData *tup, CommandId cid)
static void HeapTupleHeaderSetXmin(HeapTupleHeaderData *tup, TransactionId xid)
static void HeapTupleHeaderSetXmax(HeapTupleHeaderData *tup, TransactionId xid)
Bitmapset * get_rel_all_updated_cols(PlannerInfo *root, RelOptInfo *rel)
void InstrUpdateTupleCount(Instrumentation *instr, double nTuples)
if(TABLE==NULL||TABLE_index==NULL)
ItemPointerData * ItemPointer
#define PQ_QUERY_PARAM_MAX_LIMIT
List * lappend(List *list, void *datum)
List * list_delete(List *list, void *datum)
List * list_concat(List *list1, const List *list2)
List * list_copy(const List *oldlist)
List * lappend_int(List *list, int datum)
bool list_member_ptr(const List *list, const void *datum)
void list_free(List *list)
bool list_member_int(const List *list, int datum)
bool list_member(const List *list, const void *datum)
List * list_append_unique_ptr(List *list, void *datum)
char * get_rel_name(Oid relid)
void getTypeOutputInfo(Oid type, Oid *typOutput, bool *typIsVarlena)
Oid get_rel_namespace(Oid relid)
Oid get_rel_type_id(Oid relid)
char * get_namespace_name_or_temp(Oid nspid)
Datum subpath(PG_FUNCTION_ARGS)
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
TargetEntry * makeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk)
void MemoryContextReset(MemoryContext context)
char * pstrdup(const char *in)
void pfree(void *pointer)
void * palloc0(Size size)
MemoryContext CurrentMemoryContext
#define AllocSetContextCreate
#define ALLOCSET_DEFAULT_SIZES
#define ALLOCSET_SMALL_SIZES
#define CHECK_FOR_INTERRUPTS()
#define INTSTYLE_POSTGRES
Oid exprType(const Node *expr)
#define IsA(nodeptr, _type_)
#define IS_OUTER_JOIN(jointype)
#define castNode(_type_, nodeptr)
#define PVC_RECURSE_PLACEHOLDERS
#define PVC_INCLUDE_PLACEHOLDERS
#define PVC_INCLUDE_AGGREGATES
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
@ FDW_IMPORT_SCHEMA_LIMIT_TO
@ FDW_IMPORT_SCHEMA_EXCEPT
#define rt_fetch(rangetable_index, rangetable)
PathKey * make_canonical_pathkey(PlannerInfo *root, EquivalenceClass *eclass, Oid opfamily, CompareType cmptype, bool nulls_first)
void update_mergeclause_eclasses(PlannerInfo *root, RestrictInfo *restrictinfo)
bool pathkeys_contained_in(List *keys1, List *keys2)
ForeignPath * create_foreign_upper_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
ProjectionPath * create_projection_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target)
SortPath * create_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, double limit_tuples)
ForeignPath * create_foreignscan_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Relids required_outer, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
ForeignPath * create_foreign_join_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Relids required_outer, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
void add_path(RelOptInfo *parent_rel, Path *new_path)
void adjust_limit_rows_costs(double *rows, Cost *startup_cost, Cost *total_cost, int64 offset_est, int64 count_est)
#define RINFO_IS_PUSHED_DOWN(rinfo, joinrelids)
@ PARTITIONWISE_AGGREGATE_FULL
@ PARTITIONWISE_AGGREGATE_NONE
#define IS_SIMPLE_REL(rel)
#define get_pathtarget_sortgroupref(target, colno)
#define planner_rt_fetch(rti, root)
#define IS_OTHER_REL(rel)
#define IS_UPPER_REL(rel)
FormData_pg_attribute * Form_pg_attribute
#define lfirst_node(type, lc)
static int list_length(const List *l)
#define forboth(cell1, list1, cell2, list2)
#define list_make5(x1, x2, x3, x4, x5)
static void * list_nth(const List *list, int n)
#define list_make3(x1, x2, x3)
#define list_nth_node(type, list, n)
#define list_make2(x1, x2)
#define list_make4(x1, x2, x3, x4)
static const struct lconv_member_info table[]
static Datum PointerGetDatum(const void *X)
static Pointer DatumGetPointer(Datum X)
static Datum CStringGetDatum(const char *X)
static int postgresGetForeignModifyBatchSize(ResultRelInfo *resultRelInfo)
#define DEFAULT_FDW_SORT_MULTIPLIER
static const char ** convert_prep_stmt_params(PgFdwModifyState *fmstate, ItemPointer tupleid, TupleTableSlot **slots, int numSlots)
static TupleTableSlot * apply_returning_filter(PgFdwDirectModifyState *dmstate, ResultRelInfo *resultRelInfo, TupleTableSlot *slot, EState *estate)
static bool foreign_join_ok(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype, RelOptInfo *outerrel, RelOptInfo *innerrel, JoinPathExtraData *extra)
PG_MODULE_MAGIC_EXT(.name="postgres_fdw",.version=PG_VERSION)
static void postgresBeginForeignScan(ForeignScanState *node, int eflags)
static bool postgresIsForeignPathAsyncCapable(ForeignPath *path)
static void store_returning_result(PgFdwModifyState *fmstate, TupleTableSlot *slot, PGresult *res)
static void create_cursor(ForeignScanState *node)
static void postgresExecForeignTruncate(List *rels, DropBehavior behavior, bool restart_seqs)
static void postgresExplainForeignModify(ModifyTableState *mtstate, ResultRelInfo *rinfo, List *fdw_private, int subplan_index, ExplainState *es)
static void analyze_row_processor(PGresult *res, int row, PgFdwAnalyzeState *astate)
static TupleTableSlot ** postgresExecForeignBatchInsert(EState *estate, ResultRelInfo *resultRelInfo, TupleTableSlot **slots, TupleTableSlot **planSlots, int *numSlots)
static void deallocate_query(PgFdwModifyState *fmstate)
static void postgresGetForeignJoinPaths(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outerrel, RelOptInfo *innerrel, JoinType jointype, JoinPathExtraData *extra)
static void postgresExplainForeignScan(ForeignScanState *node, ExplainState *es)
static TupleDesc get_tupdesc_for_join_scan_tuples(ForeignScanState *node)
static void adjust_foreign_grouping_path_cost(PlannerInfo *root, List *pathkeys, double retrieved_rows, double width, double limit_tuples, int *disabled_nodes, Cost *p_startup_cost, Cost *p_run_cost)
static TupleTableSlot * postgresExecForeignUpdate(EState *estate, ResultRelInfo *resultRelInfo, TupleTableSlot *slot, TupleTableSlot *planSlot)
static bool postgresPlanDirectModify(PlannerInfo *root, ModifyTable *plan, Index resultRelation, int subplan_index)
static void conversion_error_callback(void *arg)
static void postgresReScanForeignScan(ForeignScanState *node)
static void prepare_foreign_modify(PgFdwModifyState *fmstate)
static void postgresForeignAsyncRequest(AsyncRequest *areq)
static int postgresIsForeignRelUpdatable(Relation rel)
void reset_transmission_modes(int nestlevel)
int set_transmission_modes(void)
static double postgresGetAnalyzeInfoForForeignTable(Relation relation, bool *can_tablesample)
FdwDirectModifyPrivateIndex
@ FdwDirectModifyPrivateSetProcessed
@ FdwDirectModifyPrivateHasReturning
@ FdwDirectModifyPrivateRetrievedAttrs
@ FdwDirectModifyPrivateUpdateSql
static void rebuild_fdw_scan_tlist(ForeignScan *fscan, List *tlist)
static ForeignScan * postgresGetForeignPlan(PlannerInfo *root, RelOptInfo *foreignrel, Oid foreigntableid, ForeignPath *best_path, List *tlist, List *scan_clauses, Plan *outer_plan)
static void postgresEndForeignScan(ForeignScanState *node)
static void postgresGetForeignPaths(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid)
static void add_foreign_grouping_paths(PlannerInfo *root, RelOptInfo *input_rel, RelOptInfo *grouped_rel, GroupPathExtraData *extra)
static List * postgresPlanForeignModify(PlannerInfo *root, ModifyTable *plan, Index resultRelation, int subplan_index)
static void estimate_path_cost_size(PlannerInfo *root, RelOptInfo *foreignrel, List *param_join_conds, List *pathkeys, PgFdwPathExtraData *fpextra, double *p_rows, int *p_width, int *p_disabled_nodes, Cost *p_startup_cost, Cost *p_total_cost)
static void fetch_more_data(ForeignScanState *node)
static void prepare_query_params(PlanState *node, List *fdw_exprs, int numParams, FmgrInfo **param_flinfo, List **param_exprs, const char ***param_values)
static void postgresEndForeignModify(EState *estate, ResultRelInfo *resultRelInfo)
static void produce_tuple_asynchronously(AsyncRequest *areq, bool fetch)
static ForeignScan * find_modifytable_subplan(PlannerInfo *root, ModifyTable *plan, Index rtindex, int subplan_index)
static void add_foreign_ordered_paths(PlannerInfo *root, RelOptInfo *input_rel, RelOptInfo *ordered_rel)
static bool semijoin_target_ok(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outerrel, RelOptInfo *innerrel)
struct PgFdwModifyState PgFdwModifyState
static void merge_fdw_options(PgFdwRelationInfo *fpinfo, const PgFdwRelationInfo *fpinfo_o, const PgFdwRelationInfo *fpinfo_i)
static void postgresAddForeignUpdateTargets(PlannerInfo *root, Index rtindex, RangeTblEntry *target_rte, Relation target_relation)
static void postgresGetForeignRelSize(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid)
static HeapTuple make_tuple_from_result_row(PGresult *res, int row, Relation rel, AttInMetadata *attinmeta, List *retrieved_attrs, ForeignScanState *fsstate, MemoryContext temp_context)
static void postgresEndDirectModify(ForeignScanState *node)
static void get_remote_estimate(const char *sql, PGconn *conn, double *rows, int *width, Cost *startup_cost, Cost *total_cost)
static void postgresForeignAsyncConfigureWait(AsyncRequest *areq)
EquivalenceMember * find_em_for_rel_target(PlannerInfo *root, EquivalenceClass *ec, RelOptInfo *rel)
static void postgresGetForeignUpperPaths(PlannerInfo *root, UpperRelationKind stage, RelOptInfo *input_rel, RelOptInfo *output_rel, void *extra)
static void apply_server_options(PgFdwRelationInfo *fpinfo)
static void close_cursor(PGconn *conn, unsigned int cursor_number, PgFdwConnState *conn_state)
@ FdwPathPrivateHasFinalSort
static int get_batch_size_option(Relation rel)
static void postgresForeignAsyncNotify(AsyncRequest *areq)
static void add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel, RelOptInfo *final_rel, FinalPathExtraData *extra)
static void fetch_more_data_begin(AsyncRequest *areq)
static void execute_dml_stmt(ForeignScanState *node)
static TupleTableSlot * postgresIterateForeignScan(ForeignScanState *node)
static TupleTableSlot * postgresExecForeignDelete(EState *estate, ResultRelInfo *resultRelInfo, TupleTableSlot *slot, TupleTableSlot *planSlot)
static bool foreign_grouping_ok(PlannerInfo *root, RelOptInfo *grouped_rel, Node *havingQual)
@ FdwScanPrivateRetrievedAttrs
@ FdwScanPrivateSelectSql
@ FdwScanPrivateFetchSize
@ FdwScanPrivateRelations
static bool ec_member_matches_foreign(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, EquivalenceMember *em, void *arg)
@ FdwModifyPrivateUpdateSql
@ FdwModifyPrivateTargetAttnums
@ FdwModifyPrivateRetrievedAttrs
@ FdwModifyPrivateHasReturning
static TupleTableSlot ** execute_foreign_modify(EState *estate, ResultRelInfo *resultRelInfo, CmdType operation, TupleTableSlot **slots, TupleTableSlot **planSlots, int *numSlots)
static PgFdwModifyState * create_foreign_modify(EState *estate, RangeTblEntry *rte, ResultRelInfo *resultRelInfo, CmdType operation, Plan *subplan, char *query, List *target_attrs, int values_end, bool has_returning, List *retrieved_attrs)
static void add_paths_with_pathkeys_for_rel(PlannerInfo *root, RelOptInfo *rel, Path *epq_path, List *restrictlist)
static bool postgresRecheckForeignScan(ForeignScanState *node, TupleTableSlot *slot)
static List * postgresImportForeignSchema(ImportForeignSchemaStmt *stmt, Oid serverOid)
static void complete_pending_request(AsyncRequest *areq)
struct ConversionLocation ConversionLocation
struct PgFdwScanState PgFdwScanState
static bool postgresAnalyzeForeignTable(Relation relation, AcquireSampleRowsFunc *func, BlockNumber *totalpages)
static List * build_remote_returning(Index rtindex, Relation rel, List *returningList)
static TupleTableSlot * get_returning_data(ForeignScanState *node)
void process_pending_request(AsyncRequest *areq)
#define DEFAULT_FDW_TUPLE_COST
struct PgFdwDirectModifyState PgFdwDirectModifyState
static void postgresBeginForeignModify(ModifyTableState *mtstate, ResultRelInfo *resultRelInfo, List *fdw_private, int subplan_index, int eflags)
static void process_query_params(ExprContext *econtext, FmgrInfo *param_flinfo, List *param_exprs, const char **param_values)
static void postgresBeginForeignInsert(ModifyTableState *mtstate, ResultRelInfo *resultRelInfo)
static void init_returning_filter(PgFdwDirectModifyState *dmstate, List *fdw_scan_tlist, Index rtindex)
static TupleTableSlot * postgresIterateDirectModify(ForeignScanState *node)
static void postgresBeginDirectModify(ForeignScanState *node, int eflags)
static List * get_useful_pathkeys_for_relation(PlannerInfo *root, RelOptInfo *rel)
struct PgFdwAnalyzeState PgFdwAnalyzeState
Datum postgres_fdw_handler(PG_FUNCTION_ARGS)
static TupleTableSlot * postgresExecForeignInsert(EState *estate, ResultRelInfo *resultRelInfo, TupleTableSlot *slot, TupleTableSlot *planSlot)
static void apply_table_options(PgFdwRelationInfo *fpinfo)
static int postgresAcquireSampleRowsFunc(Relation relation, int elevel, HeapTuple *rows, int targrows, double *totalrows, double *totaldeadrows)
PG_FUNCTION_INFO_V1(postgres_fdw_handler)
static void postgresEndForeignInsert(EState *estate, ResultRelInfo *resultRelInfo)
EquivalenceMember * find_em_for_rel(PlannerInfo *root, EquivalenceClass *ec, RelOptInfo *rel)
static void postgresExplainDirectModify(ForeignScanState *node, ExplainState *es)
#define DEFAULT_FDW_STARTUP_COST
static List * get_useful_ecs_for_relation(PlannerInfo *root, RelOptInfo *rel)
static void finish_foreign_modify(PgFdwModifyState *fmstate)
bool is_shippable(Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo)
@ ANALYZE_SAMPLE_BERNOULLI
void get_agg_clause_costs(PlannerInfo *root, AggSplit aggsplit, AggClauseCosts *costs)
char * psprintf(const char *fmt,...)
static struct subre * parse(struct vars *v, int stopper, int type, struct state *init, struct state *final)
#define RelationGetRelid(relation)
#define RelationGetDescr(relation)
#define RelationGetRelationName(relation)
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
RelOptInfo * find_join_rel(PlannerInfo *root, Relids relids)
ParamPathInfo * get_baserel_parampathinfo(PlannerInfo *root, RelOptInfo *baserel, Relids required_outer)
List * extract_actual_clauses(List *restrictinfo_list, bool pseudoconstant)
bool join_clause_is_movable_to(RestrictInfo *rinfo, RelOptInfo *baserel)
RestrictInfo * make_restrictinfo(PlannerInfo *root, Expr *clause, bool is_pushed_down, bool has_clone, bool is_clone, bool pseudoconstant, Index security_level, Relids required_relids, Relids incompatible_relids, Relids outer_relids)
const char * quote_identifier(const char *ident)
void reservoir_init_selection_state(ReservoirState rs, int n)
double sampler_random_fract(pg_prng_state *randstate)
double reservoir_get_next_S(ReservoirState rs, double t, int n)
double estimate_num_groups(PlannerInfo *root, List *groupExprs, double input_rows, List **pgset, EstimationInfo *estinfo)
StringInfo makeStringInfo(void)
void resetStringInfo(StringInfo str)
void appendStringInfo(StringInfo str, const char *fmt,...)
void appendStringInfoString(StringInfo str, const char *s)
void appendStringInfoChar(StringInfo str, char ch)
void initStringInfo(StringInfo str)
Bitmapset * as_needrequest
struct WaitEventSet * as_eventset
struct PlanState * requestor
struct PlanState * requestee
ForeignScanState * fsstate
MemoryContext es_query_cxt
struct ErrorContextCallback * previous
void(* callback)(void *arg)
EndForeignInsert_function EndForeignInsert
ReScanForeignScan_function ReScanForeignScan
BeginForeignInsert_function BeginForeignInsert
RecheckForeignScan_function RecheckForeignScan
AddForeignUpdateTargets_function AddForeignUpdateTargets
BeginForeignModify_function BeginForeignModify
EndForeignModify_function EndForeignModify
BeginDirectModify_function BeginDirectModify
PlanForeignModify_function PlanForeignModify
PlanDirectModify_function PlanDirectModify
ExecForeignInsert_function ExecForeignInsert
BeginForeignScan_function BeginForeignScan
ForeignAsyncRequest_function ForeignAsyncRequest
IterateDirectModify_function IterateDirectModify
ExecForeignUpdate_function ExecForeignUpdate
GetForeignJoinPaths_function GetForeignJoinPaths
ExecForeignBatchInsert_function ExecForeignBatchInsert
GetForeignPaths_function GetForeignPaths
GetForeignModifyBatchSize_function GetForeignModifyBatchSize
GetForeignRelSize_function GetForeignRelSize
ExplainForeignScan_function ExplainForeignScan
EndForeignScan_function EndForeignScan
AnalyzeForeignTable_function AnalyzeForeignTable
EndDirectModify_function EndDirectModify
ExplainForeignModify_function ExplainForeignModify
IsForeignPathAsyncCapable_function IsForeignPathAsyncCapable
IterateForeignScan_function IterateForeignScan
ForeignAsyncNotify_function ForeignAsyncNotify
ImportForeignSchema_function ImportForeignSchema
GetForeignPlan_function GetForeignPlan
ExecForeignDelete_function ExecForeignDelete
ExecForeignTruncate_function ExecForeignTruncate
ExplainDirectModify_function ExplainDirectModify
IsForeignRelUpdatable_function IsForeignRelUpdatable
GetForeignUpperPaths_function GetForeignUpperPaths
ForeignAsyncConfigureWait_function ForeignAsyncConfigureWait
ResultRelInfo * resultRelInfo
Bitmapset * fs_base_relids
ResultRelInfo * resultRelInfo
ReservoirStateData rstate
AttInMetadata * attinmeta
AsyncRequest * pendingAreq
PgFdwConnState * conn_state
const char ** param_values
AttInMetadata * attinmeta
AttInMetadata * attinmeta
PgFdwConnState * conn_state
struct PgFdwModifyState * aux_fmstate
List * shippable_extensions
bool make_outerrel_subquery
Relids lower_subquery_rels
Selectivity joinclause_sel
List * final_remote_exprs
Relids hidden_subquery_rels
Selectivity local_conds_sel
bool make_innerrel_subquery
QualCost local_conds_cost
const char ** param_values
AttInMetadata * attinmeta
unsigned int cursor_number
PgFdwConnState * conn_state
Instrumentation * instrument
ExecProcNodeMtd ExecProcNodeReal
ExprContext * ps_ExprContext
struct PathTarget * reltarget
Relids lateral_referencers
QualCost baserestrictcost
struct ResultRelInfo * ri_RootResultRelInfo
List * ri_WithCheckOptions
TriggerDesc * ri_TrigDesc
ProjectionInfo * ri_projectReturning
bool ri_usesFdwDirectModify
Relation ss_currentRelation
TupleTableSlot * ss_ScanTupleSlot
bool trig_insert_after_row
bool trig_update_before_row
bool trig_insert_before_row
TupleDesc tts_tupleDescriptor
#define FirstLowInvalidHeapAttributeNumber
#define SelfItemPointerAttributeNumber
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
Datum tidin(PG_FUNCTION_ARGS)
TargetEntry * tlist_member(Expr *node, List *targetlist)
SortGroupClause * get_sortgroupref_clause_noerr(Index sortref, List *clauses)
bool grouping_is_sortable(List *groupClause)
PathTarget * copy_pathtarget(PathTarget *src)
void add_new_columns_to_pathtarget(PathTarget *target, List *exprs)
List * get_sortgrouplist_exprs(List *sgClauses, List *targetList)
List * add_to_flat_tlist(List *tlist, List *exprs)
#define InvalidTransactionId
TupleDesc CreateTupleDescCopy(TupleDesc tupdesc)
static FormData_pg_attribute * TupleDescAttr(TupleDesc tupdesc, int i)
static CompactAttribute * TupleDescCompactAttr(TupleDesc tupdesc, int i)
static Datum slot_getattr(TupleTableSlot *slot, int attnum, bool *isnull)
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
static void slot_getallattrs(TupleTableSlot *slot)
static TupleTableSlot * ExecCopySlot(TupleTableSlot *dstslot, TupleTableSlot *srcslot)
Integer * makeInteger(int i)
String * makeString(char *str)
Boolean * makeBoolean(bool val)
List * pull_var_clause(Node *node, int flags)
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)
int GetNumRegisteredWaitEvents(WaitEventSet *set)
int AddWaitEventToSet(WaitEventSet *set, uint32 events, pgsocket fd, Latch *latch, void *user_data)
#define WL_SOCKET_READABLE