Commit ccbb07d9 authored by Bruce Momjian's avatar Bruce Momjian

Fix typo:

<   Currently indexes do not have enough tuple tuple visibility
<   information to allow data to be pulled from the index without
<   also accessing the heap.  One way to allow this is to set a bit
<   to index tuples to indicate if a tuple is currently visible to
<   all transactions when the first valid heap lookup happens.  This
<   bit would have to be cleared when a heap tuple is expired.
>   Currently indexes do not have enough tuple visibility information
>   to allow data to be pulled from the index without also accessing
>   the heap.  One way to allow this is to set a bit to index tuples
>   to indicate if a tuple is currently visible to all transactions
>   when the first valid heap lookup happens.  This bit would have to
>   be cleared when a heap tuple is expired.
parent 6f61ddd4
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
PostgreSQL TODO List PostgreSQL TODO List
==================== ====================
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Last updated: Fri Apr 22 09:38:10 EDT 2005 Last updated: Fri Apr 22 11:40:08 EDT 2005
The most recent version of this document can be viewed at The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html. http://www.postgresql.org/docs/faqs.TODO.html.
...@@ -714,12 +714,12 @@ Cache ...@@ -714,12 +714,12 @@ Cache
* Allow data to be pulled directly from indexes * Allow data to be pulled directly from indexes
Currently indexes do not have enough tuple tuple visibility Currently indexes do not have enough tuple visibility information
information to allow data to be pulled from the index without to allow data to be pulled from the index without also accessing
also accessing the heap. One way to allow this is to set a bit the heap. One way to allow this is to set a bit to index tuples
to index tuples to indicate if a tuple is currently visible to to indicate if a tuple is currently visible to all transactions
all transactions when the first valid heap lookup happens. This when the first valid heap lookup happens. This bit would have to
bit would have to be cleared when a heap tuple is expired. be cleared when a heap tuple is expired.
* Consider automatic caching of queries at various levels: * Consider automatic caching of queries at various levels:
o Parsed query tree o Parsed query tree
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
<h1><a name="section_1">PostgreSQL TODO List</a></h1> <h1><a name="section_1">PostgreSQL TODO List</a></h1>
<p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/> <p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
Last updated: Fri Apr 22 09:38:10 EDT 2005 Last updated: Fri Apr 22 11:40:08 EDT 2005
</p> </p>
<p>The most recent version of this document can be viewed at<br/> <p>The most recent version of this document can be viewed at<br/>
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>. <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
...@@ -653,12 +653,12 @@ first. ...@@ -653,12 +653,12 @@ first.
to obtain tuple visibility information. to obtain tuple visibility information.
</p> </p>
</li><li>Allow data to be pulled directly from indexes </li><li>Allow data to be pulled directly from indexes
<p> Currently indexes do not have enough tuple tuple visibility <p> Currently indexes do not have enough tuple visibility information
information to allow data to be pulled from the index without to allow data to be pulled from the index without also accessing
also accessing the heap. One way to allow this is to set a bit the heap. One way to allow this is to set a bit to index tuples
to index tuples to indicate if a tuple is currently visible to to indicate if a tuple is currently visible to all transactions
all transactions when the first valid heap lookup happens. This when the first valid heap lookup happens. This bit would have to
bit would have to be cleared when a heap tuple is expired. be cleared when a heap tuple is expired.
</p> </p>
</li><li>Consider automatic caching of queries at various levels: </li><li>Consider automatic caching of queries at various levels:
<ul> <ul>
......
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