ResultSetMetaData reports extra column if "order by colname" used.
------------------------------------------------------------------

                 Key: DERBY-3141
                 URL: https://issues.apache.org/jira/browse/DERBY-3141
             Project: Derby
          Issue Type: Bug
          Components: JDBC
    Affects Versions: 10.3.1.4
         Environment: Windows, JRE 1.5, Network Server/Client
            Reporter: Ali Demir
            Priority: Minor


for a query like: 

select col1 from table1 where col1=? order by id

Derby network server returns ResultSetMetaData that contains 2 columns: col1, 
id, where as it should return only col1.

It works correctly (returns only col1) if query does not have order by:

select col1 from table1 where col1=?

It seems that to get the "order by" working, Derby silently appends id column 
to the select projection but forgets to remove it from ResultSetMetaData.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to