Error while adding a column

From: "Shoaib Mir" <shoaibmir(at)gmail(dot)com>
To: "PostgreSQL General" <pgsql-general(at)postgresql(dot)org>
Subject: Error while adding a column
Date: 2006-04-19 18:59:10
Message-ID: bf54be870604191159wa44db56vc59633b35bcefdb@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi All,

While trying to add a column to the table below. On DESC of the table
I do not see the column name, but on adding it, it complains of it
already being present, and on trying to drop it I get the "ERROR: cache
lookup failed for attribute 56 of relation 16681:" error.

desc test_users;

Table "test_users"

Column | Type |
Modifiers

-----------------------+-----------------------------+------------------
--------------------------------------

user_id | integer | not null default
nextval('test_users_seq'::regclass)

user_active | boolean | not null default
false

pgsql=> ALTER TABLE test_users ADD user_skin VARCHAR(255)
DEFAULT NULL;

ERROR: column "user_skin" of relation "test_users" already exists

pgsql=> ALTER TABLE test_users DROP user_skin;

ERROR: cache lookup failed for attribute 56 of relation 16681

Any help will be appreciated ....

/Shoaib

Browse pgsql-general by date

  From Date Subject
Next Message John F Rizzo 2006-04-19 19:52:11 plperl on AIX
Previous Message Bruno Wolff III 2006-04-19 17:39:19 Re: grant privileges across schemas