doc: Fix syntax in example

LANGUAGE 'plpgsql' no longer works.  The single quotes need to be
removed.

Erwin Brandstetter
This commit is contained in:
Peter Eisentraut 2013-04-21 22:16:12 -04:00
parent c3ab4ea27d
commit 53ecfddceb
1 changed files with 1 additions and 1 deletions

View File

@ -1708,7 +1708,7 @@ BEGIN
RETURN;
END
$BODY$
LANGUAGE 'plpgsql' ;
LANGUAGE plpgsql;
SELECT * FROM getallfoo();
</programlisting>