summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian2000-06-01 19:46:29 +0000
committerBruce Momjian2000-06-01 19:46:29 +0000
commit2b0956e783a24b7cc26d3aaa29c0641c8e994321 (patch)
tree65ce0aa69ea1b2ce8b0dacfbe19d6f492664fa44 /doc/src
parent49ee133424aa933b2d019365643144e22ed8d15e (diff)
Update replication todo.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/FAQ.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/src/FAQ.html b/doc/src/FAQ.html
index c29d4c0dfff..13e76176c29 100644
--- a/doc/src/FAQ.html
+++ b/doc/src/FAQ.html
@@ -628,7 +628,7 @@ support configured in your kernel at all.<P>
accessing my PostgreSQL database?</H4><P>
By default, PostgreSQL only allows connections from the local machine
-using unix domain sockets. Other machines will not be able to connect
+using Unix domain sockets. Other machines will not be able to connect
unless you add the <I>-i</I> flag to the <I>postmaster,</I>
<B>and</B> enable host-based authentication by modifying the file
<I>$PGDATA/pg_hba.conf</I> accordingly. This will allow TCP/IP connections.
@@ -852,9 +852,12 @@ Maximum size for a table? unlimited on all operating systems
Maximum size for a row? 8k, configurable to 32k
Maximum number of rows in a table? unlimited
Maximum number of columns table? unlimited
-Maximun number of indexes on a table? unlimited
+Maximum number of indexes on a table? unlimited
</PRE>
+Of course, these are not actually unlimited, but limited to available
+disk space.<P>
+
To change the maximum row size, edit <I>include/config.h</I> and change
<SMALL>BLCKSZ.</SMALL> To use attributes larger than 8K, you can also
use the large object interface.<P>