Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 63113 invoked from network); 2 Aug 2007 16:03:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Aug 2007 16:03:26 -0000 Received: (qmail 79210 invoked by uid 500); 2 Aug 2007 16:03:26 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 78830 invoked by uid 500); 2 Aug 2007 16:03:25 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 78821 invoked by uid 99); 2 Aug 2007 16:03:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 09:03:25 -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; Thu, 02 Aug 2007 16:02:55 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A41AF71420E for ; Thu, 2 Aug 2007 09:02:54 -0700 (PDT) Message-ID: <17064524.1186070574669.JavaMail.jira@brutus> Date: Thu, 2 Aug 2007 09:02:54 -0700 (PDT) From: "Stephen More (JIRA)" To: dev@jackrabbit.apache.org Subject: [jira] Reopened: (JCR-1049) DatabaseFileSystem: mysql.ddl works for mysql5 but not mysql 4.1.20 In-Reply-To: <24983564.1186000373143.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/JCR-1049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Stephen More reopened JCR-1049: ------------------------------- I am sorry, but IMO this does not seem like a reasonable solution. Mysql fixed this bug ( not config ) as of 5.0.19 - http://bugs.mysql.com/bug.php?id=13835 To support older databases, mysql4.ddl should get created with: create table ${schemaObjectPrefix}FSENTRY (FSENTRY_PATH text not null, FSENTRY_NAME varchar(255) not null, FSENTRY_DATA longblob null, FSENTRY_LASTMOD bigint not null, FSENTRY_LENGTH bigint not null) charset latin1 This allows the developer to choose the right schema in his/her application without having to download the code, create a patch, then do it all over again after the next release. mysql4.dll and mysql.ddl should have: create unique index JCR_FSENTRY_IDX on JCR_FSENTRY (FSENTRY_PATH(745), FSENTRY_NAME); > DatabaseFileSystem: mysql.ddl works for mysql5 but not mysql 4.1.20 > ------------------------------------------------------------------- > > Key: JCR-1049 > URL: https://issues.apache.org/jira/browse/JCR-1049 > Project: Jackrabbit > Issue Type: Bug > Components: core > Affects Versions: 1.3 > Environment: MySQL 4.1.20 > ERROR 1071 (42000): Specified key was too long; max key length is 1000 bytes > Reporter: Stephen More > Assignee: Stefan Guggisberg > > Perhaps a new column ( primary key ) could get added to the table called uid, which is actually an md5checksum of FSENTRY_PATH and FSENTRY_NAME. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.