Thread: BUG: pgDomain.cpp

BUG: pgDomain.cpp

From
P3 Consulting
Date:
domain->iSetBasetypeOid(domains->GetBool(wxT("typbasetype")));
should be

domain->iSetBasetypeOid(domains->GetOid(wxT("typbasetype")));
?

And less important:

in pgConversion.h
    wxString conversionName
this instance variable doesn't seem to be used anywhere...


Pascal Pochet
p3c@p3-consulting.net
----------------------------------
PGP
KeyID: 0xD75C608A
Fingerprint: 6F30 221F 0A9E 71F0 7902  0960 D727 3811 D75C 608A


Re: BUG: pgDomain.cpp

From
Andreas Pflug
Date:
P3 Consulting wrote:
>             domain->iSetBasetypeOid(domains->GetBool(wxT("typbasetype")));
> should be
>             domain->iSetBasetypeOid(domains->GetOid(wxT("typbasetype")));

Ouch!
>
> in pgConversion.h
>     wxString conversionName
> this instance variable doesn't seem to be used anywhere...

Fixed both in CVS, thanks for reporting.

Regards,
Andreas