1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Remove no-longer-needed dependencies on DLSUFFIX.

This commit is contained in:
Tom Lane
2001-10-26 20:45:33 +00:00
parent 62651c0176
commit 8dcf998dd1
4 changed files with 24 additions and 40 deletions

View File

@ -6,7 +6,7 @@
--
-- Copyright (c) 1994-5, Regents of the University of California
--
-- $Id: funcs.source,v 1.4 2000/03/28 02:49:19 tgl Exp $
-- $Id: funcs.source,v 1.5 2001/10/26 20:45:33 tgl Exp $
--
---------------------------------------------------------------------------
@ -126,16 +126,16 @@ SELECT name(high_pay()) AS overpaid;
-----------------------------
CREATE FUNCTION add_one(int4) RETURNS int4
AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c';
AS '_OBJWD_/funcs' LANGUAGE 'c';
CREATE FUNCTION makepoint(point, point) RETURNS point
AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c';
AS '_OBJWD_/funcs' LANGUAGE 'c';
CREATE FUNCTION copytext(text) RETURNS text
AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c';
AS '_OBJWD_/funcs' LANGUAGE 'c';
CREATE FUNCTION c_overpaid(EMP, int4) RETURNS bool
AS '_OBJWD_/funcs_DLSUFFIX_' LANGUAGE 'c';
AS '_OBJWD_/funcs' LANGUAGE 'c';
SELECT add_one(3) AS four;