Unix Technical Forum

Upcoming 8.0.2 Release

This is a discussion on Upcoming 8.0.2 Release within the pgsql Hackers forums, part of the PostgreSQL category; --> Now that Tom has gotten the ARC->2Q changes into the 8.0.x Branch, and Josh has had some time to ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Hackers

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-11-2008, 04:12 AM
Marc G. Fournier
 
Posts: n/a
Default Upcoming 8.0.2 Release


Now that Tom has gotten the ARC->2Q changes into the 8.0.x Branch, and
Josh has had some time to do some preliminary performance testing on it,
we need to put out 8.0.2 ...

Core's hope is to wrap a beta up on Friday (tomorrow), and baring any bugs
found in it, do a full release next Thursday.

The reason for the gap is to give a bit of extra testing time due to the
ARC->2Q changes ...

Is anyone sitting on anything that they feel needs/should get into 8.0.2?

----
Marc G. Fournier Hub.Org Networking Services (http://www.hub.org)
Email: scrappy@hub.org Yahoo!: yscrappy ICQ: 7615664

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

http://www.postgresql.org/docs/faq

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-11-2008, 04:12 AM
Michael Fuhr
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

On Thu, Mar 24, 2005 at 12:35:14PM -0400, Marc G. Fournier wrote:
>
> Is anyone sitting on anything that they feel needs/should get into 8.0.2?


Has anybody had a chance to review the PL/Python patch I submitted?
I did the diff against HEAD but I think its PL/Python code is
identical to REL8_0_STABLE. If the patch is acceptable then PL/Python
users connecting to PostgreSQL via Windows clients should benefit
from it being in 8.0.2.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

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

http://www.postgresql.org/docs/faq

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-11-2008, 04:12 AM
Bruce Momjian
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

Michael Fuhr wrote:
> On Thu, Mar 24, 2005 at 12:35:14PM -0400, Marc G. Fournier wrote:
> >
> > Is anyone sitting on anything that they feel needs/should get into 8.0.2?

>
> Has anybody had a chance to review the PL/Python patch I submitted?
> I did the diff against HEAD but I think its PL/Python code is
> identical to REL8_0_STABLE. If the patch is acceptable then PL/Python
> users connecting to PostgreSQL via Windows clients should benefit
> from it being in 8.0.2.


I will look at it today.

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

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-11-2008, 04:12 AM
Karel Zak
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release


http://archives.postgresql.org/pgsql...3/msg00176.php

Add it to 8.0.2 or 8.1?

Karel

--
Karel Zak <zakkr@zf.jcu.cz>


---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-11-2008, 04:12 AM
Tom Lane
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

Karel Zak <zakkr@zf.jcu.cz> writes:
> http://archives.postgresql.org/pgsql...3/msg00176.php


I intend to look at that tomorrow. Meanwhile, have you got a fix
for bug#1500?
http://archives.postgresql.org/pgsql...2/msg00226.php

regards, tom lane

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

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-11-2008, 04:12 AM
Karel Zak
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

On Fri, 2005-03-25 at 03:29 -0500, Tom Lane wrote:
> Karel Zak <zakkr@zf.jcu.cz> writes:
> > http://archives.postgresql.org/pgsql...3/msg00176.php

>
> I intend to look at that tomorrow. Meanwhile, have you got a fix
> for bug#1500?
> http://archives.postgresql.org/pgsql...2/msg00226.php


Sorry. Not yet. I haven't time today. Maybe next week :-(

Karel

--
Karel Zak <zakkr@zf.jcu.cz>


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

http://archives.postgresql.org

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-11-2008, 04:13 AM
Tom Lane
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

Karel Zak <zakkr@zf.jcu.cz> writes:
> On Fri, 2005-03-25 at 03:29 -0500, Tom Lane wrote:
>> I intend to look at that tomorrow. Meanwhile, have you got a fix
>> for bug#1500?
>> http://archives.postgresql.org/pgsql...2/msg00226.php


> Sorry. Not yet. I haven't time today. Maybe next week :-(


I looked at this and found the problem is that dch_date() isn't
defending itself against the possibility that tm->tm_mon is zero,
as it well might be for an interval. What do you think about
just adding

case DCH_MONTH:
+ if (!tm->tm_mon)
+ return 0;
strcpy(workbuff, months_full[tm->tm_mon - 1]);
sprintf(inout, "%*s", S_FM(suf) ? 0 : -9, str_toupper(workbuff));
if (S_FM(suf))
return strlen(p_inout) - 1;
else
return 8;

and similarly in each of the other case arms that use tm_mon?
This would case "MON" to convert to a null string for intervals,
which is probably as good as we can do.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-11-2008, 04:13 AM
Karel Zak
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

On Fri, 2005-03-25 at 14:08 -0500, Tom Lane wrote:
> Karel Zak <zakkr@zf.jcu.cz> writes:
> > On Fri, 2005-03-25 at 03:29 -0500, Tom Lane wrote:
> >> I intend to look at that tomorrow. Meanwhile, have you got a fix
> >> for bug#1500?
> >> http://archives.postgresql.org/pgsql...2/msg00226.php

>
> > Sorry. Not yet. I haven't time today. Maybe next week :-(

>
> I looked at this and found the problem is that dch_date() isn't
> defending itself against the possibility that tm->tm_mon is zero,
> as it well might be for an interval. What do you think about
> just adding
>
> case DCH_MONTH:
> + if (!tm->tm_mon)
> + return 0;


> and similarly in each of the other case arms that use tm_mon?


Yes, I think you're right. It's because original code was for non-
interval 'tm' struct where is no problem with zeros.

> This would case "MON" to convert to a null string for intervals,
> which is probably as good as we can do.


Yes. The final solution will be remove all to_char(interval) stuff in
8.1.

Thanks Tom,

Karel

--
Karel Zak <zakkr@zf.jcu.cz>


---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-11-2008, 04:13 AM
Tom Lane
 
Posts: n/a
Default Re: Upcoming 8.0.2 Release

Karel Zak <zakkr@zf.jcu.cz> writes:
>> What do you think about just adding
>>
>> case DCH_MONTH:
>> + if (!tm->tm_mon)
>> + return 0;


>> and similarly in each of the other case arms that use tm_mon?


> Yes, I think you're right. It's because original code was for non-
> interval 'tm' struct where is no problem with zeros.


OK, patch applied. (I had it wrong above, correct return value is -1.)

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:56 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com