Return-Path: Delivered-To: apmail-db-ddlutils-dev-archive@www.apache.org Received: (qmail 1671 invoked from network); 20 Aug 2007 19:03:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Aug 2007 19:03:54 -0000 Received: (qmail 91948 invoked by uid 500); 20 Aug 2007 19:03:51 -0000 Delivered-To: apmail-db-ddlutils-dev-archive@db.apache.org Received: (qmail 91921 invoked by uid 500); 20 Aug 2007 19:03:51 -0000 Mailing-List: contact ddlutils-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ddlutils-dev@db.apache.org Delivered-To: mailing list ddlutils-dev@db.apache.org Received: (qmail 91910 invoked by uid 99); 20 Aug 2007 19:03:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 12:03:51 -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; Mon, 20 Aug 2007 19:04:24 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 725B571421A for ; Mon, 20 Aug 2007 12:03:31 -0700 (PDT) Message-ID: <25210821.1187636611466.JavaMail.jira@brutus> Date: Mon, 20 Aug 2007 12:03:31 -0700 (PDT) From: "Brian Devaney (JIRA)" To: ddlutils-dev@db.apache.org Subject: [jira] Created: (DDLUTILS-182) New flags for ForeignKeys, index names and dropping tables MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org New flags for ForeignKeys, index names and dropping tables ---------------------------------------------------------- Key: DDLUTILS-182 URL: https://issues.apache.org/jira/browse/DDLUTILS-182 Project: DdlUtils Issue Type: Improvement Components: Core (No specific database) Reporter: Brian Devaney Assignee: Thomas Dudziak Priority: Minor This patch contains changes for issues in DdlUtils-176 and DdlUtils-177. The main addition was to provide a flag that would change checking for the names of foreign keys or the names of indexes when comparing the two. For foreign keys, if the PlatformImplBase.setForeignKeyNameMatters is set to false, and tables were the same and the columns indexed were the same, then the foreign keys would be considered the same. Similarly, for Indexes, id the PlatformImplBase.setIndexNameMatters is set to false, then if the columns match and are in the same order, then the index is considered the same. Both these flags default to true to preserve how the code operated now. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.