mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
code: replace most remaining uses of 'master'.
Author: Andres Freund Reviewed-By: David Steele Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue@alap3.anarazel.de
This commit is contained in:
@ -1748,7 +1748,7 @@ inheritance_planner(PlannerInfo *root)
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Put back the final adjusted rtable into the master copy of the
|
||||
* Put back the final adjusted rtable into the original copy of the
|
||||
* Query. (We mustn't do this if we found no non-excluded children,
|
||||
* since we never saved an adjusted rtable at all.)
|
||||
*/
|
||||
@ -1757,7 +1757,7 @@ inheritance_planner(PlannerInfo *root)
|
||||
root->simple_rel_array = save_rel_array;
|
||||
root->append_rel_array = save_append_rel_array;
|
||||
|
||||
/* Must reconstruct master's simple_rte_array, too */
|
||||
/* Must reconstruct original's simple_rte_array, too */
|
||||
root->simple_rte_array = (RangeTblEntry **)
|
||||
palloc0((list_length(final_rtable) + 1) * sizeof(RangeTblEntry *));
|
||||
rti = 1;
|
||||
|
Reference in New Issue
Block a user