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
1c7347f8
Commit
1c7347f8
authored
Dec 16, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some typos in the TODO list.
parent
fb3dbdf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
doc/TODO
doc/TODO
+11
-11
No files found.
doc/TODO
View file @
1c7347f8
...
...
@@ -135,7 +135,7 @@ Administration
pg_stop_backup() is called or the server is stopped
Doing this will allow administrators to know more easily when
the archive contins all the files needed for point-in-time
the archive cont
a
ins all the files needed for point-in-time
recovery.
o %Create dump tool for write-ahead logs for use in determining
...
...
@@ -185,7 +185,7 @@ Data Types
* Fix data types where equality comparison isn't intuitive, e.g. box
* %Prevent INET cast to CIDR if the unmasked bits are not zero, or
zero the bits
* %Prevent INET cast to CIDR from droping netmask, SELECT '1.1.1.1'::inet::cidr
* %Prevent INET cast to CIDR from drop
p
ing netmask, SELECT '1.1.1.1'::inet::cidr
* Allow INET + INT4 to increment the host part of the address, or
throw an error on overflow
* %Add 'tid != tid ' operator for use in corruption recovery
...
...
@@ -457,7 +457,7 @@ SQL Commands
This might require some background daemon to maintain clustering
during periods of low usage. It might also require tables to be only
par
it
ally filled for easier reorganization. Another idea would
par
ti
ally filled for easier reorganization. Another idea would
be to create a merged heap/index data file so an index lookup would
automatically access the heap data too. A third idea would be to
store heap rows in hashed groups, perhaps using a user-supplied
...
...
@@ -592,7 +592,7 @@ Clients
Currently, while \e saves a single statement as one entry, interactive
statements are saved one line at a time. Ideally all statements
w
h
ould be saved like \e does.
would be saved like \e does.
o Allow multi-line column values to align in the proper columns
...
...
@@ -664,10 +664,10 @@ libpq
o Allow statement results to be automatically batched to the client
Currently, all statement results are transfered to the libpq
Currently, all statement results are transfer
r
ed to the libpq
client before libpq makes the results available to the
application. This feature would allow the application to make
use of the first result rows while the rest are transfered, or
use of the first result rows while the rest are transfer
r
ed, or
held on the server waiting for them to be requested by libpq.
One complexity is that a statement like SELECT 1/col could error
out mid-way through the result set.
...
...
@@ -743,7 +743,7 @@ Exotic Features
* Add the features of packages
o Make private objects access
a
ble only to objects in the same schema
o Make private objects access
i
ble only to objects in the same schema
o Allow current_schema.objname to access current schema objects
o Add session variables
o Allow nested schemas
...
...
@@ -854,7 +854,7 @@ Cache Usage
* Add estimated_count(*) to return an estimate of COUNT(*)
This would use the planner ANALYZE statist
at
ics to return an estimated
This would use the planner ANALYZE statistics to return an estimated
count.
* Allow data to be pulled directly from indexes
...
...
@@ -880,7 +880,7 @@ Cache Usage
o Query results
* Allow sequential scans to take advantage of other concurrent
sequenti
q
al scans, also called "Synchronised Scanning"
sequential scans, also called "Synchronised Scanning"
One possible implementation is to start sequential scans from the lowest
numbered buffer in the shared cache, and when reaching the end wrap
...
...
@@ -893,7 +893,7 @@ Vacuum
* Improve speed with indexes
For large table adjust
e
ments during VACUUM FULL, it is faster to
For large table adjustments during VACUUM FULL, it is faster to
reindex rather than update the index.
* Reduce lock time during VACUUM FULL by moving tuples with read lock,
...
...
@@ -942,7 +942,7 @@ Startup Time Improvements
This would prevent the overhead associated with process creation. Most
operating systems have trivial process creation time compared to
database startup overhead, but a few operating systems (W
I
n32,
database startup overhead, but a few operating systems (W
i
n32,
Solaris) might benefit from threading. Also explore the idea of
a single session using multiple threads to execute a statement faster.
...
...
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