mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 18:13:18 +08:00
PG16: Rename append_pathkeys to append_pathkeys_custom
Renamed append_pathkeys() to ts_append_pathkeys to prevent conflict with upstream changes postgres/postgres@1349d279
This commit is contained in:
parent
3438636a05
commit
f92cab8c2a
@ -244,7 +244,7 @@ append_relids(StringInfo buf, PlannerInfo *root, Relids relids)
|
||||
}
|
||||
|
||||
static void
|
||||
append_pathkeys(StringInfo buf, const List *pathkeys, const List *rtable)
|
||||
ts_append_pathkeys(StringInfo buf, const List *pathkeys, const List *rtable)
|
||||
{
|
||||
const ListCell *i;
|
||||
|
||||
@ -435,7 +435,7 @@ tsl_debug_append_path(StringInfo buf, PlannerInfo *root, Path *path, int indent)
|
||||
if (path->pathkeys)
|
||||
{
|
||||
appendStringInfoString(buf, " with pathkeys: ");
|
||||
append_pathkeys(buf, path->pathkeys, root->parse->rtable);
|
||||
ts_append_pathkeys(buf, path->pathkeys, root->parse->rtable);
|
||||
}
|
||||
|
||||
appendStringInfoString(buf, "\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user