mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Functions live in namespaces. Qualified function names work, eg
SELECT schema1.func2(...). Aggregate names can be qualified at the syntactic level, but the qualification is ignored for the moment.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.145 2002/04/01 04:35:39 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.146 2002/04/09 20:35:53 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -345,12 +345,7 @@ ProcessUtility(Node *parsetree,
|
||||
break;
|
||||
|
||||
case T_CommentStmt:
|
||||
{
|
||||
CommentStmt *stmt = (CommentStmt *) parsetree;
|
||||
|
||||
CommentObject(stmt->objtype, stmt->objschema, stmt->objname,
|
||||
stmt->objproperty, stmt->objlist, stmt->comment);
|
||||
}
|
||||
CommentObject((CommentStmt *) parsetree);
|
||||
break;
|
||||
|
||||
case T_CopyStmt:
|
||||
|
||||
Reference in New Issue
Block a user