Re: ERROR: Unable to transform targetlist (internal error)

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Bruno Baguette <bruno(dot)baguette(at)netcourrier(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: ERROR: Unable to transform targetlist (internal error)
Date: 2003-01-31 05:19:22
Message-ID: 200301310519.h0V5JMr10429@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Wow, 6.5.2. That is very old. We recommend you upgrade to 7.3.1.

---------------------------------------------------------------------------

Bruno Baguette wrote:
> Hello,
>
> I'm getting a really strange error message : ERROR: Unable to transform
> targetlist (internal error) when I do a precise query on my database...
>
>
>
> I've two tables : Professeurs and ProfesseursDesComediens
>
> efap=> \d Professeurs
>
> Table = professeurs
>
> +----------------------------------+----------------------------------+-----
> --+
>
> | Field | Type | Length|
>
> +----------------------------------+----------------------------------+-----
> --+
>
> | idprofesseur | int4 not null default nextval ( | 4 |
>
> | nom | varchar() not null | 100 |
>
> | prenom | varchar() | 100 |
>
> +----------------------------------+----------------------------------+-----
> --+
>
> Index: pk_idprofesseur
>
> efap=> \d ProfesseursDesComediens
>
> Table = professeursdescomediens
>
> +----------------------------------+----------------------------------+-----
> --+
>
> | Field | Type | Length|
>
> +----------------------------------+----------------------------------+-----
> --+
>
> | fk_idcomedien | int4 not null | 4 |
>
> | fk_idprofesseur | int4 not null | 4 |
>
> +----------------------------------+----------------------------------+-----
> --+
>
> Index: uniqueidprofcomediens
>
>
>
> When I do this query :
>
> SELECT Professeurs.IdProfesseur, Professeurs.Nom, Professeurs.Prenom,
> EXISTS(SELECT * FROM ProfesseursDesComediens WHERE FK_IdComedien = 713 AND
> Professeurs.IdProfesseur = ProfesseursDesComediens.FK_IdProfesseur) FROM
> Professeurs;
>
> I get this error message : ERROR: Unable to transform targetlist (internal
> error)
>
> What does that means exactly ? What is my error ???
>
> Thanks in advance !
>
> PS :I'm working on PostgreSQL 6.5.2 on a Debian linux server.
>
> -------------------------------------------------
> Bruno BAGUETTE - bruno(dot)baguette(at)netcourrier(dot)com
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-general by date

  From Date Subject
Next Message codeWarrior 2003-01-31 05:37:33 Re: Perl DBI and placeheld values
Previous Message Bruce Momjian 2003-01-31 05:18:20 Re: grant to all tables