dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #33982
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 17418: Reverted R 17417
------------------------------------------------------------
revno: 17418
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2014-11-11 09:24:32 +0100
message:
Reverted R 17417
modified:
dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/data/JdbcAnalyticsManager.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/data/JdbcAnalyticsManager.java'
--- dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/data/JdbcAnalyticsManager.java 2014-11-11 08:16:33 +0000
+++ dhis-2/dhis-services/dhis-service-analytics/src/main/java/org/hisp/dhis/analytics/data/JdbcAnalyticsManager.java 2014-11-11 08:24:32 +0000
@@ -314,18 +314,14 @@
{
String col = statementBuilder.columnQuote( dim.getDimensionName() );
- List<String> periods;
-
if ( !calendar.isIso8601() && PERIOD_DIM_ID.equals( dim.getDimension() ) )
{
- periods = getLocalPeriods( dim.getItems(), calendar );
+ sql += sqlHelper.whereAnd() + " " + col + " in (" + getQuotedCommaDelimitedString( getLocalPeriods( dim.getItems(), calendar ) ) + ") ";
}
else
{
- periods = getUids( dim.getItems() );
+ sql += sqlHelper.whereAnd() + " " + col + " in (" + getQuotedCommaDelimitedString( getUids( dim.getItems() ) ) + ") ";
}
-
- sql += sqlHelper.whereAnd() + " " + col + " in (" + getQuotedCommaDelimitedString( periods ) + ") ";
}
}
@@ -345,18 +341,14 @@
{
String col = statementBuilder.columnQuote( filter.getDimensionName() );
- List<String> periods;
-
if ( !calendar.isIso8601() && PERIOD_DIM_ID.equals( filter.getDimension() ) )
{
- periods = getLocalPeriods( filter.getItems(), calendar );
+ sql += col + " in (" + getQuotedCommaDelimitedString( getLocalPeriods( filter.getItems(), calendar ) ) + ") or ";
}
else
{
- periods = getUids( filter.getItems() );
+ sql += col + " in (" + getQuotedCommaDelimitedString( getUids( filter.getItems() ) ) + ") or ";
}
-
- sql += col + " in (" + getQuotedCommaDelimitedString( periods ) + ") or ";
}
}