Make CREATE DOMAIN emit CREATE DOMAIN on completion, per Peter E.

This commit is contained in:
Bruce Momjian 2002-03-19 16:10:48 +00:00
parent 14d542bc67
commit f2842a969d

View File

@ -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: