Trim an obsolete comment: it is no longer relevant that "SELECT" was
authorNeil Conway
Sun, 1 Jan 2006 01:41:42 +0000 (01:41 +0000)
committerNeil Conway
Sun, 1 Jan 2006 01:41:42 +0000 (01:41 +0000)
formerly "RETRIEVE", and so forth.

src/include/nodes/nodes.h

index 2edf4155833334a588478ebe797782badf2df5be..9b33a5de915eb08bd6c233d6ec88ef5858604675 100644 (file)
@@ -7,7 +7,7 @@
  * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.180 2005/12/28 01:30:01 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.181 2006/01/01 01:41:42 neilc Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -425,9 +425,9 @@ typedef double Cost;            /* execution cost (in page-access units) */
 typedef enum CmdType
 {
    CMD_UNKNOWN,
-   CMD_SELECT,                 /* select stmt (formerly retrieve) */
-   CMD_UPDATE,                 /* update stmt (formerly replace) */
-   CMD_INSERT,                 /* insert stmt (formerly append) */
+   CMD_SELECT,                 /* select stmt */
+   CMD_UPDATE,                 /* update stmt */
+   CMD_INSERT,                 /* insert stmt */
    CMD_DELETE,
    CMD_UTILITY,                /* cmds like create, destroy, copy, vacuum,
                                 * etc. */