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
Priority: Trivial
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.