Oid bug or feature?

From: "Maurice Gittens" <mgittens(at)gits(dot)nl>
To: "PostgreSQL-development" <hackers(at)postgreSQL(dot)org>
Subject: Oid bug or feature?
Date: 1998-03-01 12:11:03
Message-ID: 008f01bd450b$1b6fa3e0$fcf3b2c2@caleb..gits.nl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

Do the following:

<PSQL SESSION>
create table t (name text);
CREATE

insert int t (oid, name) values (13, 'n1');
INSERT 18409 1;

Select * from t where oid =13;
name
-------
(0 rows)

</PGSQL SESSION>

Is this correct?
I would have expected that it wouldn't be allowed to set the value of an
oid.
Fortunately this doesn't happen. However I don't get an error message
either.

Is this what it's supposed to be?

Thanks,
Maurice

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom I Helbekkmo 1998-03-01 14:06:41 Re: [HACKERS] Just a couple minor nits...
Previous Message Herouth Maoz 1998-03-01 10:25:30 Re: [QUESTIONS] Re: [HACKERS] Is "CREATE DOMAIN" in 6.3 ??