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 "Rick Hillegas (JIRA)" <ji...@apache.org> on 2011/01/04 18:00:53 UTC

[jira] Assigned: (DERBY-4958) Wrapper types not recognized when resolving procedures with OUT arguments.

     [ https://issues.apache.org/jira/browse/DERBY-4958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rick Hillegas reassigned DERBY-4958:
------------------------------------

    Assignee: Rick Hillegas

> Wrapper types not recognized when resolving procedures with OUT arguments.
> --------------------------------------------------------------------------
>
>                 Key: DERBY-4958
>                 URL: https://issues.apache.org/jira/browse/DERBY-4958
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.8.0.0
>            Reporter: Rick Hillegas
>            Assignee: Rick Hillegas
>         Attachments: zz.java
>
>
> Derby does not recognize the wrapper objects when trying to match Java methods to the signatures of procedures with OUT arguments. For instance, the following procedure declaration
> create procedure proc
> (
>     out intCol int
> )
> language java
> parameter style java
> no sql
> external name 'zz.proc'
> is supposed to match both of the following Java signatures:
> public  static  void    proc( int[] arg ) {...}
> public  static  void    proc( Integer[] arg ) {...}
> However, only the first signature is matched. I will attach a test case which shows this.

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