diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-06-22 10:52:25 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-06-22 10:53:37 -0400 |
commit | 1300276042f9c4b9db10825f0b4431da423ebb57 (patch) | |
tree | 1ef59fafb5224a88a14606e267e855a5a318194a | |
parent | f0415a30e0bd56c9badecf097e8568ec1b3e3b0e (diff) | |
download | postgresql-1300276042f9c4b9db10825f0b4431da423ebb57.tar.gz postgresql-1300276042f9c4b9db10825f0b4431da423ebb57.zip |
Update comment to account for table partitioning.
Ashutosh Bapat and Amit Langote
Discussion: http://postgr.es/m/CAFjFpRcG_NaAv6cDHD-9VfGdvB8maAtSfB=fTQr5+kxP2_sXzg@mail.gmail.com
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index ed50261f8c0..f087ddb61db 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -849,10 +849,10 @@ set_foreign_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte) * Set size estimates for a simple "append relation" * * The passed-in rel and RTE represent the entire append relation. The - * relation's contents are computed by appending together the output of - * the individual member relations. Note that in the inheritance case, - * the first member relation is actually the same table as is mentioned in - * the parent RTE ... but it has a different RTE and RelOptInfo. This is + * relation's contents are computed by appending together the output of the + * individual member relations. Note that in the non-partitioned inheritance + * case, the first member relation is actually the same table as is mentioned + * in the parent RTE ... but it has a different RTE and RelOptInfo. This is * a good thing because their outputs are not the same size. */ static void |