Fix typo in example.

This commit is contained in:
Heikki Linnakangas 2012-08-23 11:57:34 +03:00
parent 26a6267226
commit 8b6b50a34d

View File

@ -90,7 +90,7 @@ SELECT upper(int8range(15, 25));
-- Compute the intersection -- Compute the intersection
SELECT int4range(10, 20) * int4range(15, 25); SELECT int4range(10, 20) * int4range(15, 25);
-- Is the range non-empty? -- Is the range empty?
SELECT isempty(numrange(1, 5)); SELECT isempty(numrange(1, 5));
</programlisting> </programlisting>