You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Mike Matrigali (JIRA)" <de...@db.apache.org> on 2006/10/06 18:56:20 UTC

[jira] Resolved: (DERBY-1894) SQLSTATE 42X10 occurs when qualifying a column with a synonym in ORDER BY clause

     [ http://issues.apache.org/jira/browse/DERBY-1894?page=all ]

Mike Matrigali resolved DERBY-1894.
-----------------------------------

    Resolution: Fixed

fix has made it to trunk, 10.2 branch and 10.1 branch

> SQLSTATE 42X10 occurs when qualifying a column with a synonym in ORDER BY clause
> --------------------------------------------------------------------------------
>
>                 Key: DERBY-1894
>                 URL: http://issues.apache.org/jira/browse/DERBY-1894
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.2.1.6, 10.3.0.0, 10.1.3.1, 10.2.2.0
>         Environment: Any
>            Reporter: Yip Ng
>         Assigned To: Yip Ng
>             Fix For: 10.1.3.2, 10.2.2.0, 10.3.0.0
>
>         Attachments: derby1894-trunk-diff01.txt, derby1894-trunk-diff02.txt, derby1894-trunk-stat01.txt, derby1894-trunk-stat02.txt
>
>
> SQLSTATE 42X10 occurs when qualifying a column with a synonym in ORDER BY clause, where the synonym was declared in a different schema:
> ij version 10.3
> ij> connect 'jdbc:derby:wombat;create=true';
> ij> create schema test1;
> 0 rows inserted/updated/deleted
> ij> create schema test2;
> 0 rows inserted/updated/deleted
> ij> create table test1.testtable(id bigint not null);
> 0 rows inserted/updated/deleted
> ij> create synonym test2.testtable for test1.testtable;
> 0 rows inserted/updated/deleted
> ij> set schema test1;
> 0 rows inserted/updated/deleted
> ij> select testtable.id from testtable;
> ID                  
> --------------------
> 0 rows selected
> ij> set schema test2;
> 0 rows inserted/updated/deleted
> ij> select testtable.id from testtable;
> ID                  
> --------------------
> 0 rows selected
> ij> select testtable.id from testtable order by testtable.id;
> ERROR 42X10: 'TESTTABLE' is not an exposed table name in the scope in which it appears.
> ij> 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira