Re: [HACKERS] pltcl.so patch

2002-09-24 Thread Nigel J. Andrews
On 25 Sep 2002, Neil Conway wrote: > "Nigel J. Andrews" <[EMAIL PROTECTED]> writes: > > Yes, I do get the similar results. > > > > A quick investigation shows that the SPI_freetuptable at the end of > > pltcl_SPI_exec is trying to free a tuptable of value 0x82ebe64 > > (which looks sensible to m

Re: [HACKERS] Postgresql Automatic vacuum

2002-09-24 Thread Shridhar Daithankar
On 25 Sep 2002 at 1:10, Matthew T. O'Connor wrote: > > It doesn't have to make its way into the postgresql daemon itself -- in > fact since some people like tuning the vacuuming, it makes more sense to > make this a daemon. No, my suggestion is simple that some sort of > auto-vacuumer be compiled

Re: [HACKERS] Postgresql Automatic vacuum

2002-09-24 Thread Matthew T. O'Connor
> It doesn't have to make its way into the postgresql daemon itself -- in fact since some people like tuning the vacuuming, it makes more sense to make this a daemon. No, my suggestion is simple that some sort of auto-vacuumer be compiled as a stand-alone app and included in the standard postgresq

Re: [HACKERS] pltcl.so patch

2002-09-24 Thread Neil Conway
"Nigel J. Andrews" <[EMAIL PROTECTED]> writes: > Yes, I do get the similar results. > > A quick investigation shows that the SPI_freetuptable at the end of > pltcl_SPI_exec is trying to free a tuptable of value 0x82ebe64 > (which looks sensible to me) but which has a memory context of > 0x7f7f7f7

Re: [HACKERS] making use of large TLB pages

2002-09-24 Thread Tom Lane
Neil Conway <[EMAIL PROTECTED]> writes: > I'd like to enable PostgreSQL to use large TLB pages, if the OS and > processor support them. Hmm ... it seems interesting, but I'm hesitant to do a lot of work to support something that's only available on one hardware-and-OS combination. (If we were ta

Re: [HACKERS] pg_dump and inherited attributes

2002-09-24 Thread Tom Lane
Alvaro Herrera <[EMAIL PROTECTED]> writes: > I'm looking at pg_dump/common.c:flagInhAttrs() and suspect that it can > be more or less rewritten completely, and probably should to get rigth > all the cases mentioned in the past attisinherited discussion. Is this > desirable for 7.3? It can probab

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > How do I run the regression tests for /contrib stuff? make make install make installcheck AFAICT, earthdistance is nowhere near passing yet :-(. It looks to me like the regression test is depending on the cube-based features that we decided to hold of

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > >> No. The new files are: > >> expected/earthdistance.out (which you metion above) > >> sql/earthdistance.sql > > > OK, here's what I see now in CVS: > > > #$ pwd > > /pgtop/contrib/earthdistance > > #$ lf > > CVS/

Re: [HACKERS] Postgresql Automatic vacuum

2002-09-24 Thread John Buckman
> As far as getting into base postgresql distro. I don't mind it rewriting but I > have some reservations. > 1) As it is postgresql source code is huge. Adding functions to it which > directly taps into it's nervous system e.g. cache, would take far more time to > perfect in all conditions. It d

Re: [HACKERS] PGXLOG variable worthwhile?

2002-09-24 Thread Curt Sampson
On Tue, 24 Sep 2002, Jan Wieck wrote: > And AFAICS it is scary only because screwing that up will simply corrupt > your database. Thus, a simple random number (okay, and a timestamp of > initdb) in two files, one in $PGDATA and one in $PGXLOG would be a > totally sufficient safety mechanism to pr

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Alvaro Herrera
Hannu Krosing dijo: > For me it feels assymmetric (unless we will make attislocal also int > instead of boolean ;). This assymetric nature will manifest itself when > we will have ADD COLUMN which can put back the DROP ONLY COLUMN and it > has to determine weather to remove the COLUMN definition

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Hannu Krosing
On Wed, 2002-09-25 at 04:33, Alvaro Herrera wrote: > Hannu Krosing dijo: > > > On Wed, 2002-09-25 at 04:13, Tom Lane wrote: > > > Hannu Krosing <[EMAIL PROTECTED]> writes: > > > > 1) > > > > create table p1 (f1 int, g1 int); > > > > create table p2 (f1 int, h1 in

[HACKERS] news.postgresql.org down

2002-09-24 Thread Joe Conway
news.postgresql.org seems to be down (and has been for a while -- I think I tried a day or so ago and found it down then also) Joe ---(end of broadcast)--- TIP 2: you can get off all lists at once with the unregister command (send "unregister

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Alvaro Herrera
Hannu Krosing dijo: > On Wed, 2002-09-25 at 04:13, Tom Lane wrote: > > Hannu Krosing <[EMAIL PROTECTED]> writes: > > > 1) > > > create table p1 (f1 int, g1 int); > > > create table p2 (f1 int, h1 int); > > > create table c () inherits(p1, p2); > > > drop column p

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Hannu Krosing
On Wed, 2002-09-25 at 04:13, Tom Lane wrote: > Hannu Krosing <[EMAIL PROTECTED]> writes: > > 1) > > create table p1 (f1 int, g1 int); > > create table p2 (f1 int, h1 int); > > create table c () inherits(p1, p2); > > drop column p2.f1; -- this DROP is in fact implic

Re: [HACKERS] Default privileges for 7.3

2002-09-24 Thread Tom Lane
Peter Eisentraut <[EMAIL PROTECTED]> writes: > Tom Lane writes: >> How do you feel about allowing functions to default to EXECUTE PUBLIC? > Less excited, but if it gets us to the point of no known problems during > upgrade we might as well do it. Okay, I've changed the defaults for both language

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Tom Lane
Hannu Krosing <[EMAIL PROTECTED]> writes: > 1) > create table p1 (f1 int, g1 int); > create table p2 (f1 int, h1 int); > create table c () inherits(p1, p2); > drop column p2.f1; -- this DROP is in fact implicitly ONLY Surely not? At least, I don't see why it shou

Re: [HACKERS] DROP COLUMN misbehaviour with multiple inheritance

2002-09-24 Thread Hannu Krosing
On Mon, 2002-09-23 at 18:41, Tom Lane wrote: > Hannu Krosing <[EMAIL PROTECTED]> writes: > > Alvaro Herrera kirjutas E, 23.09.2002 kell 10:30: > >> The former drops f1 from c, while the latter does not. It's > >> inconsistent. > > > But this is what _should_ happen. > > On what grounds do you c

[HACKERS] pg_dump and inherited attributes

2002-09-24 Thread Alvaro Herrera
Hi, I'm looking at pg_dump/common.c:flagInhAttrs() and suspect that it can be more or less rewritten completely, and probably should to get rigth all the cases mentioned in the past attisinherited discussion. Is this desirable for 7.3? It can probably be hacked around and the rewrite kept for

[HACKERS] pg_dump and inherited attributes

2002-09-24 Thread Alvaro Herrera
Hi, I'm looking at pg_dump/common.c:flagInhAttrs() and suspect that it can be more or less rewritten completely, and probably should to get rigth all the cases mentioned in the past attisinherited discussion. Is this desirable for 7.3? It can probably be hacked around and the rewrite kept for 7

Re: [HACKERS] pltcl.so patch

2002-09-24 Thread Nigel J. Andrews
In answer to the question posed at the end of the message below: Yes, I do get the similar results. A quick investigation shows that the SPI_freetuptable at the end of pltcl_SPI_exec is trying to free a tuptable of value 0x82ebe64 (which looks sensible to me) but which has a memory context of

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: >> No. The new files are: >> expected/earthdistance.out (which you metion above) >> sql/earthdistance.sql > OK, here's what I see now in CVS: > #$ pwd > /pgtop/contrib/earthdistance > #$ lf > CVS/README.earthdi

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruce Momjian
Bruno Wolff III wrote: > On Tue, Sep 24, 2002 at 16:10:19 -0400, > Bruce Momjian <[EMAIL PROTECTED]> wrote: > > Bruno Wolff III wrote: > > > On Tue, Sep 24, 2002 at 15:02:20 -0500, > > > Bruno Wolff III <[EMAIL PROTECTED]> wrote: > > > > > > > > There is supposed to be a regression test. I ma

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruno Wolff III
On Tue, Sep 24, 2002 at 16:10:19 -0400, Bruce Momjian <[EMAIL PROTECTED]> wrote: > Bruno Wolff III wrote: > > On Tue, Sep 24, 2002 at 15:02:20 -0500, > > Bruno Wolff III <[EMAIL PROTECTED]> wrote: > > > > > > There is supposed to be a regression test. I may have forgotten to use > > > -N or -

Re: [HACKERS] Web site

2002-09-24 Thread Michael Paesold
Ross J. Reedstrom wrote: > On Tue, Sep 24, 2002 at 03:59:33AM -0400, Vince Vielhaber wrote: > > On Tue, 24 Sep 2002, Gavin Sherry wrote: > > > > > Hi all, > > > > > > It occurs to me that opening web page on www.postgresql.org, asking the > > > user to select the mirror, is rather unprofessional.

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruce Momjian
Bruno Wolff III wrote: > On Tue, Sep 24, 2002 at 15:02:20 -0500, > Bruno Wolff III <[EMAIL PROTECTED]> wrote: > > > > There is supposed to be a regression test. I may have forgotten to use > > -N or -r on the diff. If it is confirmed that the files needed for the > > regression test didn't make

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruno Wolff III
On Tue, Sep 24, 2002 at 15:02:20 -0500, Bruno Wolff III <[EMAIL PROTECTED]> wrote: > > There is supposed to be a regression test. I may have forgotten to use > -N or -r on the diff. If it is confirmed that the files needed for the > regression test didn't make it into the submitted diff file, I

Re: [HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Bruno Wolff III
On Tue, Sep 24, 2002 at 10:43:51 -0700, Joe Conway <[EMAIL PROTECTED]> wrote: > The Makefile for contrib/earthdistance indicates that there should be a > regression test, but the files seem to be missing from CVS. The change to > the > Makefile was made here: > > >http://developer.postgresql.

Re: [HACKERS] PGXLOG variable worthwhile?

2002-09-24 Thread Tom Lane
Jan Wieck <[EMAIL PROTECTED]> writes: > And AFAICS it is scary only because screwing that up will simply corrupt > your database. Thus, a simple random number (okay, and a timestamp of > initdb) in two files, one in $PGDATA and one in $PGXLOG would be a > totally sufficient safety mechanism to pre

Re: [HACKERS] PGXLOG variable worthwhile?

2002-09-24 Thread Bruce Momjian
Jan Wieck wrote: > Tom Lane wrote: > > > > "Marc G. Fournier" <[EMAIL PROTECTED]> writes: > > > You don't :vote: on stuff like this ... > > > > Why not, exactly? > > > > I wasn't aware that any of core had a non-vetoable right to apply > > any patch we liked regardless of the number and strengt

Re: [HACKERS] PGXLOG variable worthwhile?

2002-09-24 Thread Jan Wieck
Tom Lane wrote: > > "Marc G. Fournier" <[EMAIL PROTECTED]> writes: > > You don't :vote: on stuff like this ... > > Why not, exactly? > > I wasn't aware that any of core had a non-vetoable right to apply > any patch we liked regardless of the number and strength of the > objections. AFAIK, we r

Re: [HACKERS] subselect bug (was Re: [GENERAL] DBLink: interesting issue)

2002-09-24 Thread Tom Lane
Joe Conway <[EMAIL PROTECTED]> writes: > replica=# create table foo(f1 int); > CREATE TABLE > replica=# SELECT * FROM foo t WHERE NOT EXISTS (SELECT remoteid FROM (SELECT > f1 as remoteid FROM foo WHERE f1 = t.f1) AS t1); > server closed the connection unexpectedly Got it --- this bug has been th

Re: [HACKERS] Default privileges for 7.3

2002-09-24 Thread Peter Eisentraut
Tom Lane writes: > How do you feel about allowing functions to default to EXECUTE PUBLIC? Less excited, but if it gets us to the point of no known problems during upgrade we might as well do it. -- Peter Eisentraut [EMAIL PROTECTED] ---(end of broadcast)

[HACKERS] contrib/earthdistance missing regression test files

2002-09-24 Thread Joe Conway
The Makefile for contrib/earthdistance indicates that there should be a regression test, but the files seem to be missing from CVS. The change to the Makefile was made here: http://developer.postgresql.org/cvsweb.cgi/contrib/earthdistance/Makefile.diff?r1=1.11&r2=1.12 Was the Makefile change a m

Re: [HACKERS] Web site

2002-09-24 Thread Bruce Momjian
Neil Conway wrote: > Gavin Sherry <[EMAIL PROTECTED]> writes: > > It occurs to me that opening web page on www.postgresql.org, asking the > > user to select the mirror, is rather unprofessional. > > I agree; not only that, it has advertisements on it. What's the > justification for that, consider

Re: [GENERAL] [HACKERS] PGXLOG variable worthwhile?

2002-09-24 Thread scott.marlowe
On 19 Sep 2002, Greg Copeland wrote: > I think Marc made a pretty good case about the use of command line > arguments but I think I have to vote with Tom. Many of the command line > arguments you seem to be using do sorta make sense to have for easy > reference or to help validate your runtime e

Re: Beta2 on Friday Morning (Was: Re: [HACKERS] Open 7.3 items)

2002-09-24 Thread scott.marlowe
I have to say that during beta testing I ALWAYS do an initdb and a reload just to make sure the pg_dumpall and pg_restore stuff works right. Plus to make sure problems that might only pop up with a new initdb are found as well. I probably "burn it to the ground" several times on a single bet

Re: [HACKERS] Web site

2002-09-24 Thread Neil Conway
Gavin Sherry <[EMAIL PROTECTED]> writes: > It occurs to me that opening web page on www.postgresql.org, asking the > user to select the mirror, is rather unprofessional. I agree; not only that, it has advertisements on it. What's the justification for that, considering that none of the mirror sit

Re: [HACKERS] subselect bug (was Re: [GENERAL] DBLink: interesting

2002-09-24 Thread Joe Conway
Tom Lane wrote: >>I'm just starting to dig in to this, but was hoping for any thoughts or >>guidance I can get. > > I can look at this, unless you really want to solve it yourself ... > I'll look into it a bit for my own edification, but if you have the time to solve it, I wouldn't want to get

Re: [HACKERS] Problem on PG7.2.2

2002-09-24 Thread Roberto Fichera
At 09.31 24/09/02 -0400, Tom Lane wrote: >Roberto Fichera <[EMAIL PROTECTED]> writes: > > At 10.40 23/09/02 -0400, you wrote: > >> I think you've got *serious* hardware problems. Hard to tell if it's > >> disk or memory, but get out those diagnostic programs now ... > > > database=# DROP TABLE TS

Re: [HACKERS] Problem on PG7.2.2

2002-09-24 Thread Roberto Fichera
At 09.31 24/09/02 -0400, Tom Lane wrote: >Roberto Fichera <[EMAIL PROTECTED]> writes: > > At 10.40 23/09/02 -0400, you wrote: > >> I think you've got *serious* hardware problems. Hard to tell if it's > >> disk or memory, but get out those diagnostic programs now ... > > > database=# DROP TABLE T

Re: [HACKERS] subselect bug (was Re: [GENERAL] DBLink: interesting issue)

2002-09-24 Thread Tom Lane
Joe Conway <[EMAIL PROTECTED]> writes: > replica=# create table foo(f1 int); > CREATE TABLE > replica=# SELECT * FROM foo t WHERE NOT EXISTS (SELECT remoteid FROM (SELECT > f1 as remoteid FROM foo WHERE f1 = t.f1) AS t1); > server closed the connection unexpectedly Ick. > I'm just starting to di

Re: [HACKERS] Web site

2002-09-24 Thread Ross J. Reedstrom
On Tue, Sep 24, 2002 at 11:26:55AM -0400, Vince Vielhaber wrote: > On Tue, 24 Sep 2002, Ross J. Reedstrom wrote: > > > > I'd suggest setting a cookie, so I only see the 'pick a mirror' the > > first time. And provide a link to 'pick a different mirror' that resets > > or ignores the cookie. > > O

Re: [HACKERS] Web site

2002-09-24 Thread Vince Vielhaber
On Tue, 24 Sep 2002, Ross J. Reedstrom wrote: > On Tue, Sep 24, 2002 at 03:59:33AM -0400, Vince Vielhaber wrote: > > On Tue, 24 Sep 2002, Gavin Sherry wrote: > > > > > Hi all, > > > > > > It occurs to me that opening web page on www.postgresql.org, asking the > > > user to select the mirror, is r

Re: [HACKERS] Web site

2002-09-24 Thread Ross J. Reedstrom
On Tue, Sep 24, 2002 at 03:59:33AM -0400, Vince Vielhaber wrote: > On Tue, 24 Sep 2002, Gavin Sherry wrote: > > > Hi all, > > > > It occurs to me that opening web page on www.postgresql.org, asking the > > user to select the mirror, is rather unprofessional. I am sure this has > > been discussed

Re: [HACKERS] Default privileges for 7.3

2002-09-24 Thread Yury Bokhoncovich
Hello! On Mon, 23 Sep 2002, Tom Lane wrote: > I am thinking that the better course might be to have newly created > languages default to USAGE PUBLIC, at least for a release or two. > > We might also consider letting newly created functions default to > EXECUTE PUBLIC. I think this is less esse

[HACKERS] making use of large TLB pages

2002-09-24 Thread Neil Conway
Rohit Seth recently added support for the use of large TLB pages on Linux if the processor architecture supports them (I believe the SPARC, IA32, and IA64 have hugetlb support, more archs will probably be added). The patch was merged into Linux 2.5.36, so it will more than likely be in Linux 2.6.

Re: [HACKERS] ECPG

2002-09-24 Thread Tom Lane
Michael Meskes <[EMAIL PROTECTED]> writes: > On Mon, Sep 23, 2002 at 09:56:59AM -0400, Tom Lane wrote: >> What about removing this feature that used to exist: being able to build >> ecpg with reasonably-standard tools? > How many people do use bison themselves? *Everyone* who checks out from our

Re: [HACKERS] ECPG

2002-09-24 Thread Michael Meskes
On Mon, Sep 23, 2002 at 09:56:59AM -0400, Tom Lane wrote: > What about removing this feature that used to exist: being able to build > ecpg with reasonably-standard tools? How many people do use bison themselves? Most people I talked to use the precompiled preproc.c. > I think you should be sett

Re: [HACKERS] Problem on PG7.2.2

2002-09-24 Thread Tom Lane
Roberto Fichera <[EMAIL PROTECTED]> writes: > At 10.40 23/09/02 -0400, you wrote: >> I think you've got *serious* hardware problems. Hard to tell if it's >> disk or memory, but get out those diagnostic programs now ... > database=# DROP TABLE TS; > ERROR: cannot find attribute 1 of relation ts_

Re: [HACKERS] Problem on PG7.2.2

2002-09-24 Thread Roberto Fichera
At 10.40 23/09/02 -0400, you wrote: >Roberto Fichera <[EMAIL PROTECTED]> writes: > > database=# select count(*) from detail; > > count > > > > 181661 > > (1 row) > > > database=# select count(*) from detail; > > count > > > > 181660 > > (1 row) > > > database=# select co

Re: [HACKERS] Web site

2002-09-24 Thread Vince Vielhaber
On Tue, 24 Sep 2002, Gavin Sherry wrote: > Hi all, > > It occurs to me that opening web page on www.postgresql.org, asking the > user to select the mirror, is rather unprofessional. I am sure this has > been discussed before but I thought I would bring it up again anyway. Your point? > So, why