1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Entity-ify a passel of & < > characters. Per gripe from Devrim.

This commit is contained in:
Tom Lane
2007-12-03 23:49:51 +00:00
parent f538329f9d
commit 4c128303e0
21 changed files with 134 additions and 135 deletions

View File

@ -19,7 +19,7 @@
-- create index
CREATE INDEX testidx ON test USING gist (a);
-- query
SELECT * FROM test WHERE a < 10;
SELECT * FROM test WHERE a &lt; 10;
</programlisting>
</sect2>