Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 16027 invoked from network); 6 May 2009 23:32:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 May 2009 23:32:54 -0000 Received: (qmail 86527 invoked by uid 500); 6 May 2009 23:32:53 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 86460 invoked by uid 500); 6 May 2009 23:32:53 -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 86452 invoked by uid 99); 6 May 2009 23:32:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 May 2009 23:32:53 +0000 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 May 2009 23:32:51 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5060029A0011 for ; Wed, 6 May 2009 16:32:30 -0700 (PDT) Message-ID: <1227750956.1241652750314.JavaMail.jira@brutus> Date: Wed, 6 May 2009 16:32:30 -0700 (PDT) From: "Kathey Marsden (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-3999) Can't execute select statement with blob in network server mode In-Reply-To: <1425303176.1230626324289.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-3999?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12706658#action_12706658 ] Kathey Marsden commented on DERBY-3999: --------------------------------------- Was there any luck getting a script or java program to reproduce this issue? If not I suggest we close cannot reproduce and then can reopen if a reproduction is discovered. > Can't execute select statement with blob in network server mode > ---------------------------------------------------------------- > > Key: DERBY-3999 > URL: https://issues.apache.org/jira/browse/DERBY-3999 > Project: Derby > Issue Type: Bug > Components: Network Client > Affects Versions: 10.4.2.0 > Environment: OS - windows xp, Derby - 10.4.2, client jdbc Driver - org.apache.derby.jdbc.ClientDriver() > Reporter: Ashitkin Alexander > Priority: Minor > Attachments: d3999.sql, log.txt > > > When Derby Derby in ServerMode this query raise the java.io.EOFException(in embedded works normally): > SELECT > this_.ID as ID11_2_, > this_.PROTOCOL_ID as PROTOCOL2_11_2_, > this_.PROTOCOL_NAME as PROTOCOL3_11_2_, > this_.PROTOCOL_VERSION as PROTOCOL4_11_2_, > this_.STORAGE as STORAGE11_2_, > schemavali2_.PROTOCOL_VALIDATION_ID as PROTOCOL4_4_, > schemavali2_.ID as ID4_, > schemavali2_.ID as ID12_0_, > schemavali2_.BINARY_CONTENT as BINARY2_12_0_, -- this should be commented to allow normal query execution > schemavali2_.FILE_NAME as FILE3_12_0_, > schemavali2_.PROTOCOL_VALIDATION_ID as PROTOCOL4_12_0_, > validation3_.SCHEMA_VALIDATION_ID as SCHEMA8_5_, > validation3_.ID as ID5_, > validation3_.ID as ID13_1_, > validation3_.IS_IMPORTED as IS2_13_1_, > validation3_.IMPORTED_FILE_NAME as IMPORTED3_13_1_, > validation3_.ITEM_TEXT as ITEM4_13_1_, > validation3_.PROPERTY_NAME as PROPERTY5_13_1_, > validation3_.RULE_NAME as RULE6_13_1_, > validation3_.SCHEMA_VALIDATION_ID as SCHEMA8_13_1_, > validation3_.ISSUE_STATUS as ISSUE7_13_1_ > FROM > VL_PROTOCOL_VALIDATION this_ > LEFT OUTER JOIN > VL_SCHEMA_VALIDATION schemavali2_ > ON > this_.ID=schemavali2_.PROTOCOL_VALIDATION_ID > LEFT OUTER JOIN > VL_SCHEMA_VALIDATION_ISSUE validation3_ > ON > schemavali2_.ID=validation3_.SCHEMA_VALIDATION_ID > WHERE > this_.PROTOCOL_NAME='base' > Tables ddl: > create table VL_PROTOCOL_VALIDATION ( > ID integer generated always as identity(start with 1, increment by 1) primary key, > PROTOCOL_ID integer, > PROTOCOL_NAME varchar(100), > PROTOCOL_VERSION varchar(100), > STORAGE varchar(20) > ); > create table VL_SCHEMA_VALIDATION ( > ID integer generated always as identity(start with 1, increment by 1) primary key, > PROTOCOL_VALIDATION_ID integer not null references VL_PROTOCOL_VALIDATION(ID), > FILE_NAME varchar(250), > BINARY_CONTENT blob > ); > create table VL_SCHEMA_VALIDATION_ISSUE ( > ID integer generated always as identity(start with 1, increment by 1) primary key, > SCHEMA_VALIDATION_ID integer not null references VL_SCHEMA_VALIDATION(ID), > ITEM_TEXT varchar(1000), > RULE_NAME varchar(100), > ISSUE_STATUS varchar(10), > PROPERTY_NAME varchar(100), > IS_IMPORTED varchar(10), > IMPORTED_FILE_NAME varchar(250) > ); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.