Strange syntax for create/drop index

Поиск
Список
Период
Сортировка
От Haris Peco
Тема Strange syntax for create/drop index
Дата
Msg-id 200604090356.56869.snpe@snpe.co.yu
обсуждение исходный текст
Ответы Re: Strange syntax for create/drop index  (Michael Glaesemann <grzm@myrealbox.com>)
Список pgsql-general
Hello,

  I have tried create/drop index in separate schema :

example :
create table :

    create table test.test(id integer not null,name varchar(30),constraint test_pkey primary key (id))  - ok
    create index test_name on test.test(name)  - ok
    drop index test_name - not ok
    drop index test.test_name - ok
    create index test.test_name on test.test(name)  - not ok

'drop index' request schema prefix, but 'create index' doesn't accept schema prefix

this is strange for me

Comments ?

Best
Peco

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

Предыдущее
От: "Guy Rouillier"
Дата:
Сообщение: Re: More PostgreSQL conversion fun
Следующее
От: Stephen Frost
Дата:
Сообщение: Re: Debian package for freeradius_postgresql module