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:
Lakshmi Narayanan Sreethar 2023-06-01 23:17:57 +05:30 committed by Lakshmi Narayanan Sreethar
parent 3438636a05
commit f92cab8c2a

View File

@ -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");