En PostgreSQL 9.2.3 estoy tratando de crear esta tabla simplificada:
CREATE TABLE test (
user_id INTEGER,
startend TSTZRANGE,
EXCLUDE USING gist (user_id WITH =, startend WITH &&)
);
Pero me sale este 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.
Los documentos de PostgreSQL usan este ejemplo que no funciona para mí:
CREATE TABLE room_reservation (
room text,
during tsrange,
EXCLUDE USING gist (room WITH =, during WITH &&)
);
Mismo mensaje de error.
Y este , que tampoco funciona para mí:
CREATE TABLE zoo (
cage INTEGER,
animal TEXT,
EXCLUDE USING gist (cage WITH =, animal WITH <>)
);
Mismo mensaje de error.
Puedo crear esto sin ningún problema:
CREATE TABLE test (
user_id INTEGER,
startend TSTZRANGE,
EXCLUDE USING gist (startend WITH &&)
);
y esto:
CREATE TABLE test (
user_id INTEGER,
startend TSTZRANGE,
EXCLUDE USING btree (user_id WITH =)
);
He pasado bastante tiempo buscando pistas sobre cómo hacer que esto funcione o sobre por qué no funcionará. ¿Algunas ideas?