ERROR: ExecInitIndexScan

From: Mauro Bartolomeoli <mbarto(at)novacomp(dot)it>
To: pgsql-general(at)postgreSQL(dot)org
Subject: ERROR: ExecInitIndexScan
Date: 1999-03-26 19:26:49
Message-ID: XFMail.990326202649.mbarto@wind.home.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I'm using Postgresql 6.3.2 on Linux RedHat 5.2.

I receive the following error when I send a specific query to Postgres:

ERROR: ExecInitIndexScan: both left and right op's are rel-vars

The query is:

select codice,descrizione,sub_titolo,
immobili_per_zona.numero_annunci_immobili_vendita,coordinate
from zona,contiene_zona,immobili_per_zona
where codice_sotto_zona=codice and immobili_per_zona.codice_zona=
codice_sotto_zona and codice_tipo_immobili=1 and
immobili_per_zona.numero_annunci_immobili_vendita>0 and
contiene_zona.codice_zona=31011 and speciale='f' and approvata='t';

The relevant tables are:

ZONA:

codice | int4 not null PRIMARY KEY |
descrizione | varchar() not null |
immagine | varchar() |
sub_titolo | varchar() not null |
cap | varchar() |
prefisso | varchar() |
numero_annunci_immobili_vendita | int4 not null |
numero_annunci_immobili_affitto | int4 not null |
numero_annunci_aziende_vendita | int4 not null |
numero_annunci_aziende_affitto | int4 not null |
numero_annunci_vacanze_affitto | int4 not null |
principale | bool not null |
speciale | bool not null |
attiva | bool not null |
approvata | bool not null |

CONTIENE_ZONA:

codice_zona | int4 not null |
codice_sotto_zona | int4 not null |
coordinate | text |
PRIMARY_KEY(codice_zona,codice_sotto_zona)

IMMOBILI_PER_ZONA:

codice_tipo_immobili | int2 not null |
codice_zona | int4 not null |
numero_annunci_immobili_vendita | int4 not null |
numero_annunci_immobili_affitto | int4 not null |
PRIMARY_KEY(codice_tipo_immobili,codice_zona)

I also have the following indeces:

CREATE INDEX contiene_zona_skey1 on Contiene_Zona (Codice_sotto_zona);
CREATE INDEX contiene_zona_skey2 on Contiene_Zona (Codice_zona);
CREATE INDEX immobili_per_zona_skey1 on immobili_per_zona using hash
(Codice_zona);

This is the EXPLAIN for the query:

Nested Loop (cost=2.05 size=1 width=52)
-> Nested Loop (cost=0.00 size=1 width=24)
-> Index Scan on immobili_per_zona (cost=0.00 size=0 width=8)
-> Index Scan on contiene_zona (cost=2.00 size=66 width=16)
-> Index Scan on zona (cost=2.05 size=30555 width=28)

The error magically disappears if i drop the primary key index on
contiene_zona. Is there any way to mantain this index without obtaining
the error?
Is this corrected in 6.4.x? Any help appreciated.

---

------------------------------------
Mauro Bartolomeoli
e-mail: mbarto(at)novacomp(dot)it
ICQ#: 9602542
------------------------------------

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Thomas Reinke 1999-03-26 20:54:45 Re: [GENERAL] info on people running postgre
Previous Message Fabrice Scemama 1999-03-26 18:32:04 Re: info on people running postgre