Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 77889 invoked from network); 11 Feb 2008 11:58:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Feb 2008 11:58:33 -0000 Received: (qmail 51577 invoked by uid 500); 11 Feb 2008 11:58:25 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 51522 invoked by uid 500); 11 Feb 2008 11:58:24 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 51510 invoked by uid 99); 11 Feb 2008 11:58:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2008 03:58:24 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2008 11:58:01 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id DFC0471407B for ; Mon, 11 Feb 2008 03:58:08 -0800 (PST) Message-ID: <22118978.1202731088909.JavaMail.jira@brutus> Date: Mon, 11 Feb 2008 03:58:08 -0800 (PST) From: "Dyre Tjeldvoll (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-3348) Small typo in table functions documentation. Should have EmployeeTable not EmployeesTable In-Reply-To: <29576645.1201128634412.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-3348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dyre Tjeldvoll updated DERBY-3348: ---------------------------------- I don't have access to a program which can extract files from rar archives. Unless some other committer does, and offers to review the patch, you will have to upload the patch in the form of a unified diff (preferably the output from svn diff). See http://db.apache.org/derby/derby_comm.html#Contribute+Code+or+Documentation > 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.