Re: [HACKERS] make output

2003-11-05 Thread Peter Eisentraut
Andrew Overholt writes: [EMAIL PROTECTED] postgresql]$ time make all make.nonsmp mkdir man7 some minor bison and ant warnings Should the man directory creation be echoed like that? Yes, that appears to be normal. -- Peter Eisentraut [EMAIL PROTECTED] ---(end

Re: [HACKERS] Open Sourcing pgManage

2003-11-05 Thread Dave Page
-Original Message- From: Andrew Dunstan [mailto:[EMAIL PROTECTED] Sent: 05 November 2003 00:53 To: PostgreSQL-development Subject: Re: [HACKERS] Open Sourcing pgManage Andreas Pflug wrote: pgAdmin is designed for a good interactive experience, which isn't achievable

Re: [HACKERS] UPPER()/LOWER() and UTF-8

2003-11-05 Thread Karel Zak
On Tue, Nov 04, 2003 at 04:52:33PM -0500, Tom Lane wrote: Alexey Mahotkin [EMAIL PROTECTED] writes: I'm running Postgresql 7.3.4 with ru_RU.UTF-8 locale (with UNICODE database encoding), and all is almost well, except that UPPER() and LOWER() seem to ignore locale. upper/lower aren't

[HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Jason Godden
Hi all, This is my first patch for PostgreSQL against the 7.5devel cvs (please advise if this is the wrong place to post patches). This patch simply enables the \xDD (or \XDD) hexadecimal import in the copy command (im starting with the simple stuff first). I did notice that there may be a

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Peter Eisentraut
Jason Godden writes: This is my first patch for PostgreSQL against the 7.5devel cvs (please advise if this is the wrong place to post patches). This patch simply enables the \xDD (or \XDD) hexadecimal import in the copy command (im starting with the simple stuff first). I did notice that

Re: [HACKERS] Open Sourcing pgManage

2003-11-05 Thread Andrew Dunstan
Dave Page wrote: -Original Message- From: Andrew Dunstan [mailto:[EMAIL PROTECTED] Don't get me wrong - pgadmin is cool - I especially recommend it to my Windows oriented clients and colleagues who hate using command lines. Why not your Linux or FreeBSD oriented

Re: [HACKERS] Open Sourcing pgManage

2003-11-05 Thread Dave Page
-Original Message- From: Andrew Dunstan [mailto:[EMAIL PROTECTED] Sent: 05 November 2003 12:48 To: PostgreSQL-development Subject: Re: [HACKERS] Open Sourcing pgManage especially != only Very true :-) BTW, pgadmin could improve its Linux coverage somewhat by a)

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Christopher Kings-Lynne
This is my first patch for PostgreSQL against the 7.5devel cvs (please advise if this is the wrong place to post patches). This patch simply enables the \xDD (or \XDD) hexadecimal import in the copy command (im starting with the simple stuff first). I did notice that there may be a need to issue

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Tom Lane
Jason Godden [EMAIL PROTECTED] writes: This is my first patch for PostgreSQL against the 7.5devel cvs (please advise if this is the wrong place to post patches). pgsql-patches in future, please. +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) This seems

Re: [HACKERS] Experimental patch for inter-page delay in VACUUM

2003-11-05 Thread Zeugswetter Andreas SB SD
The only idea I have come up with is to move all buffer write operations into a background writer process, which could easily keep track of every file it's written into since the last checkpoint. I fear this approach. It seems to limit a lot of design flexibility later. But I can't

Re: [HACKERS] Experimental ARC implementation

2003-11-05 Thread Zeugswetter Andreas SB SD
My plan is to create another background process very similar to the checkpointer and to let that run forever basically looping over that BufferSync() with a bool telling that it's the bg_writer. Why not use the checkpointer itself inbetween checkpoints ? use a min and a max dirty setting

Re: [HACKERS] Hacking PostgreSQL to work in Mac OS X 10.3 (Panther

2003-11-05 Thread scott.marlowe
Is this a bug we should fix for 7.3.5 when it eventually comes out? On Tue, 4 Nov 2003, Andrew Rawnsley wrote: Just build RC1 today on Panther, no problems. On Nov 4, 2003, at 5:06 PM, Jeff Hoffmann wrote: Tom Lane wrote: [EMAIL PROTECTED] writes: After spending a few hours of

Re: [HACKERS] 7.4RC1 tag'd, branched and bundled ...

2003-11-05 Thread scott.marlowe
On Tue, 4 Nov 2003, Gaetano Mendola wrote: I agree in general with you for these general arguments, but here we are talking about to introduce a sleep ( removable by guc ) or not! What about the hash refactoring introduced with 7.4? Are you going to discourage people to use the hash?

Re: [HACKERS] Open Sourcing pgManage

2003-11-05 Thread Christopher Browne
[EMAIL PROTECTED] (Greg Stark) writes: Andrew Dunstan [EMAIL PROTECTED] writes: I think there is room for lots of GUIs, though, and having a Java admin GUI would be cool too, as would having a servlet/JSP based admin client deployable as a web archive. If someone's looking for an

[HACKERS] BTree information

2003-11-05 Thread Anand, VJ (MED, GEMS-IT)
I am trying to find information regarding creation of B-tree index in postgres for variable length character data (Char/varchar type). Specifically, what pagination policy is used, does it use prefix, or any other form of compression (encoding)? Regards, VJ Anand

Re: [HACKERS] Experimental ARC implementation

2003-11-05 Thread Jan Wieck
Zeugswetter Andreas SB SD wrote: My plan is to create another background process very similar to the checkpointer and to let that run forever basically looping over that BufferSync() with a bool telling that it's the bg_writer. Why not use the checkpointer itself inbetween checkpoints ? use a

Re: [HACKERS] Open Sourcing pgManage

2003-11-05 Thread Greg Stark
Christopher Browne [EMAIL PROTECTED] writes: Was that a 'native' part of SHELF? Or more related to their TM1 product? The full source was included in SHELF (if that was the source release I'm thinking of.) I think it was called axdata. FYI, while Applix and VistaSource have orphaned it,

[HACKERS] Erroneous PPC spinlock code

2003-11-05 Thread Peter Eisentraut
The SuSE PPC guru said that the PPC spinlock code we currently use may behave erroneously on multiprocessor systems. Attached is the proposed patch, suggested for inclusion in 7.4. Comments? -- Peter Eisentraut [EMAIL PROTECTED] --- src/include/storage/s_lock.h +++

[HACKERS] Open Issues for 7.4

2003-11-05 Thread Peter Eisentraut
Here are some issues that might need to be addressed before 7.4 goes out: * ECPG has some new include files such as datetime.h decimal.h that come as part of the Informix compatibility mode. I don't think these should be installed directly in $includedir because of potential conflicts. We

Re: [HACKERS] Erroneous PPC spinlock code

2003-11-05 Thread Tom Lane
Peter Eisentraut [EMAIL PROTECTED] writes: The SuSE PPC guru said that the PPC spinlock code we currently use may behave erroneously on multiprocessor systems. What's his evidence for that claim? The code we have is based directly on the recommendations in the PPC manuals, and has been tested

[HACKERS] Performance features the 4th

2003-11-05 Thread Jan Wieck
I've just uploaded http://developer.postgresql.org/~wieck/all_performance.v4.74.diff.gz This patch contains the still not yet ready performance improvements discussed over the couple last days. _Shared buffer replacement_: The buffer replacement strategy is a slightly modified version of ARC.

[HACKERS] Very poor estimates from planner

2003-11-05 Thread Rod Taylor
Since this is a large query, attachments for the explains / query. Configuration: dev_iqdb=# select version(); version PostgreSQL 7.4beta1 on

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Markus Bertheau
, 05.11.2003, 16:25, Tom Lane : +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) This seems excessively dependent on the assumption that the character set is ASCII. Why have you hard-coded numeric equivalents into this macro? What not ASCII compatible

Re: [HACKERS] Experimental ARC implementation

2003-11-05 Thread Zeugswetter Andreas SB SD
Why not use the checkpointer itself inbetween checkpoints ? use a min and a max dirty setting like Informix. Start writing when more than max are dirty stop when at min. This avoids writing single pages (which is slow, since it cannot be grouped together by the OS). Current approach

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Manfred Spraul
Jan Wieck wrote: _Vacuum page delay_: Tom Lane's napping during vacuums with another tuning option. I replaced the usleep() call with a PG_DELAY(msec) macro in miscadmin.h, which does use select(2) instead. That should address the possible portability problems. What about skipping the delay

Re: [HACKERS] Experimental ARC implementation

2003-11-05 Thread Jan Wieck
Zeugswetter Andreas SB SD wrote: Why not use the checkpointer itself inbetween checkpoints ? use a min and a max dirty setting like Informix. Start writing when more than max are dirty stop when at min. This avoids writing single pages (which is slow, since it cannot be grouped together by

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Neil Conway
Jan Wieck [EMAIL PROTECTED] writes: This patch contains the still not yet ready performance improvements discussed over the couple last days. Cool stuff! The buffer replacement strategy is a slightly modified version of ARC. BTW Jan, I got your message about taking a look at the ARC code;

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Jan Wieck
Manfred Spraul wrote: Jan Wieck wrote: _Vacuum page delay_: Tom Lane's napping during vacuums with another tuning option. I replaced the usleep() call with a PG_DELAY(msec) macro in miscadmin.h, which does use select(2) instead. That should address the possible portability problems. What

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Jan Wieck
Neil Conway wrote: Jan Wieck [EMAIL PROTECTED] writes: This patch contains the still not yet ready performance improvements discussed over the couple last days. Cool stuff! The buffer replacement strategy is a slightly modified version of ARC. BTW Jan, I got your message about taking a look at

Re: [HACKERS] Open Issues for 7.4

2003-11-05 Thread Marc G. Fournier
On Wed, 5 Nov 2003, Peter Eisentraut wrote: Here are some issues that might need to be addressed before 7.4 goes out: * ECPG has some new include files such as datetime.h decimal.h that come as part of the Informix compatibility mode. I don't think these should be installed directly

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Andrew Dunstan
Jan Wieck wrote: How portable is getrusage()? Could the postmaster issue that frequently for RUSAGE_CHILDREN and leave the result somewhere in the shared memory for whoever is concerned? SVr4, BSD4.3, SUS2 and POSIX1003.1, I believe. I also believe there is a M$ dll available that gives that

[HACKERS] Schema boggle...

2003-11-05 Thread Chris Bowlby
Hi All, I work with Marc Fournier, for those who don't know, and have been working extensively with the schemas feature for Hub.Org's new Account Management package. Each client's data is stored in a seperate schema set asside just for them (though they will never have direct access to it, it

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Jason Godden
On Thu, 6 Nov 2003 06:25 am, Markus Bertheau wrote: , 05.11.2003, 16:25, Tom Lane : +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) This seems excessively dependent on the assumption that the character set is ASCII. Why have you hard-coded numeric

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Larry Rosenman
--On Thursday, November 06, 2003 07:43:07 +1100 Jason Godden [EMAIL PROTECTED] wrote: On Thu, 6 Nov 2003 06:25 am, Markus Bertheau wrote: ? ???, 05.11.2003, ? 16:25, Tom Lane ?: +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) This seems excessively

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Jan Wieck
Andrew Dunstan wrote: Jan Wieck wrote: How portable is getrusage()? Could the postmaster issue that frequently for RUSAGE_CHILDREN and leave the result somewhere in the shared memory for whoever is concerned? SVr4, BSD4.3, SUS2 and POSIX1003.1, I believe. I also believe there is a M$ dll

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Andrew Sullivan
On Wed, Nov 05, 2003 at 03:08:53PM -0500, Neil Conway wrote: Jan Wieck [EMAIL PROTECTED] writes: I personally would like to see this work included in a 7.4.x release. Personally, I can't see any circumstance under which I would view this as appropriate for integration into the 7.4 branch

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Jan Wieck
Chris Bowlby wrote: Hi All, I work with Marc Fournier, for those who don't know, and have been working extensively with the schemas feature for Hub.Org's new Account Management package. Each client's data is stored in a seperate schema set asside just for them (though they will never have

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Tom Lane
Jan Wieck [EMAIL PROTECTED] writes: Manfred Spraul wrote: What about skipping the delay if there are no outstanding disk operations? How portable is getrusage()? Could the postmaster issue that frequently for RUSAGE_CHILDREN and leave the result somewhere in the shared memory for whoever

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Kurt Roeckx
On Wed, Nov 05, 2003 at 03:49:54PM -0500, Jan Wieck wrote: Andrew Dunstan wrote: Jan Wieck wrote: How portable is getrusage()? Could the postmaster issue that frequently for RUSAGE_CHILDREN and leave the result somewhere in the shared memory for whoever is concerned? SVr4, BSD4.3,

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Marc G. Fournier
On Wed, 5 Nov 2003, Jan Wieck wrote: Chris Bowlby wrote: Hi All, I work with Marc Fournier, for those who don't know, and have been working extensively with the schemas feature for Hub.Org's new Account Management package. Each client's data is stored in a seperate schema set

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Stephan Szabo
On Thu, 6 Nov 2003, Jason Godden wrote: On Thu, 6 Nov 2003 06:25 am, Markus Bertheau wrote: , 05.11.2003, 16:25, Tom Lane : +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) This seems excessively dependent on the assumption that the character

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Tom Lane
Jan Wieck [EMAIL PROTECTED] writes: As a matter of fact, people who have performance problems are likely to be the same who have upgrade problems. And as Gaetano pointed out correctly, we will see wildforms with one or the other feature applied. I'd believe that for patches of the size of my

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Manfred Spraul
Tom Lane wrote: Manfred's idea is interesting but AFAICS completely unimplementable in any portable fashion. You'd have to have hooks into the kernel. I thought about outstanding operations from postgres - I don't know enough about the buffer layer if it's possible to keep a counter of the

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Tom Lane
Chris Bowlby [EMAIL PROTECTED] writes: As you can see this is a nice, clean way to break down some datasets. But, if I do: set search_path to public, test_001, test_002; I only get access to the tables in test_001 and public, the tables in test_002 are not listed, and thus I do not see

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Tom Lane
Stephan Szabo [EMAIL PROTECTED] writes: On Thu, 6 Nov 2003, Jason Godden wrote: On Thu, 6 Nov 2003 06:25 am, Markus Bertheau wrote: +#define HEXVALUE(c) (((c)='a') ? ((c)-87) : (((c)='A') ? ((c)-55) : ((c)-'0'))) I haven't looked at the code in question, but assuming the digits are

[HACKERS] Changes to Contributor List

2003-11-05 Thread Josh Berkus
Folks, If possible, for the upcoming release we'd like to get the Contributor List on developer.postgresql.org updated. Can everyone please take a gander at: http://developer.postgresql.org/bios.php ... and tell me what's out of date other than me Vadim? i.e.: A) What contributors are

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Marc G. Fournier
On Wed, 5 Nov 2003, Tom Lane wrote: Chris Bowlby [EMAIL PROTECTED] writes: As you can see this is a nice, clean way to break down some datasets. But, if I do: set search_path to public, test_001, test_002; I only get access to the tables in test_001 and public, the tables in

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Josh Berkus
Chris, I work with Marc Fournier, for those who don't know, and have been working extensively with the schemas feature for Hub.Org's new Account Management package. Each client's data is stored in a seperate schema set asside just for them (though they will never have direct access to it,

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Tom Lane
Marc G. Fournier [EMAIL PROTECTED] writes: How else would you expect it to work? List of relations Schema | Name | Type | Owner --+---+--+--- public | categories| table| 186_pgsql

Re: [HACKERS] Performance features the 4th

2003-11-05 Thread Matthew T. O'Connor
Tom Lane wrote: Jan Wieck [EMAIL PROTECTED] writes: As a matter of fact, people who have performance problems are likely to be the same who have upgrade problems. And as Gaetano pointed out correctly, we will see wildforms with one or the other feature applied. I'd believe that for

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Tom Lane
Josh Berkus [EMAIL PROTECTED] writes: B) What contributors are listed under Major Developers who haven't contributed any code since 7.1.0? I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a new section titled Contributors Emeritus or some such.

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Josh Berkus
Tom, I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a new section titled Contributors Emeritus or some such. Please make sure that Tom Lockhart and Vadim get listed that way, at least. Yeah, I was thinking of moving them from Major

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Bruce Momjian
Tom Lane wrote: Josh Berkus [EMAIL PROTECTED] writes: B) What contributors are listed under Major Developers who haven't contributed any code since 7.1.0? I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a new section titled Contributors

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Bruce Momjian
Tom Lane wrote: Josh Berkus [EMAIL PROTECTED] writes: B) What contributors are listed under Major Developers who haven't contributed any code since 7.1.0? I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a new section titled Contributors

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Jan Wieck
Josh Berkus wrote: Folks, If possible, for the upcoming release we'd like to get the Contributor List on developer.postgresql.org updated. Can everyone please take a gander at: http://developer.postgresql.org/bios.php ... and tell me what's out of date other than me Vadim? i.e.: A) What

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Josh Berkus
Guys, Oh, and how about we kill the Image Map of major developers? It's about 4 years out of date, and makes developers.postgresql.org load like molasses in January. -- -Josh Berkus Aglio Database Solutions San Francisco ---(end of

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Bruce Momjian
Josh Berkus wrote: Guys, Oh, and how about we kill the Image Map of major developers? It's about 4 years out of date, and makes developers.postgresql.org load like molasses in January. Agreed. I think Jan is the only one who knows how to updated it. Jan? -- Bruce Momjian

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Tom Lane
Bruce Momjian [EMAIL PROTECTED] writes: Josh Berkus wrote: Oh, and how about we kill the Image Map of major developers? It's about 4 years out of date, and makes developers.postgresql.org load like molasses in January. Agreed. Yeah. It was cute when we did it but it's overkill as a way

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Josh Berkus
Tom, Yeah. It was cute when we did it but it's overkill as a way of pointing out that we have a worldwide development community. We can just say that... I'll be happy to re-do it someday using OOo's imagemapper. But not this week ... -- -Josh Berkus Aglio Database Solutions San

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Neil Conway
Josh Berkus [EMAIL PROTECTED] writes: Oh, and how about we kill the Image Map of major developers? It's about 4 years out of date, and makes developers.postgresql.org load like molasses in January. Personally, I don't really see the need for developer.postgresql.org to be a separate

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread scott.marlowe
On Wed, 5 Nov 2003, Rod Taylor wrote: Since this is a large query, attachments for the explains / query. Configuration: dev_iqdb=# select version(); version

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Peter Eisentraut
Josh Berkus writes: If possible, for the upcoming release we'd like to get the Contributor List on developer.postgresql.org updated. Can everyone please take a gander at: http://developer.postgresql.org/bios.php One thing that really puzzles me is this web page:

Re: [HACKERS] Erroneous PPC spinlock code

2003-11-05 Thread Tom Lane
Peter Eisentraut [EMAIL PROTECTED] writes: The SuSE PPC guru said that the PPC spinlock code we currently use may behave erroneously on multiprocessor systems. Attached is the proposed patch, suggested for inclusion in 7.4. Comments? I looked into this some more. The current CVS tip is

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Peter Eisentraut
Neil Conway writes: Personally, I don't really see the need for developer.postgresql.org to be a separate sub-site. Since it is basically just a collection of links to other resources (CVSweb, TODO list, devel docs build, etc.), why not just make it a page or two on www.postgresql.org? I

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Andrew Dunstan
Bruce Momjian wrote: Tom Lane wrote: Josh Berkus [EMAIL PROTECTED] writes: B) What contributors are listed under Major Developers who haven't contributed any code since 7.1.0? I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a

Re: [HACKERS] Open Issues for 7.4

2003-11-05 Thread Tom Lane
Peter Eisentraut [EMAIL PROTECTED] writes: * Fix uselessly executable files in the source tree. See my recent post. Any ideas on that? They've been uselessly executable since they were put there. I don't think this is something that we need to fix in time for 7.4, or even should risk trying

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread Rod Taylor
I'm not sure if that will actually change the default_statistics_target of the tables you're analyzing, I think it will only apply to newly created tables. I believe you have to alter table alter column set statistics 1000 for each column you want a statistic of 1000. You might wanna

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread Tom Lane
Rod Taylor [EMAIL PROTECTED] writes: I'm not sure if that will actually change the default_statistics_target Hmm.. I was under the impression that it would work for any tables that haven't otherwise been overridden. It will. I think Scott is recalling the original circa-7.2 implementation,

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread Rod Taylor
On Wed, 2003-11-05 at 18:57, Tom Lane wrote: Rod Taylor [EMAIL PROTECTED] writes: I'm not sure if that will actually change the default_statistics_target Hmm.. I was under the impression that it would work for any tables that haven't otherwise been overridden. It will. I think Scott

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread Tom Lane
Rod Taylor [EMAIL PROTECTED] writes: Effectively, the planner has amazingly inaccurate row estimates. It seems the key estimation failure is in this join step: - Hash Join (cost=1230.79..60581.82 rows=158 width=54) (actual time=1262.35..151200.29 rows=1121988 loops=1)

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread scott.marlowe
On Wed, 5 Nov 2003, Tom Lane wrote: Rod Taylor [EMAIL PROTECTED] writes: I'm not sure if that will actually change the default_statistics_target Hmm.. I was under the impression that it would work for any tables that haven't otherwise been overridden. It will. I think Scott is

Re: [HACKERS] Very poor estimates from planner

2003-11-05 Thread Rod Taylor
On Wed, 2003-11-05 at 19:18, Tom Lane wrote: Rod Taylor [EMAIL PROTECTED] writes: Effectively, the planner has amazingly inaccurate row estimates. It seems the key estimation failure is in this join step: - Hash Join (cost=1230.79..60581.82 rows=158 width=54) (actual

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Josh Berkus
Peter, http://advocacy.postgresql.org/about/ This is sort of the same web page that we're talking about here, but it lists the developers below the press contacts as also-rans. What's worse, this is the web page that people will get to if they go to if they go to

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Marc G. Fournier
Actually, the use of schema's was my idea, to speed up some dreadfully slow queries dealing with traffic stats from a table that was growing painfully monolithic ... the idea is/was that it would be easier to backup/remove all data pertaining to a specific client if they decided to close their

Re: [HACKERS] Open Issues for 7.4

2003-11-05 Thread Christopher Kings-Lynne
* Fix uselessly executable files in the source tree. See my recent post. Any ideas on that? As far as I'm aware, the only way to fix this is to get into the cvsroot and chmod them by hand. Chris ---(end of broadcast)--- TIP 5: Have you

Re: [HACKERS] Changes to Contributor List

2003-11-05 Thread Gaetano Mendola
Josh Berkus wrote: Folks, If possible, for the upcoming release we'd like to get the Contributor List on developer.postgresql.org updated. Can everyone please take a gander at: http://developer.postgresql.org/bios.php ... and tell me what's out of date other than me Vadim? i.e.: A) What

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Christopher Kings-Lynne
I think we had agreed that formerly-listed contributors would not be deleted, but would be moved to a new section titled Contributors Emeritus or some such. Please make sure that Tom Lockhart and Vadim get listed that way, at least. I think the Emeritus word might be too hard for non-native

Re: [pgsql-www] [HACKERS] Changes to Contributor List

2003-11-05 Thread Joshua D. Drake
I think the Emeritus word might be too hard for non-native English speakers, and even for less educated English speakers. Isn't that an even better reason to use it? :) My personal opinion would be that they can use dictionary.com if they don't know what it means. Chris

Re: [HACKERS] Schema boggle...

2003-11-05 Thread Greg Stark
Marc G. Fournier [EMAIL PROTECTED] writes: Actually, the use of schema's was my idea, to speed up some dreadfully slow queries dealing with traffic stats from a table that was growing painfully monolithic ... the idea is/was that it would be easier to backup/remove all data pertaining to a

Re: [HACKERS] \xDD patch for 7.5devel

2003-11-05 Thread Jason Godden
#define HEXVALUE(c) \ (((c) = '0' (c) = '9') ? ((c) - '0') : \ (((c) = 'A' (c) = 'F') ? ((c) - 'A' + 10) : \ ((c) - 'a' + 10))) 3. The third level would be to get rid of the assumption that letters are contiguous, which would probably require making a lookup table to