diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-26 20:45:33 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-26 20:45:33 +0000 |
commit | 8dcf998dd148e41fc48071d5ad36828732c7faa4 (patch) | |
tree | 523a21c5ced37ed118010a3f79215bf794c27fe2 /src/tutorial/funcs.source | |
parent | 62651c01764aae57f3383338b75136ea25427222 (diff) | |
download | postgresql-8dcf998dd148e41fc48071d5ad36828732c7faa4.tar.gz postgresql-8dcf998dd148e41fc48071d5ad36828732c7faa4.zip |
Remove no-longer-needed dependencies on DLSUFFIX.
Diffstat (limited to 'src/tutorial/funcs.source')
-rw-r--r-- | src/tutorial/funcs.source | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tutorial/funcs.source b/src/tutorial/funcs.source index b2b20e6928d..8438e6daece 100644 --- a/src/tutorial/funcs.source +++ b/src/tutorial/funcs.source @@ -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; |