[Rt-commit] rt branch, 4.2/oracle-upgrade-empty-clob, repushed
Alex Vandiver
alexmv at bestpractical.com
Wed Oct 1 15:42:23 EDT 2014
The branch 4.2/oracle-upgrade-empty-clob was deleted and repushed:
was dbe284a7da2128fa1215bf2a076d7431fb5f17dc
now 78d5994edab8d8f3386728c682001dd495798e5f
1: dbe284a ! 1: 78d5994 Fix the 4.2.7 upgrade to run on Oracle (and copy to 4.2.8)
@@ -22,7 +22,7 @@
DELETE FROM Attributes
WHERE (Name = 'LinkValueTo' OR Name = 'IncludeContentForValue')
- AND (Content = '' OR Content IS NULL);
-+ AND (LENGTH(Content) = 0 OR Content IS NULL);
++ AND (LENGTH(Content) = 0 OR Content IS NULL)
EOSQL
},
);
@@ -44,7 +44,7 @@
+ RT->DatabaseHandle->dbh->do(<<EOSQL);
+ DELETE FROM Attributes
+ WHERE (Name = 'LinkValueTo' OR Name = 'IncludeContentForValue')
-+ AND (LENGTH(Content) = 0 OR Content IS NULL);
++ AND (LENGTH(Content) = 0 OR Content IS NULL)
+EOSQL
+ },
+);
More information about the rt-commit
mailing list