From 42ce74bf17478cc8a8323601deaa63950dda9923 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 21 Nov 2003 22:32:49 +0000 Subject: COMMENT ON casts, conversions, languages, operator classes, and large objects. Dump all these in pg_dump; also add code to pg_dump user-defined conversions. Make psql's large object code rely on the backend for inserting/deleting LOB comments, instead of trying to hack pg_description directly. Documentation and regression tests added. Christopher Kings-Lynne, code reviewed by Tom --- src/backend/commands/functioncmds.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/backend/commands/functioncmds.c') diff --git a/src/backend/commands/functioncmds.c b/src/backend/commands/functioncmds.c index 7e3c7410a10..417220df9d4 100644 --- a/src/backend/commands/functioncmds.c +++ b/src/backend/commands/functioncmds.c @@ -2,14 +2,15 @@ * * functioncmds.c * - * Routines for CREATE and DROP FUNCTION commands + * Routines for CREATE and DROP FUNCTION commands and CREATE and DROP + * CAST commands. * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/functioncmds.c,v 1.40 2003/11/12 21:15:50 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/functioncmds.c,v 1.41 2003/11/21 22:32:48 tgl Exp $ * * DESCRIPTION * These routines take the parse tree and pick out the -- cgit v1.2.3