1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Change my-function-name-- to my_function_name, and optimizer renames.

This commit is contained in:
Bruce Momjian
1999-02-13 23:22:53 +00:00
parent 8c3fff7337
commit 6724a50787
617 changed files with 2005 additions and 2031 deletions

View File

@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
* define.c--
* define.c
*
* These routines execute some of the CREATE statements. In an earlier
* version of Postgres, these were "define" statements.
@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.26 1998/09/01 03:22:00 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.27 1999/02/13 23:15:06 momjian Exp $
*
* DESCRIPTION
* The "DefineFoo" routines take the parse tree and pick out the
@ -202,7 +202,7 @@ interpret_AS_clause(const char *languageName, const char *as,
/*
* CreateFunction --
* CreateFunction
* Execute a CREATE FUNCTION utility statement.
*
*/
@ -346,7 +346,7 @@ CreateFunction(ProcedureStmt *stmt, CommandDest dest)
/* --------------------------------
* DefineOperator--
* DefineOperator
*
* this function extracts all the information from the
* parameter list generated by the parser and then has
@ -573,7 +573,7 @@ DefineAggregate(char *aggName, List *parameters)
}
/*
* DefineType --
* DefineType
* Registers a new type.
*
*/