From 94bdc4855cf8db8a2df83a19d18ce72fd5eb2691 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 May 2002 18:32:52 +0000 Subject: Extend syntax of CREATE FUNCTION to resemble SQL99. --- src/backend/tcop/postgres.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 53bf45dce9c..1ea4fa9a6b5 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.265 2002/05/17 01:19:18 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.266 2002/05/17 18:32:52 petere Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1688,7 +1688,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.265 $ $Date: 2002/05/17 01:19:18 $\n"); + puts("$Revision: 1.266 $ $Date: 2002/05/17 18:32:52 $\n"); } /* @@ -2229,7 +2229,7 @@ CreateCommandTag(Node *parsetree) tag = "CREATE"; break; - case T_ProcedureStmt: /* CREATE FUNCTION */ + case T_CreateFunctionStmt: /* CREATE FUNCTION */ tag = "CREATE"; break; -- cgit v1.2.3