From derby-commits-return-14044-apmail-db-derby-commits-archive=db.apache.org@db.apache.org Thu Mar 17 20:08:15 2011 Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 80501 invoked from network); 17 Mar 2011 20:08:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Mar 2011 20:08:14 -0000 Received: (qmail 46323 invoked by uid 500); 17 Mar 2011 20:08:14 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 46297 invoked by uid 500); 17 Mar 2011 20:08:14 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 46290 invoked by uid 99); 17 Mar 2011 20:08:14 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Mar 2011 20:08:14 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Mar 2011 20:08:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 08BA9238896F; Thu, 17 Mar 2011 20:07:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1082671 - in /db/derby/code/trunk/java: engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java Date: Thu, 17 Mar 2011 20:07:48 -0000 To: derby-commits@db.apache.org From: rhillegas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110317200749.08BA9238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhillegas Date: Thu Mar 17 20:07:48 2011 New Revision: 1082671 URL: http://svn.apache.org/viewvc?rev=1082671&view=rev Log: DERBY-5131: Re-enable istat=on as the default Derby behavior. Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java?rev=1082671&r1=1082670&r2=1082671&view=diff ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java Thu Mar 17 20:07:48 2011 @@ -641,12 +641,8 @@ public final class DataDictionaryImpl // system wide property. May be overridden by a database specific // property later on. // The default is that automatic index statistics update is enabled. - // - // Disabled for the 10.8.1 release. Will be re-enabled on the trunk. - // - indexStatsUpdateDisabled = !PropertyUtil.getSystemBoolean - ( Property.STORAGE_AUTO_INDEX_STATS, false ); - // (Property.STORAGE_AUTO_INDEX_STATS, true); + indexStatsUpdateDisabled = !PropertyUtil.getSystemBoolean( + Property.STORAGE_AUTO_INDEX_STATS, true); // See if we should enable logging of index stats activities. indexStatsUpdateLogging = PropertyUtil.getSystemBoolean( Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java?rev=1082671&r1=1082670&r2=1082671&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/store/_Suite.java Thu Mar 17 20:07:48 2011 @@ -69,8 +69,8 @@ public class _Suite extends BaseTestCase suite.addTest(IndexSplitDeadlockTest.suite()); suite.addTest(HoldCursorJDBC30Test.suite()); suite.addTest(AccessTest.suite()); - //suite.addTest(AutomaticIndexStatisticsTest.suite()); - //suite.addTest(AutomaticIndexStatisticsMultiTest.suite()); + suite.addTest(AutomaticIndexStatisticsTest.suite()); + suite.addTest(AutomaticIndexStatisticsMultiTest.suite()); suite.addTest(BTreeMaxScanTest.suite()); /* Tests that only run in sane builds */