table called 'configuration' cannot be dropped

Поиск
Список
Период
Сортировка
От Daniel McCue
Тема table called 'configuration' cannot be dropped
Дата
Msg-id CAEnhctX=pqcOhC2jxmzyNfp8-xi1Q9bwsvaOd3vaYf2zLj2OSA@mail.gmail.com
обсуждение исходный текст
Ответы Re: table called 'configuration' cannot be dropped
Список pgsql-bugs
I am running Postgresql version 9.5.14 on Ubuntu linux 16.04.
My schema defines a table called configuration.
From psql:
# \d configuration
            Table "public.configuration"
     Column     |          Type          | Modifiers 
----------------+------------------------+-----------
 parametername  | character varying(64)  | not null
 parametervalue | character varying(256) | 
Indexes:
    "configuration_pkey" PRIMARY KEY, btree (parametername)

PROBLEM:
When in psql, I  type:
# DROP TABLE configuration;

psql just hangs.  No further output from psql.  
If I hit CTRL-C, it responds as expected with:

^CCancel request sent
ERROR:  canceling statement due to user request

But why is psql stuck on the DROP statement?
Is configuration a reserved word or pre-defined table? 
Do I need to rename the table?

Thanks,
Dan McCue

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: BUG #15631: Generated as identity field in a temporary table withon commit drop corrupts system catalogs
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: table called 'configuration' cannot be dropped