Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-08-09 Thread Bruce Momjian
Is this being worked on? --- Tom Lane wrote: Joshua Reich [EMAIL PROTECTED] writes: I'm not sure exactly what to do here. I tried simply doing CREATE TYPE cube; But I still get NOTICE's to the effect of return type

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-08-09 Thread Tom Lane
Bruce Momjian [EMAIL PROTECTED] writes: Is this being worked on? I think we dealt with that already. regards, tom lane ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-27 Thread Joshua Reich
I'm not sure exactly what to do here. I tried simply doing CREATE TYPE cube; But I still get NOTICE's to the effect of return type cube is only a shell or argument type cube is only a shell. I'm not sure how to do this to get zero NOTICES. Advice appreciated. Josh Reich Tom Lane wrote:

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-27 Thread Tom Lane
Joshua Reich [EMAIL PROTECTED] writes: I'm not sure exactly what to do here. I tried simply doing CREATE TYPE cube; But I still get NOTICE's to the effect of return type cube is only a shell or argument type cube is only a shell. Hmm ... I remembered that we'd discussed suppressing those

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-26 Thread Stefan Kaltenbrunner
Bruce Momjian wrote: Tom Lane wrote: Joshua Reich [EMAIL PROTECTED] writes: The problem is that there are new functions in cube.sql, so the output is now different and breaks the diff (to state the obvious). Actually, the new theory on this is that you should explicitly create a shell type

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update the calling convention for

2006-07-25 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes: Log Message: --- /contrib/cube improvements: Should I point out that the buildfarm universally reports failure? regards, tom lane ---(end of broadcast)--- TIP 1: if

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-25 Thread Joshua Reich
Can you point to me where I can get a regression diff for a failed build. For the install-checks that I looked at on the buildfarm, I see: == running regression test queries== test cube ... ok Josh Tom Lane wrote: [EMAIL PROTECTED] (Bruce

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update the calling convention for

2006-07-25 Thread Tom Lane
Joshua Reich [EMAIL PROTECTED] writes: Can you point to me where I can get a regression diff for a failed build. It's all on the webpage, just scroll down ... regards, tom lane ---(end of broadcast)--- TIP 4: Have you

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-25 Thread Joshua Reich
Ok. If I understand this correctly, earthdistance required cube. So, I'll fix the test for earthdistance to work with the new cube code. The problem is that there are new functions in cube.sql, so the output is now different and breaks the diff (to state the obvious). Josh Reich Tom Lane

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-25 Thread Joshua Reich
Stating the obvious, again - attached is my patch for earthdistance. Apologies for breaking the build. Josh Joshua Reich wrote: Ok. If I understand this correctly, earthdistance required cube. So, I'll fix the test for earthdistance to work with the new cube code. The problem is that there

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-25 Thread Tom Lane
Joshua Reich [EMAIL PROTECTED] writes: The problem is that there are new functions in cube.sql, so the output is now different and breaks the diff (to state the obvious). Actually, the new theory on this is that you should explicitly create a shell type first: CREATE TYPE cube; and

Re: [HACKERS] [COMMITTERS] pgsql: /contrib/cube improvements: Update

2006-07-25 Thread Bruce Momjian
Tom Lane wrote: Joshua Reich [EMAIL PROTECTED] writes: The problem is that there are new functions in cube.sql, so the output is now different and breaks the diff (to state the obvious). Actually, the new theory on this is that you should explicitly create a shell type first: