/* * * Copyright (c) 1998-2002, The University of Sheffield. * * This file is part of GATE (see http://gate.ac.uk/), and is free * software, licenced under the GNU Library General Public License, * Version 2, June 1991 (in the distribution as file licence.html, * and also available at http://gate.ac.uk/gate/licence.html). * * Marin Dimitrov, 20/Mar/2002 * * $Id: security_set_group_name.sp,v 1.2 2004/04/08 10:41:23 valyt Exp $ * */ CREATE OR REPLACE FUNCTION security_set_group_name(int4,varchar) RETURNS boolean AS ' DECLARE p_group_id alias for $1; p_new_name alias for $2; BEGIN update t_group set grp_name = p_new_name where grp_id = p_group_id; /* dummy */ return true; END; ' LANGUAGE 'plpgsql';