[COMMITTERS] pgsql-server/doc TODO

2003-12-08 Thread Bruce Momjian
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 09:04:14

Modified files:
doc: TODO 

Log message:
Done:

< * COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE ]
> * -COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE 
]
263c263
< * Allow pg_dump to dump CREATE CONVERSION (Christopher)
> * -Allow pg_dump to dump CREATE CONVERSION (Christopher)


---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


[COMMITTERS] pgsql-server/src/bin/pg_dump common.c pg_backu ...

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 12:39:05

Modified files:
src/bin/pg_dump: common.c pg_backup_archiver.h pg_backup_null.c 
 pg_backup_tar.c 

Log message:
Work around naming conflict between zlib and OpenSSL by tweaking inclusion
order.  Remove some unnecessary #includes (that duplicate c.h).


---(end of broadcast)---
TIP 8: explain analyze is your friend


[COMMITTERS] pgsql-server/src/backend/optimizer/util relnode.c

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 14:19:58

Modified files:
src/backend/optimizer/util: relnode.c 

Log message:
Whole-row references were broken for subqueries and functions, because
attr_needed/attr_widths optimization failed to allow for Vars with attno
zero in this case.  Per report from Tatsuo Ishii.


---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


[COMMITTERS] pgsql-server/src/backend/optimizer/util Tag: R ...

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 14:20:12

Modified files:
src/backend/optimizer/util: Tag: REL7_4_STABLE relnode.c 

Log message:
Whole-row references were broken for subqueries and functions, because
attr_needed/attr_widths optimization failed to allow for Vars with attno
zero in this case.  Per report from Tatsuo Ishii.


---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[COMMITTERS] pgsql-server/contrib/pg_autovacuum pg_autovacuum.c

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 17:51:31

Modified files:
contrib/pg_autovacuum: pg_autovacuum.c 

Log message:
Add fflush() before sleeping, per Matthew O'Connor.


---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


[COMMITTERS] pgsql-server/contrib/pg_autovacuum Tag: REL7_4 ...

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 17:51:37

Modified files:
contrib/pg_autovacuum: Tag: REL7_4_STABLE pg_autovacuum.c 

Log message:
Add fflush() before sleeping, per Matthew O'Connor.


---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


[COMMITTERS] pgsql-server/contrib/pg_autovacuum pg_autovacuum.c

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 17:54:00

Modified files:
contrib/pg_autovacuum: pg_autovacuum.c 

Log message:
Minor autovacuum fixes from Matthew O'Connor.


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


[COMMITTERS] pgsql-server/contrib/pg_autovacuum Tag: REL7_4 ...

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 17:54:06

Modified files:
contrib/pg_autovacuum: Tag: REL7_4_STABLE pg_autovacuum.c 

Log message:
Minor autovacuum fixes from Matthew O'Connor.


---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


Re: [COMMITTERS] pgsql-server/src/bin/pg_dump common.c pg_backu ...

2003-12-08 Thread Christopher Kings-Lynne
That's fixed it for me.

Chris

Tom Lane wrote:

CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 12:39:05
Modified files:
	src/bin/pg_dump: common.c pg_backup_archiver.h pg_backup_null.c 
	 pg_backup_tar.c 

Log message:
Work around naming conflict between zlib and OpenSSL by tweaking inclusion
order.  Remove some unnecessary #includes (that duplicate c.h).
---(end of broadcast)---
TIP 8: explain analyze is your friend
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[COMMITTERS] pgsql-server/src/backend/optimizer/util clauses.c

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 21:56:21

Modified files:
src/backend/optimizer/util: clauses.c 

Log message:
query_tree_mutator should copy RangeTblEntry nodes even when it's not
planning to modify them itself.  Otherwise we end up with shared RTE
substructure, which breaks inheritance_planner because the rte->inh
flag needs to be independent in each copied subquery.  Per bug report
from Chris Piker.


---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


[COMMITTERS] pgsql-server/src/backend/optimizer/util Tag: R ...

2003-12-08 Thread Tom Lane
CVSROOT:/cvsroot
Module name:pgsql-server
Changes by: [EMAIL PROTECTED]   03/12/08 21:56:41

Modified files:
src/backend/optimizer/util: Tag: REL7_4_STABLE clauses.c 

Log message:
query_tree_mutator should copy RangeTblEntry nodes even when it's not
planning to modify them itself.  Otherwise we end up with shared RTE
substructure, which breaks inheritance_planner because the rte->inh
flag needs to be independent in each copied subquery.  Per bug report
from Chris Piker.


---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])