Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 99507b9

Browse files
committed
Add:
> > * Add REINDEX CONCURRENTLY, like CREATE INDEX CONCURRENTLY > > This is difficult because you must upgrade to an exclusive table lock > to replace the existing index file. CREATE INDEX CONCURRENTLY does not > have this complication. This would allow index compaction without > downtime.
1 parent 62b2786 commit 99507b9

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

doc/TODO

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL TODO List
33
====================
44
Current maintainer: Bruce Momjian (bruce@momjian.us)
5-
Last updated: Tue Jan 30 22:07:21 EST 2007
5+
Last updated: Tue Jan 30 22:17:43 EST 2007
66

77
The most recent version of this document can be viewed at
88
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -909,6 +909,13 @@ Indexes
909909

910910
This is difficult because it requires datatype-specific knowledge.
911911

912+
* Add REINDEX CONCURRENTLY, like CREATE INDEX CONCURRENTLY
913+
914+
This is difficult because you must upgrade to an exclusive table lock
915+
to replace the existing index file. CREATE INDEX CONCURRENTLY does not
916+
have this complication. This would allow index compaction without
917+
downtime.
918+
912919

913920
* Inheritance
914921

doc/src/FAQ/TODO.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
99
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
1010
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
11-
Last updated: Tue Jan 30 22:07:21 EST 2007
11+
Last updated: Tue Jan 30 22:17:43 EST 2007
1212
</p>
1313
<p>The most recent version of this document can be viewed at<br/>
1414
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
@@ -820,6 +820,12 @@ <h1><a name="section_12">Indexes</a></h1>
820820
</li><li>Consider compressing indexes by storing key values duplicated in
821821
several rows as a single index entry
822822
<p> This is difficult because it requires datatype-specific knowledge.
823+
</p>
824+
</li><li>Add REINDEX CONCURRENTLY, like CREATE INDEX CONCURRENTLY
825+
<p> This is difficult because you must upgrade to an exclusive table lock
826+
to replace the existing index file. CREATE INDEX CONCURRENTLY does not
827+
have this complication. This would allow index compaction without
828+
downtime.
823829
</p>
824830
</li><li>Inheritance
825831
<ul>

0 commit comments

Comments
 (0)