diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 44adf23cb7bb4a6d4b21ca4ed65466b31c35bb70..9542170d340a2ed3364d5bde8187edb77a885224 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.256 2002/03/19 12:52:22 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.257 2002/03/19 16:10:48 momjian Exp $
  *
  * NOTES
  *	  this is the "main" module of the postgres backend and
@@ -1722,7 +1722,7 @@ PostgresMain(int argc, char *argv[], const char *username)
 	if (!IsUnderPostmaster)
 	{
 		puts("\nPOSTGRES backend interactive interface ");
-		puts("$Revision: 1.256 $ $Date: 2002/03/19 12:52:22 $\n");
+		puts("$Revision: 1.257 $ $Date: 2002/03/19 16:10:48 $\n");
 	}
 
 	/*
@@ -2213,7 +2213,7 @@ CreateCommandTag(Node *parsetree)
 			break;
 
 		case T_CreateDomainStmt:
-			tag = "CREATE";			/* CREATE DOMAIN */
+			tag = "CREATE DOMAIN";
 			break;
 
 		case T_CreateStmt: