[ https://issues.apache.org/jira/browse/DERBY-3348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Abhishek Bhaskaran updated DERBY-3348:
--------------------------------------
Derby Info: [Patch Available]
> 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: DERBY-3348.rar
>
>
> 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.
|