| From: | Andreas Pflug <pgadmin(at)pse-consulting(dot)de> |
|---|---|
| To: | THIBAULT Jean-Jacques <jjt4(at)wanadoo(dot)fr> |
| Cc: | pgsql-bugs(at)postgresql(dot)org |
| Subject: | Re: BUG #1847: Error in some kind of UNION query. |
| Date: | 2005-08-25 14:13:23 |
| Message-ID: | 430DD203.4040507@pse-consulting.de |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
THIBAULT Jean-Jacques wrote:
> The following bug has been logged online:
>
> Bug reference: 1847
> Logged by: THIBAULT Jean-Jacques
> Email address: jjt4(at)wanadoo(dot)fr
> PostgreSQL version: 8.0.3
> Operating system: Linux (Mandrake)
> Description: Error in some kind of UNION query.
> Details:
>
> this query work :
> select null UNION 1;
>
> this query doesn't work :
> select null UNION null UNION 1;
>
> ERROR: UNION types text and integer cannot be matched
You probably mean
SELECT NULL
UNION
SELECT NULL
UNION
SELECT 1
Proper casting will help, insuring the correct type can be determined
from the first SELECT. Changing the order to have SELECT 1 does the job too.
Regards,
Andreas
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2005-08-25 16:03:02 | Re: BUG #1847: Error in some kind of UNION query. |
| Previous Message | Michael Fuhr | 2005-08-25 14:09:12 | Re: BUG #1847: Error in some kind of UNION query. |