From: Bruce Momjian Date: Tue, 9 May 2000 18:30:43 +0000 (+0000) Subject: More single-quote fixes. X-Git-Tag: REL7_0_2~127 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3b5338da2528976f2b3fba71d65d0b09aaea9cb2;p=thirdparty%2Fpostgresql.git More single-quote fixes. --- diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 3fc14c275ae..7f23aaad792 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -1,5 +1,5 @@ @@ -101,7 +101,7 @@ SELECT name, totalcomp(basesalary, bonus) from employee CREATE FUNCTION empcomp(employee) returns int4 AS 'my $emp = shift; - return $emp->{'basesalary'} + $emp->{'bonus'};' + return $emp->{''basesalary''} + $emp->{''bonus''};' LANGUAGE 'plperl'; A tuple is passed as a reference to hash. The keys are the names of