[ 
https://issues.apache.org/jira/browse/DERBY-2374?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12990938#comment-12990938
 ] 

Lukas Eder edited comment on DERBY-2374 at 2/5/11 8:41 AM:
-----------------------------------------------------------

Thanks for all the detailed analyses. This would be a nice to have fix. In the 
mean-time, I'll try to create workarounds for that.
Please note that it also affects version 10.7.1.1

      was (Author: lukas.eder):
    Thanks for all the detailed analyses. This would be a nice to have fix. In 
the mean-time, I'll try to create workarounds for that.
  
> UNION PROBLEM WITH PARENTHESIS
> ------------------------------
>
>                 Key: DERBY-2374
>                 URL: https://issues.apache.org/jira/browse/DERBY-2374
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.1.3.3, 10.2.2.0, 10.3.3.1, 10.4.2.1, 10.5.3.1, 
> 10.6.1.0
>            Reporter: Kenneth Gee
>            Priority: Minor
>         Attachments: DERBY2374_UnionWithParentheseOnLeftRS_diff_patch1.txt
>
>
> The following query shows the error using the Derby demo toursDB:
> SELECT FLIGHT_ID , SEGMENT_NUMBER , ARRIVE_TIME
>   FROM (
>          (SELECT HW.FLIGHT_ID , HW.SEGMENT_NUMBER , HW.ARRIVE_TIME FROM 
> FLIGHTS HW)
>            UNION
>          (SELECT SW.FLIGHT_ID , SW.SEGMENT_NUMBER , SW.ARRIVE_TIME FROM 
> FLIGHTS SW)
>        ) SRC;
> ERROR 42X01: Syntax error: Encountered "UNION" at line 4, column 12.
> The following query works:
> SELECT FLIGHT_ID , SEGMENT_NUMBER , ARRIVE_TIME
>   FROM (
>          SELECT HW.FLIGHT_ID , HW.SEGMENT_NUMBER , HW.ARRIVE_TIME FROM 
> FLIGHTS HW
>           UNION
>          SELECT SW.FLIGHT_ID , SW.SEGMENT_NUMBER , SW.ARRIVE_TIME FROM 
> FLIGHTS SW
>        )  SRC;

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to