From c5185e84e8848802146844dbe338687ef8ff03b2 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Tue, 24 Oct 2000 17:47:32 +0000
Subject: [PATCH] Update plperl README per suggestions from Edward Bridges.

---
 src/pl/plperl/README | 45 +++++++++++++++++++++++++++-----------------
 1 file changed, 28 insertions(+), 17 deletions(-)

diff --git a/src/pl/plperl/README b/src/pl/plperl/README
index 20c025640a7..d797f91510a 100644
--- a/src/pl/plperl/README
+++ b/src/pl/plperl/README
@@ -1,18 +1,31 @@
->perl Makefile.pl
->make
-
-copy the resulting library somewhere that
-the postgresql backend can see it. assume
-that path is /usr/local/pgsql/modules/plperl.so
-
-CREATE FUNCTION plperl_call_handler() RETURNS opaque
-AS '/usr/local/pgsql/modules/plperl.so' LANGUAGE 'C';
-
-CREATE TRUSTED PROCEDURAL LANGUAGE 'plperl'
-HANDLER plperl_call_handler
-LANCOMPILER 'PL/Perl';
-
--- here is simple example
+README for PL/Perl                                          2000.10.24
+
+PREREQUISITES
+======================================================================
++ Perl must be built as a shared library.
++ when compiling Postgres, use the --with-perl option.  Alternatively,
+  you can build plperl separately in an already-configured source tree:
+  cd to $POSTGRES_SRC/src/pl/plperl/ and do "gmake all install".
+
+CONFIGURING
+======================================================================
++ as postgres super user:
+  createlang plperl [database]
+
+NOTES ON USAGE
+======================================================================
++ Use q[], qq[], and qw[] instead of single quotes in 
+  function definitions.
++ When using escape sequences, you must backslash your
+  backslashes, e.g.
+    $alphanum =~ s/\W//g;  # Wrong!  Will replace capital W's
+    $alphanum =~ s/\\W//g; # Right!  Will replace non-word chars
++ Arguments to the function are available in @_
++ If argument is declared as a tuple, then tuple is represented as a
+  hash reference.
+
+EXAMPLES
+======================================================================
 CREATE FUNCTION addints(int4, int4) RETURNS int4 AS '
 return $_[0] + $_[1]
 ' LANGUAGE 'plperl';
@@ -37,5 +50,3 @@ return 1;
 ' LANGUAGE 'plperl';
 
 SELECT badfunc();
-
-
-- 
GitLab