Fix ts prefix to export functions

One exported function is fixed with ts_ prefix as required.
This commit is contained in:
Ruslan Fomkin 2020-02-06 17:41:58 +01:00 committed by Erik Nordström
parent bddcf2a78a
commit 89d32c0682
3 changed files with 7 additions and 7 deletions

View File

@ -669,7 +669,7 @@ build_first_last_path(PlannerInfo *root, FirstLastAggInfo *fl_info, Oid eqop, Oi
foreach (lc, subroot->parse->rtable)
{
RangeTblEntry *rte = (RangeTblEntry *) lfirst(lc);
if (is_rte_hypertable(rte))
if (ts_is_rte_hypertable(rte))
{
ListCell *prev = NULL;
ListCell *next = list_head(subroot->append_rel_list);
@ -720,7 +720,7 @@ build_first_last_path(PlannerInfo *root, FirstLastAggInfo *fl_info, Oid eqop, Oi
foreach (lc, root->parse->rtable)
{
RangeTblEntry *rte = (RangeTblEntry *) lfirst(lc);
if (is_rte_hypertable(rte))
if (ts_is_rte_hypertable(rte))
{
rte->inh = true;
}

View File

@ -104,7 +104,7 @@ mark_rte_hypertable_parent(RangeTblEntry *rte)
}
bool
is_rte_hypertable(RangeTblEntry *rte)
ts_is_rte_hypertable(RangeTblEntry *rte)
{
return rte->ctename != NULL && strcmp(rte->ctename, CTE_NAME_HYPERTABLES) == 0;
}
@ -1371,7 +1371,7 @@ reenable_inheritance(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntr
for (i = 1; i < root->simple_rel_array_size; i++)
{
RangeTblEntry *in_rte = root->simple_rte_array[i];
if (is_rte_hypertable(in_rte) && !in_rte->inh)
if (ts_is_rte_hypertable(in_rte) && !in_rte->inh)
{
RelOptInfo *in_rel = root->simple_rel_array[i];
expand_hypertable_inheritance(root, in_rte->relid, in_rte->inh, in_rel);
@ -1561,7 +1561,7 @@ expand_hypertable_inheritance(PlannerInfo *root, Oid relation_objectid, bool inh
* run on many chunks so the expansion really cannot be called before this
* hook.
*/
if (!rte->inh && is_rte_hypertable(rte))
if (!rte->inh && ts_is_rte_hypertable(rte))
{
Cache *hcache;
Hypertable *ht = ts_hypertable_cache_get_cache_and_entry(rte->relid, false, &hcache);
@ -1581,7 +1581,7 @@ involves_ts_hypertable_relid(PlannerInfo *root, Index relid)
if (relid == 0)
return false;
return is_rte_hypertable(planner_rt_fetch(relid, root));
return ts_is_rte_hypertable(planner_rt_fetch(relid, root));
}
static bool

View File

@ -15,6 +15,6 @@ typedef struct TimescaleDBPrivate
bool compressed;
} TimescaleDBPrivate;
extern bool is_rte_hypertable(RangeTblEntry *rte);
extern bool ts_is_rte_hypertable(RangeTblEntry *rte);
#endif /* TIMESCALEDB_PLANNER_H */