[Rt-commit] rt branch, 4.2/shrink-transactions-deprecations, created. rt-4.2.2-10-g21de425

Alex Vandiver alexmv at bestpractical.com
Tue Feb 11 16:18:12 EST 2014


The branch, 4.2/shrink-transactions-deprecations has been created
        at  21de425345c19d5c60dc0139f4e073b1d62a9ace (commit)

- Log -----------------------------------------------------------------
commit 16e18fa53f7dc7c899dbb17394385806c7fefbfe
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Jan 30 14:22:33 2014 -0500

    Adjust a limit on Type, now deprecated, in shrink_transactions_table

diff --git a/etc/upgrade/shrink_transactions_table.pl b/etc/upgrade/shrink_transactions_table.pl
index 3bc1b6d..9e92abb 100644
--- a/etc/upgrade/shrink_transactions_table.pl
+++ b/etc/upgrade/shrink_transactions_table.pl
@@ -83,7 +83,7 @@ $txns->Limit(
 
 $txns->Limit(
     ALIAS => $alias,
-    FIELD => 'Type',
+    FIELD => 'Name',
     OPERATOR => '=',
     VALUE => 'UserEquiv',
     QUOTEVALUE => 1,

commit 21de425345c19d5c60dc0139f4e073b1d62a9ace
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Feb 11 16:17:29 2014 -0500

    Force Name to be case insensitive; see c3c06440

diff --git a/etc/upgrade/shrink_transactions_table.pl b/etc/upgrade/shrink_transactions_table.pl
index 9e92abb..0b78f0f 100644
--- a/etc/upgrade/shrink_transactions_table.pl
+++ b/etc/upgrade/shrink_transactions_table.pl
@@ -87,6 +87,7 @@ $txns->Limit(
     OPERATOR => '=',
     VALUE => 'UserEquiv',
     QUOTEVALUE => 1,
+    CASESENSITIVE => 0,
     ENTRYAGGREGATOR => 'AND',
 );
 

-----------------------------------------------------------------------


More information about the rt-commit mailing list