dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #22213
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 10647: Analytics, only copying significant zeros to analytics tables
------------------------------------------------------------
revno: 10647
committer: Lars Helge Øverland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Sun 2013-04-21 21:53:13 +0200
message:
Analytics, only copying significant zeros to analytics tables
modified:
dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/JdbcAnalyticsTableManager.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/JdbcAnalyticsTableManager.java'
--- dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/JdbcAnalyticsTableManager.java 2013-04-21 19:11:49 +0000
+++ dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/table/JdbcAnalyticsTableManager.java 2013-04-21 19:53:13 +0000
@@ -27,7 +27,6 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-import static org.hisp.dhis.dataelement.DataElement.DOMAIN_TYPE_AGGREGATE;
import static org.hisp.dhis.system.util.TextUtils.getQuotedCommaDelimitedString;
import java.util.ArrayList;
@@ -122,7 +121,9 @@
Date startDate = period.getStartDate();
Date endDate = period.getEndDate();
- String intClause = "dv.value " + statementBuilder.getRegexpMatch() + " '" + MathUtils.NUMERIC_LENIENT_REGEXP + "'";
+ String intClause =
+ "dv.value " + statementBuilder.getRegexpMatch() + " '" + MathUtils.NUMERIC_LENIENT_REGEXP + "' " +
+ "and ( dv.value != '0' or de.aggregationtype = 'average' or de.zeroissignificant = true ) ";
populateTable( table, startDate, endDate, "cast(dv.value as " + dbl + ")", "int", intClause );
@@ -165,8 +166,8 @@
"left join dataelement de on dv.dataelementid=de.dataelementid " +
"left join categoryoptioncombo co on dv.categoryoptioncomboid=co.categoryoptioncomboid " +
"left join period pe on dv.periodid=pe.periodid " +
- "where de.valuetype='" + valueType + "' " +
- "and de.domaintype='" + DOMAIN_TYPE_AGGREGATE + "' " +
+ "where de.valuetype = '" + valueType + "' " +
+ "and de.domaintype = 'aggregate' " +
"and pe.startdate >= '" + start + "' " +
"and pe.startdate <= '" + end + "' " +
"and dv.value is not null " +