Commit e58a9447 authored by Tom Lane's avatar Tom Lane

Add comment explaining why RelationOpenSmgr() call is not needed.

parent 7eb54281
...@@ -26,7 +26,7 @@ ...@@ -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) ...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment