public inbox for [email protected]  
help / color / mirror / Atom feed
7.35b doc bug?
4+ messages / 3 participants
[nested] [flat]

* 7.35b doc bug?
@ 2002-11-20 21:40 elein <[email protected]>
  2002-11-27 17:02 ` Re: 7.35b doc bug? Bruce Momjian <[email protected]>
  0 siblings, 1 reply; 4+ messages in thread

From: elein @ 2002-11-20 21:40 UTC (permalink / raw)
  To: pgsql-docs; +Cc: [email protected]


In 4.2 User Attributes, the word geqo should probably be changed to
enable_indexscan.

4.2 User Attributes...

 A user can also set personal defaults for many of the run-time configuration settings described in 
Section 3.4. For example, if for some reason you want to disable index scans 
(hint: not a good idea) anytime you connect, you can use

ALTER USER myname SET enable_indexscan TO off;

This will save the setting (but not set it immediately) and in subsequent 
connections it will appear as though SET geqo TO off; had been called right 
before the session started.

This probably should read:

 A user can also set personal defaults for many of the run-time configuration 
settings described in Section 3.4. For example, if for some reason you want 
to disable index scans (hint: not a good idea) anytime you connect, you can 
use

ALTER USER myname SET enable_indexscan TO off;

This will save the setting (but not set it immediately) and in subsequent 
connections it will appear as though SET enable_indexscan TO off; had been 
called right before the session started.

[email protected]
-- 
------------------------------------------------------------------------------------------
[email protected]     Database Consulting     www.varlena.com
                                    It's a doggie dog world.



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* Re: 7.35b doc bug?
  2002-11-20 21:40 7.35b doc bug? elein <[email protected]>
@ 2002-11-27 17:02 ` Bruce Momjian <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Bruce Momjian @ 2002-11-27 17:02 UTC (permalink / raw)
  To: [email protected]; +Cc: pgsql-docs


This was corrected by Peter already:

	revision 2.21
	date: 2002/09/25 21:16:10;  author: petere;  state: Exp;  lines: +141 -57
	Enhance the description of user and database management.  Reduce the
	number of forward references in the admin guide.

You can see the new text at:

	http://developer.postgresql.org/docs/postgres/manage-ag-config.html


---------------------------------------------------------------------------

elein wrote:
> 
> In 4.2 User Attributes, the word geqo should probably be changed to
> enable_indexscan.
> 
> 4.2 User Attributes...
> 
>  A user can also set personal defaults for many of the run-time configuration settings described in 
> Section 3.4. For example, if for some reason you want to disable index scans 
> (hint: not a good idea) anytime you connect, you can use
> 
> ALTER USER myname SET enable_indexscan TO off;
> 
> This will save the setting (but not set it immediately) and in subsequent 
> connections it will appear as though SET geqo TO off; had been called right 
> before the session started.
> 
> This probably should read:
> 
>  A user can also set personal defaults for many of the run-time configuration 
> settings described in Section 3.4. For example, if for some reason you want 
> to disable index scans (hint: not a good idea) anytime you connect, you can 
> use
> 
> ALTER USER myname SET enable_indexscan TO off;
> 
> This will save the setting (but not set it immediately) and in subsequent 
> connections it will appear as though SET enable_indexscan TO off; had been 
> called right before the session started.
> 
> [email protected]
> -- 
> ------------------------------------------------------------------------------------------
> [email protected]     Database Consulting     www.varlena.com
>                                     It's a doggie dog world.
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
> 
> http://www.postgresql.org/users-lounge/docs/faq.html
> 

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [email protected]               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073




^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* 7.35b doc bug?
@ 2002-11-22 20:16 elein <[email protected]>
  2002-11-22 20:26 ` Re: 7.35b doc bug? Tom Lane <[email protected]>
  0 siblings, 1 reply; 4+ messages in thread

From: elein @ 2002-11-22 20:16 UTC (permalink / raw)
  To: pgsql-docs; +Cc: [email protected]


In 4.2 User Attributes, the word geqo should probably be changed to
enable_indexscan.

4.2 User Attributes...

 A user can also set personal defaults for many of the run-time configuration 
settings described in 
Section 3.4. For example, if for some reason you want to disable index scans 
(hint: not a good idea) anytime you connect, you can use

ALTER USER myname SET enable_indexscan TO off;

This will save the setting (but not set it immediately) and in subsequent 
connections it will appear as though SET geqo TO off; had been called right 
before the session started.

This probably should read:

 A user can also set personal defaults for many of the run-time configuration 
settings described in Section 3.4. For example, if for some reason you want 
to disable index scans (hint: not a good idea) anytime you connect, you can 
use

ALTER USER myname SET enable_indexscan TO off;

This will save the setting (but not set it immediately) and in subsequent 
connections it will appear as though SET enable_indexscan TO off; had been 
called right before the session started.

[email protected]
-- 
------------------------------------------------------------------------------------------
[email protected]     Database Consulting     www.varlena.com
                                    It's a doggie dog world.




^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* Re: 7.35b doc bug?
  2002-11-22 20:16 7.35b doc bug? elein <[email protected]>
@ 2002-11-22 20:26 ` Tom Lane <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Tom Lane @ 2002-11-22 20:26 UTC (permalink / raw)
  To: [email protected]; +Cc: pgsql-docs

elein <[email protected]> writes:
> In 4.2 User Attributes, the word geqo should probably be changed to
> enable_indexscan.

This seems to be fixed already in CVS tip.  But thanks for the report!

			regards, tom lane




^ permalink  raw  reply  [nested|flat] 4+ messages in thread


end of thread, other threads:[~2002-11-27 17:02 UTC | newest]

Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2002-11-20 21:40 7.35b doc bug? elein <[email protected]>
2002-11-27 17:02 ` Bruce Momjian <[email protected]>
2002-11-22 20:16 7.35b doc bug? elein <[email protected]>
2002-11-22 20:26 ` Tom Lane <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox