aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
diff options
context:
space:
mode:
authorItagaki Takahiro <itagaki.takahiro@gmail.com>2011-02-07 16:51:39 +0900
committerItagaki Takahiro <itagaki.takahiro@gmail.com>2011-02-07 16:53:05 +0900
commitc18f51da17d8cf01d62218e0404e18ba246bde54 (patch)
treec3a42ffbb56c5f3d2a1d88dfc447e791156b8d83 /src/backend/commands/tablecmds.c
parentc852e95b0bcbe708ba64b9499e50b9cc98bd7b71 (diff)
downloadpostgresql-c18f51da17d8cf01d62218e0404e18ba246bde54.tar.gz
postgresql-c18f51da17d8cf01d62218e0404e18ba246bde54.zip
Fix a comment for MergeAttributes.
We forgot to adjust it when we changed relistemp to relpersistence.
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r--src/backend/commands/tablecmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 6a17399eb6f..e935b7406c8 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -1192,7 +1192,7 @@ storage_name(char c)
* 'schema' is the column/attribute definition for the table. (It's a list
* of ColumnDef's.) It is destructively changed.
* 'supers' is a list of names (as RangeVar nodes) of parent relations.
- * 'istemp' is TRUE if we are creating a temp relation.
+ * 'relpersistence' is a persistence type of the table.
*
* Output arguments:
* 'supOids' receives a list of the OIDs of the parent relations.