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

Commit 5eb29fe

Browse files
committed
Add:
> > o Prevent tab completion of SET TRANSACTION from querying the > database and therefore preventing the transaction isolation > level from being set. > > Currently, SET <tab> causes a database lookup to check all > supported session variables. This query causes problems > because setting the transaction isolation level must be the > first statement of a transaction.
1 parent 6851bae commit 5eb29fe

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

doc/TODO

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL TODO List
33
====================
44
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
5-
Last updated: Wed Jan 25 21:50:11 EST 2006
5+
Last updated: Tue Jan 31 19:03:09 EST 2006
66

77
The most recent version of this document can be viewed at
88
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -616,6 +616,15 @@ Clients
616616

617617
Consider using auto-expanded mode for backslash commands like \df+.
618618

619+
o Prevent tab completion of SET TRANSACTION from querying the
620+
database and therefore preventing the transaction isolation
621+
level from being set.
622+
623+
Currently, SET <tab> causes a database lookup to check all
624+
supported session variables. This query causes problems
625+
because setting the transaction isolation level must be the
626+
first statement of a transaction.
627+
619628

620629
* pg_dump
621630

doc/src/FAQ/TODO.html

+9-1
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:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
11-
Last updated: Wed Jan 25 21:50:11 EST 2006
11+
Last updated: Tue Jan 31 19:03:09 EST 2006
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>.
@@ -558,6 +558,14 @@ <h1><a name="section_9">Clients</a></h1>
558558
</li><li>Add auto-expanded mode so expanded output is used if the row
559559
length is wider than the screen width.
560560
<p> Consider using auto-expanded mode for backslash commands like \df+.
561+
</p>
562+
</li><li>Prevent tab completion of SET TRANSACTION from querying the
563+
database and therefore preventing the transaction isolation
564+
level from being set.
565+
<p> Currently, SET &lt;tab&gt; causes a database lookup to check all
566+
supported session variables. This query causes problems
567+
because setting the transaction isolation level must be the
568+
first statement of a transaction.
561569
</p>
562570
</li></ul>
563571
</li><li>pg_dump

0 commit comments

Comments
 (0)