diff options
Diffstat (limited to 'doc/src/FAQ/FAQ.html')
-rw-r--r-- | doc/src/FAQ/FAQ.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index f14c7330361..9343a586853 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -14,7 +14,7 @@ alink="#0000ff"> <H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1> - <P>Last updated: Thu Jul 11 12:35:53 EDT 2002</P> + <P>Last updated: Thu Jul 11 12:37:48 EDT 2002</P> <P>Current maintainer: Bruce Momjian (<A href= "mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR> @@ -1021,7 +1021,7 @@ <P>The <I>~</I> operator does regular expression matching, and <I>~*</I> does case-insensitive regular expression matching. The case-insensitive variant of <SMALL>LIKE</SMALL> is called - <SMALL>ILIKE</SMALL> in PostgreSQL 7.1 and later.</P> + <SMALL>ILIKE</SMALL>.</P> <P>Case-insensitive equality comparisons are normally expressed as:</P> @@ -1229,10 +1229,9 @@ BYTEA bytea variable-length byte array (null-byte safe) <H4><A name="4.18">4.18</A>) Why do I get the error <I>"ERROR: Memory exhausted in AllocSetAlloc()"</I>?</H4> - <P>If you are running a version older than 7.1, an upgrade may fix - the problem. Also it is possible you have run out of virtual memory - on your system, or your kernel has a low limit for certain - resources. Try this before starting <I>postmaster</I>:</P> + <P>You probably have run out of virtual memory on your system, + or your kernel has a low limit for certain resources. Try this + before starting <I>postmaster</I>:</P> <PRE> ulimit -d 262144 limit datasize 256m @@ -1301,8 +1300,8 @@ BYTEA bytea variable-length byte array (null-byte safe) <H4><A name="4.23">4.23</A>) How do I perform an outer join?</H4> - <P>PostgreSQL 7.1 and later supports outer joins using the SQL - standard syntax. Here are two examples:</P> + <P>PostgreSQL supports outer joins using the SQL standard syntax. + Here are two examples:</P> <PRE> SELECT * FROM t1 LEFT OUTER JOIN t2 ON (t1.col = t2.col); |