Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2b0956e7
Commit
2b0956e7
authored
Jun 01, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update replication todo.
parent
49ee1334
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
914 additions
and
4 deletions
+914
-4
doc/TODO
doc/TODO
+2
-2
doc/TODO.detail/replication
doc/TODO.detail/replication
+907
-0
doc/src/FAQ.html
doc/src/FAQ.html
+5
-2
No files found.
doc/TODO
View file @
2b0956e7
...
...
@@ -155,7 +155,7 @@ EXOTIC FEATURES
* Add sql3 recursive unions
* Add the concept of dataspaces
* Add replication of distributed databases
* Add replication of distributed databases
[replication]
* Allow queries across multiple databases
* Allow nested transactions (Vadim)
...
...
@@ -198,7 +198,7 @@ FSYNC
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
non-consecutive keys or OR clauses, so fewer heap accesses
* Allow SELECT * FROM tab WHERE int2col = 4 use int2col index, int8,
...
...
doc/TODO.detail/replication
0 → 100644
View file @
2b0956e7
This diff is collapsed.
Click to expand it.
doc/src/FAQ.html
View file @
2b0956e7
...
...
@@ -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
u
nix domain sockets. Other machines will not be able to connect
using
U
nix 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
Maximu
n
number of indexes on a table? unlimited
Maximu
m
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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment