Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 53346 invoked from network); 13 Feb 2006 21:45:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Feb 2006 21:45:39 -0000 Received: (qmail 82812 invoked by uid 500); 13 Feb 2006 21:45:23 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 82776 invoked by uid 500); 13 Feb 2006 21:45:23 -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 82766 invoked by uid 99); 13 Feb 2006 21:45:22 -0000 X-ASF-Spam-Status: No, hits=1.3 required=10.0 tests=SPF_FAIL X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Feb 2006 13:45:21 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id A293ADE for ; Mon, 13 Feb 2006 22:44:53 +0100 (CET) Message-ID: <1338553372.1139867093664.JavaMail.jira@ajax.apache.org> Date: Mon, 13 Feb 2006 22:44:53 +0100 (CET) From: "Myrna van Lunteren (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Created: (DERBY-972) tests derbynet/csPrepStmt and prepStmt use mechanisms that are not portable over encodings MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N tests derbynet/csPrepStmt and prepStmt use mechanisms that are not portable over encodings ------------------------------------------------------------------------------------------ Key: DERBY-972 URL: http://issues.apache.org/jira/browse/DERBY-972 Project: Derby Type: Bug Components: Test Versions: 10.1.2.0 Environment: z/OS , ibm142 ('Classic', 32 bit jvm) Reporter: Myrna van Lunteren Priority: Minor Fix For: 10.2.0.0 With zOS, with the classic 32 bit jvm, the tests derbynet/csPrepStmt and prepStmt.java fail because the insert with setAsciiStream of a byte array obtained from a new String.getBytes() (and/or the retrieval of that inserted value) is not ok. No error is returned, but the select shows no value. This is the section in the test csPrepStmt: ----------------- ps.setString(10, "column11string"); byte[] c11ba = new String("column11vcstring").getBytes(); int len = c11ba.length; ps.setAsciiStream(11, new ByteArrayInputStream(c11ba), len); and the value is retrieved using an ResultSet.getString(#) -------------------------- 28 del < got row: 1 2 3 4 5.0 6.0 7.0 88.88 99.100 column11string column11vcstring column12lvcstring 0123456789abcdef10111213202020 0123456789abcdef10111213 0123456789abcdef10111213 xxxxxxFILTERED-TIMESTAMPxxxxx-04-12 11:44:30.0 28a28 > got row: 1 2 3 4 5.0 6.0 7.0 88.88 99.100 column11string column12lvcstring 0123456789abcdef10111213202020 0123456789abcdef10111213 0123456789abcdef10111213 xxxxxxFILTERED-TIMESTAMPxxxxx-04-12 11:44:30.0 -------------------- (i.e. the string "column11vcstring" is not in the database) This needs to be replaced by a encoding-neutral (eg. fixed encoding) mechanism and the tests derbynet/prepStmt.java and csPrepStmt.java need to be checked for other non-portable code. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira