Commit 2b0956e7 authored by Bruce Momjian's avatar Bruce Momjian

Update replication todo.

parent 49ee1334
...@@ -155,7 +155,7 @@ EXOTIC FEATURES ...@@ -155,7 +155,7 @@ EXOTIC FEATURES
* Add sql3 recursive unions * Add sql3 recursive unions
* Add the concept of dataspaces * Add the concept of dataspaces
* Add replication of distributed databases * Add replication of distributed databases [replication]
* Allow queries across multiple databases * Allow queries across multiple databases
* Allow nested transactions (Vadim) * Allow nested transactions (Vadim)
...@@ -198,7 +198,7 @@ FSYNC ...@@ -198,7 +198,7 @@ FSYNC
INDEXES INDEXES
* Use indexes in ORDER BY for min(), max() * Use indexes to find min() and max()
* Use index to restrict rows returned by multi-key index when used with * Use index to restrict rows returned by multi-key index when used with
non-consecutive keys or OR clauses, so fewer heap accesses non-consecutive keys or OR clauses, so fewer heap accesses
* Allow SELECT * FROM tab WHERE int2col = 4 use int2col index, int8, * Allow SELECT * FROM tab WHERE int2col = 4 use int2col index, int8,
......
This diff is collapsed.
...@@ -628,7 +628,7 @@ support configured in your kernel at all.<P> ...@@ -628,7 +628,7 @@ support configured in your kernel at all.<P>
accessing my PostgreSQL database?</H4><P> accessing my PostgreSQL database?</H4><P>
By default, PostgreSQL only allows connections from the local machine 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> unless you add the <I>-i</I> flag to the <I>postmaster,</I>
<B>and</B> enable host-based authentication by modifying the file <B>and</B> enable host-based authentication by modifying the file
<I>$PGDATA/pg_hba.conf</I> accordingly. This will allow TCP/IP connections. <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 ...@@ -852,9 +852,12 @@ Maximum size for a table? unlimited on all operating systems
Maximum size for a row? 8k, configurable to 32k Maximum size for a row? 8k, configurable to 32k
Maximum number of rows in a table? unlimited Maximum number of rows in a table? unlimited
Maximum number of columns 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> </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 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 <SMALL>BLCKSZ.</SMALL> To use attributes larger than 8K, you can also
use the large object interface.<P> use the large object interface.<P>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment