Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 90941 invoked from network); 8 May 2007 07:54:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 May 2007 07:54:37 -0000 Received: (qmail 92434 invoked by uid 500); 8 May 2007 07:54:43 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 92226 invoked by uid 500); 8 May 2007 07:54:43 -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 92217 invoked by uid 99); 8 May 2007 07:54:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 May 2007 00:54:43 -0700 X-ASF-Spam-Status: No, hits=-100.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; Tue, 08 May 2007 00:54:36 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 00AC4714044 for ; Tue, 8 May 2007 00:54:15 -0700 (PDT) Message-ID: <9681268.1178610855977.JavaMail.jira@brutus> Date: Tue, 8 May 2007 00:54:15 -0700 (PDT) From: "Kristian Waagan (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-2222) 'show indexes in SCHEMANAME' does not work with the client driver In-Reply-To: <19108403.1168335267708.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-2222?page=3Dcom.atlassia= n.jira.plugin.system.issuetabpanels:all-tabpanel ] Kristian Waagan updated DERBY-2222: ----------------------------------- Attachment: derby-2222-4a-javadoc_whitespace.diff Committed 'derby-2222-4a-javadoc_whitespace.diff' with a few JavaDoc and fo= rmatting fixes (space/tabs, long lines) to trunk and 10.2 (revisions 536111= and 536112). > 'show indexes in SCHEMANAME' does not work with the client driver > ----------------------------------------------------------------- > > Key: DERBY-2222 > URL: https://issues.apache.org/jira/browse/DERBY-2222 > Project: Derby > Issue Type: Bug > Components: Network Client, Tools > Affects Versions: 10.2.2.0, 10.3.0.0 > Reporter: Kristian Waagan > Assigned To: J=C3=B8rgen L=C3=B8land > Fix For: 10.2.3.0, 10.3.0.0 > > Attachments: DERBY-2222-1.diff, DERBY-2222-1.stat, DERBY-2222-2.d= iff, DERBY-2222-2.stat, DERBY-2222-3.diff, DERBY-2222-3.diff, DERBY-2222-3.= stat, DERBY-2222-3.stat, derby-2222-4a-javadoc_whitespace.diff, ijMultipleR= esultSetResult.java > > > The ij command 'show indexes in SCHEMANAME' does not work at all with the= client driver. > It does work with the embedded driver. > Sample output from ij: > ij> connect 'jdbc:derby://localhost/myDB;create=3Dtrue'; > ij> create table test (id int primary key); > 0 rows inserted/updated/deleted > ij> show indexes in app; > ERROR XJ103: Table name can not be null > ij> show indexes from test; > TABLE_NAME |COLUMN_NAME |NON_U&|TYPE|ASC&|CARDINA&|PAGES > -------------------------------------------------------------------------= --- > TEST |ID |0 |3 |A |NULL |NULL > 1 row selected > ij> show indexes from app.test; > TABLE_NAME |COLUMN_NAME |NON_U&|TYPE|ASC&|CARDINA&|PAGES > -------------------------------------------------------------------------= --- > TEST |ID |0 |3 |A |NULL |NULL > 1 row selected > ij> > Using delimited table and/or schema names does not work, but I think this= is according to documentation. > I.e.: > ij> show indexes from "TEST"; > ERROR 42X01: Syntax error: Encountered "show" at line 1, column 1. > ij> show indexes from "APP".test; > ERROR 42X01: Syntax error: Encountered "show" at line 1, column 1. > ij> show indexes from "APP"."TEST"; > ERROR 42X01: Syntax error: Encountered "show" at line 1, column 1. > ij> --=20 This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.