1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

Fix " to ' on lobj docs.

This commit is contained in:
Bruce Momjian 2000-03-15 17:07:41 +00:00
parent 84b9507f78
commit 795878d2dd

View File

@ -254,7 +254,7 @@ CREATE TABLE image (
INSERT INTO image (name, raster) INSERT INTO image (name, raster)
VALUES ('beautiful image', lo_import('/etc/motd')); 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'; WHERE name = 'beautiful image';
</programlisting> </programlisting>
</para> </para>