Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c20a9f2

Browse files
author
Neil Conway
committed
Trim an obsolete comment: it is no longer relevant that "SELECT" was
formerly "RETRIEVE", and so forth.
1 parent bcb26d7 commit c20a9f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/include/nodes/nodes.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.180 2005/12/28 01:30:01 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.181 2006/01/01 01:41:42 neilc Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -425,9 +425,9 @@ typedef double Cost; /* execution cost (in page-access units) */
425425
typedef enum CmdType
426426
{
427427
CMD_UNKNOWN,
428-
CMD_SELECT, /* select stmt (formerly retrieve) */
429-
CMD_UPDATE, /* update stmt (formerly replace) */
430-
CMD_INSERT, /* insert stmt (formerly append) */
428+
CMD_SELECT, /* select stmt */
429+
CMD_UPDATE, /* update stmt */
430+
CMD_INSERT, /* insert stmt */
431431
CMD_DELETE,
432432
CMD_UTILITY, /* cmds like create, destroy, copy, vacuum,
433433
* etc. */

0 commit comments

Comments
 (0)