From: Bruce Momjian Date: Wed, 15 Mar 2000 17:07:41 +0000 (+0000) Subject: Fix " to ' on lobj docs. X-Git-Tag: REL7_0~431 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=795878d2ddd1418be074105854fef5552cc881ab;p=postgresql Fix " to ' on lobj docs. --- diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index c8ed458dbb..ae36251ee3 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -254,7 +254,7 @@ CREATE TABLE image ( INSERT INTO image (name, raster) VALUES ('beautiful image', lo_import('/etc/motd')); -SELECT lo_export(image.raster, "/tmp/motd") from image +SELECT lo_export(image.raster, '/tmp/motd') from image WHERE name = 'beautiful image';