diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 7a3fa9f98b1..70665e114f9 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.254 2002/03/06 06:10:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.255 2002/03/19 02:18:20 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.254 $ $Date: 2002/03/06 06:10:09 $\n"); + puts("$Revision: 1.255 $ $Date: 2002/03/19 02:18:20 $\n"); } /* @@ -2212,8 +2212,9 @@ CreateCommandTag(Node *parsetree) } break; + case T_CreateDomainStmt: case T_CreateStmt: - tag = "CREATE"; + tag = "CREATE DOMAIN"; break; case T_DropStmt: |