From: | "Ilja Golshtein" <ilejn(at)yandex(dot)ru> |
---|---|
To: | mike(at)fuhr(dot)org |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: table is not a table |
Date: | 2006-01-27 15:22:00 |
Message-ID: | 43DA3A98.000002.10812@mfront7.yandex.ru |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi!
>On Wed, Jan 25, 2006 at 11:26:39AM -0500, Tom Lane wrote:
>> "Ilja Golshtein" <ilejn(at)yandex(dot)ru> writes:
>> > postgres=# create table ddd(f1 int4);
>> > CREATE TABLE
>> > postgres=# drop table ddd;
>> > ERROR: "ddd" is not a table
>>
>> That's just plain bizarre. Would you try it with \set VERBOSITY verbose
>> so we can see exactly where the error is coming from?
No extra information. Just "ERROR: "ddd" is not a table".
>> Has this installation been working for you before?
Not really.
>> I'm wondering about
>> a corrupt backend executable file, or some such ...
Looks like.
The only special thing (and the only thing to blame)
I can imagine about this installation - ICU patch.
It was applied without any visible troubles.
>Could a corrupt catalog be responsible?
I've initialised DB cluster from scratch.
Problem exists.
>Might a query like the
>following reveal anything?
>
>SELECT c.ctid, c.xmin, c.xmax, c.oid, c.relname, c.relkind,
> n.ctid, n.xmin, n.xmax, n.oid, n.nspname
>FROM pg_class AS c
>LEFT JOIN pg_namespace AS n ON n.oid = c.relnamespace
>WHERE c.relname ~* '^ddd';
SELECT c.ctid, c.xmin, c.xmax, c.oid, c.relname, c.relkind,
n.ctid, n.xmin, n.xmax, n.oid, n.nspname
FROM pg_class AS c
LEFT JOIN pg_namespace AS n ON n.oid = c.relnamespace
WHERE c.relname ~* '^ddd';
postgres-# postgres-# postgres-# postgres-# ctid | xmin | xmax | oid | relname | relkind | ctid | xmin | xmax | oid | nspname
--------+------+------+-------+---------+---------+-------+------+------+------+---------
(5,12) | 621 | 0 | 16386 | ddd | r | (0,6) | 2 | 0 | 2200 | public
(1 row)
--
Best regards
Ilja Golshtein
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2006-01-27 15:26:14 | Re: Logging statements and parameter values |
Previous Message | Tom Lane | 2006-01-27 15:19:35 | Re: REPOST:Memory Allocation error using pg_dump on 7.4 |