From: Tom Lane Date: Mon, 1 Jan 2001 21:22:54 +0000 (+0000) Subject: Update comment. X-Git-Tag: REL7_1_BETA2~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=473763e67600c8d63699b4e783367bfbdddc24e4;p=postgresql Update comment. --- diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 2c22f251e3..1c826292c5 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -27,7 +27,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.133 2000/12/05 22:03:57 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.134 2001/01/01 21:22:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -762,7 +762,10 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate) CommandCounterIncrement(); /* - * Eventually create a TOAST table for the into relation + * If necessary, create a TOAST table for the into relation. + * Note that AlterTableCreateToastTable ends with + * CommandCounterIncrement(), so that the TOAST table will + * be visible for insertion. */ AlterTableCreateToastTable(intoName, true);