mirror of https://github.com/postgres/postgres
Add comment explaining why RelationOpenSmgr() call is not needed.
This commit is contained in:
parent
7eb5428199
commit
e58a944700
|
@ -26,7 +26,7 @@
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.262 2005/12/02 20:03:40 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.263 2006/01/07 22:30:43 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
@ -1002,6 +1002,7 @@ ExecEndPlan(PlanState *planstate, EState *estate)
|
||||||
!estate->es_into_relation_descriptor->rd_istemp)
|
!estate->es_into_relation_descriptor->rd_istemp)
|
||||||
{
|
{
|
||||||
FlushRelationBuffers(estate->es_into_relation_descriptor);
|
FlushRelationBuffers(estate->es_into_relation_descriptor);
|
||||||
|
/* FlushRelationBuffers will have opened rd_smgr */
|
||||||
smgrimmedsync(estate->es_into_relation_descriptor->rd_smgr);
|
smgrimmedsync(estate->es_into_relation_descriptor->rd_smgr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue