Re: Possible Bug in "View data for selected

From: Stijn Vanroye <s(dot)vanroye(at)easytowork(dot)nl>
To: pgadmin-hackers(at)postgresql(dot)org
Subject: Re: Possible Bug in "View data for selected
Date: 2006-09-04 15:47:09
Message-ID: edhi22$2eef$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Dave Page schreef:
>
>
>> -----Original Message-----
>> From: pgadmin-hackers-owner(at)postgresql(dot)org
>> [mailto:pgadmin-hackers-owner(at)postgresql(dot)org] On Behalf Of
>> Stijn Vanroye
>> Sent: 04 September 2006 08:15
>> To: Dave Page; pgadmin-hackers(at)postgresql(dot)org
>> Subject: Re: [pgadmin-hackers] Possible Bug in "View data for selected
>>
>> CREATE TABLE casemanager
>> (
>> naam varchar(50),
>> telefoon varchar(15),
>> mobiel varchar(15),
>> email varchar(50),
>> casemanager_id serial NOT NULL,
>> CONSTRAINT pk_casemanager_id PRIMARY KEY (casemanager_id)
>> )
>> WITHOUT OIDS;
>> ALTER TABLE casemanager OWNER TO someuser;
>
> I cannot reproduce any failures with this table in SVN trunk code. If
> you recreate an empty copy of the table (with a different name, or in a
> different DB), does that work as expected?

Indeed, if I recreate the table in a different database everything works
OK. Strange...
The casemanager_id field first was a normal int4 field, but is later
dropped and made again as a serial field. That's the only strange thing
that happend.
No Foreign keys are declared, just 4 simple tables with 1 id of type
serial each.

I think that I'll recreate the entire and insert the data again. I think
that's the easiest way to solve the problem for me. If you wich to
persue this a bit further though, let me know I'll be honored to help. I
don't know if there are any usefull logs I can enable or something.

Regards,

Stijn.

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2006-09-04 19:47:25 Re: Possible Bug in "View data for selected
Previous Message svn 2006-09-04 14:42:09 SVN Commit by dpage: r5326 - trunk/pgadmin3