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 "Abhishek Bhaskaran (JIRA)" <ji...@apache.org> on 2008/02/27 04:02:51 UTC

[jira] Resolved: (DERBY-3348) Small typo in table functions documentation. Should have EmployeeTable not EmployeesTable

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

Abhishek Bhaskaran resolved DERBY-3348.
---------------------------------------

    Resolution: Fixed

> Small typo in table functions documentation. Should have EmployeeTable not EmployeesTable 
> ------------------------------------------------------------------------------------------
>
>                 Key: DERBY-3348
>                 URL: https://issues.apache.org/jira/browse/DERBY-3348
>             Project: Derby
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 10.4.0.0
>            Reporter: Kathey Marsden
>            Assignee: Abhishek Bhaskaran
>            Priority: Trivial
>         Attachments: derby3348.diff, derby3348.zip
>
>
> I tried the table function example at:
> http://db.apache.org/derby/docs/dev/devguide/cdevspecialtfbasic.html
> There is small typo that the create function example. It uses EmployeesTable instead of EmployeeTable to match the code example.  I also am not sure if using com.acme is ok.
> CREATE FUNCTION externalEmployees
> ()
> RETURNS TABLE
> (
>   employeeId    INT,
>   lastName      VARCHAR( 50 ),
>   firstName     VARCHAR( 50 ),
>   birthday      DATE
> )
> LANGUAGE JAVA
> PARAMETER STYLE DERBY_JDBC_RESULT_SET
> NO SQL
> EXTERNAL NAME 'com.acme.hrSchema.EmployeesTable.read'
> Should be 
> EXTERNAL NAME 'com.acme.hrSchema.EmployeeTable.read'
> to match code example at
> http://db.apache.org/derby/docs/dev/devguide/cdevspecialtfexample.html

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