mirror of
https://github.com/postgres/postgres.git
synced 2025-10-15 05:46:52 +03:00
Extend syntax of CREATE FUNCTION to resemble SQL99.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user