Обсуждение: Time for beta 2?

Поиск
Список
Период
Сортировка

Time for beta 2?

От
"Dave Page"
Дата:
Any objections if I roll beta 2 of v1.6 tomorrow sometime?

Regards, Dave.

Re: Time for beta 2?

От
Guillaume Lelarge
Дата:
Dave Page a écrit :
> Any objections if I roll beta 2 of v1.6 tomorrow sometime?
>

I'll send you a patch for a bug I'm working on. It shouldn't be too long.

Regards.


--
Guillaume.
<!-- http://abs.traduc.org/
     http://lfs.traduc.org/
     http://traduc.postgresqlfr.org/ -->

Re: Time for beta 2?

От
Guillaume Lelarge
Дата:
Guillaume Lelarge a écrit :
> Dave Page a écrit :
>> Any objections if I roll beta 2 of v1.6 tomorrow sometime?
>>
>
> I'll send you a patch for a bug I'm working on. It shouldn't be too long.
>

Well, it seems it's already fixed. I found it today on my windows beta1
official build, and can't reproduce it here with my linux svn build.

Regards.


--
Guillaume.
<!-- http://abs.traduc.org/
     http://lfs.traduc.org/
     http://traduc.postgresqlfr.org/ -->

Re: Time for beta 2?

От
"Dave Page"
Дата:

> -----Original Message-----
> From: Guillaume Lelarge [mailto:guillaume@lelarge.info]
> Sent: 02 October 2006 20:45
> To: Dave Page
> Cc: pgadmin-hackers@postgresql.org
> Subject: Re: [pgadmin-hackers] Time for beta 2?
>
> Guillaume Lelarge a écrit :
> > Dave Page a écrit :
> >> Any objections if I roll beta 2 of v1.6 tomorrow sometime?
> >>
> >
> > I'll send you a patch for a bug I'm working on. It
> shouldn't be too long.
> >
>
> Well, it seems it's already fixed. I found it today on my
> windows beta1
> official build, and can't reproduce it here with my linux svn build.

Oh, ok - what was it?

/D

Re: Time for beta 2?

От
Guillaume Lelarge
Дата:
Dave Page a écrit :
>
>
>> -----Original Message-----
>> From: Guillaume Lelarge [mailto:guillaume@lelarge.info]
>> Sent: 02 October 2006 20:45
>> To: Dave Page
>> Cc: pgadmin-hackers@postgresql.org
>> Subject: Re: [pgadmin-hackers] Time for beta 2?
>>
>> Guillaume Lelarge a écrit :
>>> Dave Page a écrit :
>>>> Any objections if I roll beta 2 of v1.6 tomorrow sometime?
>>>>
>>> I'll send you a patch for a bug I'm working on. It
>> shouldn't be too long.
>> Well, it seems it's already fixed. I found it today on my
>> windows beta1
>> official build, and can't reproduce it here with my linux svn build.
>
> Oh, ok - what was it?
>

In the edit grid, I try to update a cell containing an item (character
varying). The update fails because of the cast (for example UPDATE foo
SET bar='foobar'::pg_catalog.character varying).

When I try to reproduce it at home, log_statement to 'all', I see this
query :
  UPDATE foo SET bar='foobar'::character varying
and it just works.

I tried the latest snapshot at work but, unfortunately, it was an old
one (21 of september, I think).


--
Guillaume.
<!-- http://abs.traduc.org/
     http://lfs.traduc.org/
     http://traduc.postgresqlfr.org/ -->

Re: Time for beta 2?

От
"Dave Page"
Дата:

> -----Original Message-----
> From: Guillaume Lelarge [mailto:guillaume@lelarge.info]
> Sent: 02 October 2006 20:54
> To: Dave Page
> Cc: pgadmin-hackers@postgresql.org
> Subject: Re: [pgadmin-hackers] Time for beta 2?
>
> > Oh, ok - what was it?
> >
>
> In the edit grid, I try to update a cell containing an item (character
> varying). The update fails because of the cast (for example UPDATE foo
> SET bar='foobar'::pg_catalog.character varying).
>
> When I try to reproduce it at home, log_statement to 'all', I see this
> query :
>   UPDATE foo SET bar='foobar'::character varying
> and it just works.
>
> I tried the latest snapshot at work but, unfortunately, it was an old
> one (21 of september, I think).

Ah, yes - that was fixed here:
http://svn.pgadmin.org/cgi-bin/viewcvs.cgi?rev=5372&view=rev

Regards Dave