Minor errors in plpgsql and plperl examples..

From: Philip Hallstrom <philip(at)adhesivemedia(dot)com>
To: pgsql-docs(at)postgresql(dot)org
Subject: Minor errors in plpgsql and plperl examples..
Date: 2000-05-09 18:08:56
Message-ID: Pine.BSF.4.21.0005091104440.81770-100000@illiad.adhesivemedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Hi -

There are two errors involving single quotes in the following documents.

http://www.postgresql.org/docs/user/c40874340.htm
- In the code for "PL/pgSQL Trigger Procedure" the initial single quote is
missing. Currently the line reads:

CREATE FUNCTION emp_stamp () RETURNS OPAQUE AS

All the other examples have a single quote right after "AS".

http://www.postgresql.org/docs/user/pl-perl4538.htm
- The last example is:

CREATE FUNCTION empcomp(employee) returns int4
AS 'my $emp = shift;
return $emp->{'basesalary'} + $emp->{'bonus'};'
LANGUAGE 'plperl';

Shouldn't the single quotes on the "return" line be escaped?

(i've never used postgresql so maybe this is all incorrect, but just
reading through the docs -- which are very very nice btw)

-philip

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Bruce Momjian 2000-05-09 18:25:41 Re: Minor errors in plpgsql and plperl examples..
Previous Message PICAVET REGIS 2000-05-09 16:02:41 looking for doc for ecpg