Skip to content

Commit 3b5338d

Browse files
committed
More single-quote fixes.
1 parent 4108ee9 commit 3b5338d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/plperl.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/plperl.sgml,v 2.3 2000/03/31 06:17:21 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/plperl.sgml,v 2.4 2000/05/09 18:30:43 momjian Exp $
33
-->
44

55
<chapter id="pl-perl">
@@ -101,7 +101,7 @@ SELECT name, totalcomp(basesalary, bonus) from employee
101101
<programlisting>
102102
CREATE FUNCTION empcomp(employee) returns int4
103103
AS 'my $emp = shift;
104-
return $emp->{'basesalary'} + $emp->{'bonus'};'
104+
return $emp->{''basesalary''} + $emp->{''bonus''};'
105105
LANGUAGE 'plperl';
106106
</programlisting>
107107
A tuple is passed as a reference to hash. The keys are the names of

0 commit comments

Comments
 (0)