Re: PostgreSQL EXCLUDE USING error: Data type integer has no default operator class

Поиск
Список
Период
Сортировка
От Denver Timothy
Тема Re: PostgreSQL EXCLUDE USING error: Data type integer has no default operator class
Дата
Msg-id B1F41255-D9B6-4AEB-89E7-67F6791B53A2@timothy.io
обсуждение исходный текст
Ответ на Re: PostgreSQL EXCLUDE USING error: Data type integer has no default operator class  (Ryan Kelly <rpkelly22@gmail.com>)
Список pgsql-general
On Mar 22, 2013, at 2:57 PM, Ryan Kelly <rpkelly22@gmail.com> wrote:

> On Fri, Mar 03/22/13, 2013 at 10:14:45AM -0600, Denver Timothy wrote:
>> In PostgreSQL 9.2.3 I am trying to create this simplified table:
>>
>>    CREATE TABLE test (
>>        user_id INTEGER,
>>        startend TSTZRANGE,
>>        EXCLUDE USING gist (user_id WITH =, startend WITH &&)
>>    );
>>
>> But I get this error:
>>
>>    ERROR:  data type integer has no default operator class for access method "gist"
>>    HINT:  You must specify an operator class for the index or define a default operator class for the data type.
>>
>> I've spent quite a bit of time searching for hints on figuring out how to make this work, or figuring out why it
won'twork. I've also been trying to understand CREATE OPERATOR and CREATE OPERATOR CLASS, but those are over my head
fornow. Could anyone point me in the right direction? 
>
> CREATE EXTENSION btree_gist;

That was one of the first things I tried, but going back and looking at things for the millionth time, I found the
errorwas buried in the script output: 

ERROR: could not open extension control file "/opt/local/share/postgresql92/extension/btree_gist.control": No such file
ordirectory 

I also assumed it was installed because at least one of the previous examples worked.

It turns out the contrib module (and several others) were not installed. On Mac OS 10.8.2 using MacPorts, I did this:

$ su
# port build postgresql92
# cd `port work postgresql92`/postgresql-<version>/contrib
# for d in *; do test -d $d && ( echo $d; cd $d; make all && make install; cd .. ); done

Now it works as expected.

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

Предыдущее
От: aasat
Дата:
Сообщение: UNLOGGED TEMPORARY tables?
Следующее
От: News Subsystem
Дата:
Сообщение: ...